From 24ae06f271b303f4cd60cb18e91ce5f82ba88e8e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 13 Sep 2016 11:41:33 +0300 Subject: [PATCH 01/11] [DE] Bug with delayed loading of toolbar. --- apps/documenteditor/main/app/view/Toolbar.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index fff5239b5..7e49aea01 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -442,14 +442,21 @@ define([ this.paragraphControls.push(this.btnMultilevels); this.textOnlyControls.push(this.btnMultilevels); + var clone = function(source) { + var obj = {}; + for (var prop in source) + obj[prop] = (typeof(source[prop])=='object') ? clone(source[prop]) : source[prop]; + return obj; + }; + this.mnuMarkersPicker = { conf: {index:0}, selectByIndex: function (idx) { this.conf.index = idx; } }; - this.mnuNumbersPicker = _.clone(this.mnuMarkersPicker); - this.mnuMultilevelPicker = _.clone(this.mnuMarkersPicker); + this.mnuNumbersPicker = clone(this.mnuMarkersPicker); + this.mnuMultilevelPicker = clone(this.mnuMarkersPicker); this.btnInsertTable = new Common.UI.Button({ id : 'id-toolbar-btn-inserttable', @@ -546,8 +553,8 @@ define([ this.conf.disabled = val; } }; - this.mnuPageNumCurrentPos = _.clone(this.mnuPageNumberPosPicker); - this.mnuInsertPageNum = _.clone(this.mnuPageNumberPosPicker); + this.mnuPageNumCurrentPos = clone(this.mnuPageNumberPosPicker); + this.mnuInsertPageNum = clone(this.mnuPageNumberPosPicker); this.paragraphControls.push(this.mnuPageNumCurrentPos); this.toolbarControls.push(this.btnEditHeader); @@ -747,7 +754,7 @@ define([ setChecked: function(val) { this.conf.checked = val;}, isChecked: function () { return this.conf.checked; } }; - this.btnFitWidth = _.clone(this.btnFitPage); + this.btnFitWidth = clone(this.btnFitPage); this.mnuZoom = {options: {value: 100}}; this.btnAdvSettings = new Common.UI.Button({ From 5d6df7dfbe3a15e32a7db16a62942cde366c081e Mon Sep 17 00:00:00 2001 From: Alexander Trofimov Date: Wed, 14 Sep 2016 10:58:40 +0300 Subject: [PATCH 02/11] Update Readme.md --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index edc7515a2..d6ba7016a 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -[![License](https://img.shields.io/badge/License-GNU%20AGPL%20V3-green.svg?style=flat)](http://www.gnu.org/licenses/agpl-3.0.ru.html) ![Release](https://img.shields.io/badge/Release-v4.1.1-blue.svg?style=flat) +[![License](https://img.shields.io/badge/License-GNU%20AGPL%20V3-green.svg?style=flat)](http://www.gnu.org/licenses/agpl-3.0.ru.html) ![Release](https://img.shields.io/badge/Release-v4.1.2-blue.svg?style=flat) ## web-apps From 66f4cc1086030c14ee99ea4b15d15241209c4804 Mon Sep 17 00:00:00 2001 From: Alexander Yuzhin Date: Wed, 14 Sep 2016 15:04:28 +0300 Subject: [PATCH 03/11] Fixed mobile editors --- .gitignore | 1 + .../mobile/lib/component/SettingsList.js | 34 - .../mobile/resources/fonts/ios7/ios7.eot | Bin 0 -> 1588 bytes .../mobile/resources/fonts/ios7/ios7.svg | 16 + .../mobile/resources/fonts/ios7/ios7.ttf | Bin 0 -> 1424 bytes .../mobile/resources/fonts/ios7/ios7.woff | Bin 0 -> 1068 bytes .../resources/fonts/pictos/pictos-web.eot | Bin 0 -> 18632 bytes .../resources/fonts/pictos/pictos-web.svg | 114 + .../resources/fonts/pictos/pictos-web.ttf | Bin 0 -> 18276 bytes .../resources/fonts/pictos/pictos-web.woff | Bin 0 -> 12904 bytes .../resources/fonts/tizen/TizenSansMedium.ttf | Bin 0 -> 136456 bytes .../fonts/tizen/TizenSansRegular.ttf | Bin 0 -> 138928 bytes .../resources/fonts/tizen/tizen-icon.eot | Bin 0 -> 1572 bytes .../resources/fonts/tizen/tizen-icon.svg | 13 + .../resources/fonts/tizen/tizen-icon.ttf | Bin 0 -> 1408 bytes .../resources/fonts/tizen/tizen-icon.woff | Bin 0 -> 1484 bytes .../resources/sass/_common-settingspanel.scss | 17 +- .../resources/sass/_common-toolbar.scss | 4 + .../resources/css/application-normal.css | 11786 +--- .../resources/css/application-retina.css | 11786 +--- .../resources/sass/_application-base.scss | 40 +- .../mobile/resources/sass/config-debug.rb | 2 +- .../mobile/resources/sass/config.rb | 3 +- .../resources/css/application-normal.css | 10259 +-- .../resources/css/application-retina.css | 10259 +-- .../resources/sass/_application-base.scss | 41 +- .../mobile/resources/sass/config-debug.rb | 5 +- .../mobile/resources/sass/config.rb | 1 + .../resources/css/application-normal.css | 11308 +--- .../resources/css/application-retina.css | 11287 +--- .../resources/sass/_application-base.scss | 80 +- .../mobile/resources/sass/config.rb | 4 + vendor/touch/SETUP.html | 78 + vendor/touch/SenchaLogo.png | Bin 0 -> 5241 bytes vendor/touch/index.html | 7 +- vendor/touch/license.txt | 42 +- vendor/touch/microloader/development.js | 185 + vendor/touch/microloader/production.js | 742 + vendor/touch/microloader/testing.js | 177 + vendor/touch/release-notes.html | 1574 +- vendor/touch/resources/css-debug/android.css | 11099 ---- vendor/touch/resources/css-debug/apple.css | 14707 ++--- vendor/touch/resources/css-debug/base.css | 3697 ++ vendor/touch/resources/css-debug/bb10.css | 6456 ++ vendor/touch/resources/css-debug/bb103.css | 5840 ++ vendor/touch/resources/css-debug/bb6.css | 10813 ---- .../resources/css-debug/cupertino-classic.css | 6077 ++ .../touch/resources/css-debug/cupertino.css | 5781 ++ .../resources/css-debug/mountainview.css | 5312 ++ .../resources/css-debug/sencha-touch.css | 17919 +++--- vendor/touch/resources/css-debug/tizen.css | 6720 ++ vendor/touch/resources/css-debug/wp.css | 6569 ++ vendor/touch/resources/css/android.css | 21 - vendor/touch/resources/css/apple.css | 21 - vendor/touch/resources/css/base.css | 18 + vendor/touch/resources/css/bb10.css | 18 + vendor/touch/resources/css/bb103.css | 18 + vendor/touch/resources/css/bb6.css | 21 - .../touch/resources/css/cupertino-classic.css | 18 + vendor/touch/resources/css/cupertino.css | 18 + vendor/touch/resources/css/mountainview.css | 18 + vendor/touch/resources/css/sencha-touch.css | 19 +- vendor/touch/resources/css/tizen.css | 18 + vendor/touch/resources/css/wp.css | 18 + vendor/touch/resources/sass/android.scss | 39 - vendor/touch/resources/sass/apple.scss | 41 - vendor/touch/resources/sass/base.scss | 3 + vendor/touch/resources/sass/bb10.scss | 2 + vendor/touch/resources/sass/bb103.scss | 2 + vendor/touch/resources/sass/bb6.scss | 68 - vendor/touch/resources/sass/config-debug.rb | 1 + vendor/touch/resources/sass/config.rb | 9 +- .../resources/sass/cupertino-classic.scss | 2 + vendor/touch/resources/sass/cupertino.scss | 2 + vendor/touch/resources/sass/mountainview.scss | 2 + vendor/touch/resources/sass/sencha-touch.scss | 22 +- vendor/touch/resources/sass/tizen.scss | 2 + vendor/touch/resources/sass/wp.scss | 2 + .../resources/themes/fonts/ios7/ios7.eot | Bin 0 -> 1588 bytes .../resources/themes/fonts/ios7/ios7.svg | 16 + .../resources/themes/fonts/ios7/ios7.ttf | Bin 0 -> 1424 bytes .../resources/themes/fonts/ios7/ios7.woff | Bin 0 -> 1068 bytes .../themes/fonts/pictos/pictos-web.eot | Bin 0 -> 18632 bytes .../themes/fonts/pictos/pictos-web.svg | 114 + .../themes/fonts/pictos/pictos-web.ttf | Bin 0 -> 18276 bytes .../themes/fonts/pictos/pictos-web.woff | Bin 0 -> 12904 bytes .../themes/fonts/tizen/TizenSansMedium.ttf | Bin 0 -> 136456 bytes .../themes/fonts/tizen/TizenSansRegular.ttf | Bin 0 -> 138928 bytes .../themes/fonts/tizen/tizen-icon.eot | Bin 0 -> 1572 bytes .../themes/fonts/tizen/tizen-icon.svg | 13 + .../themes/fonts/tizen/tizen-icon.ttf | Bin 0 -> 1408 bytes .../themes/fonts/tizen/tizen-icon.woff | Bin 0 -> 1484 bytes .../resources/themes/images/bb10/check.png | Bin 0 -> 826 bytes .../themes/images/bb10/clear_icon.png | Bin 0 -> 8446 bytes .../themes/images/bb10/disclosure.png | Bin 0 -> 3567 bytes .../themes/images/bb10/disclosure2.png | Bin 0 -> 4035 bytes .../resources/themes/images/bb10/dotgrid.png | Bin 0 -> 582 bytes .../themes/images/bb10/icons/ic_add.png | Bin 0 -> 439 bytes .../themes/images/bb10/icons/ic_add_entry.png | Bin 0 -> 634 bytes .../images/bb10/icons/ic_add_favorite.png | Bin 0 -> 1094 bytes .../images/bb10/icons/ic_add_folder.png | Bin 0 -> 627 bytes .../images/bb10/icons/ic_add_to_contacts.png | Bin 0 -> 1369 bytes .../themes/images/bb10/icons/ic_advanced.png | Bin 0 -> 941 bytes .../images/bb10/icons/ic_advanced_restore.png | Bin 0 -> 1134 bytes .../themes/images/bb10/icons/ic_all.png | Bin 0 -> 492 bytes .../themes/images/bb10/icons/ic_attach.png | Bin 0 -> 1078 bytes .../themes/images/bb10/icons/ic_bbm.png | Bin 0 -> 836 bytes .../themes/images/bb10/icons/ic_browse.png | Bin 0 -> 2212 bytes .../themes/images/bb10/icons/ic_browser.png | Bin 0 -> 1809 bytes .../themes/images/bb10/icons/ic_buy.png | Bin 0 -> 1000 bytes .../themes/images/bb10/icons/ic_camera.png | Bin 0 -> 1364 bytes .../themes/images/bb10/icons/ic_cancel.png | Bin 0 -> 1440 bytes .../images/bb10/icons/ic_cancel_selection.png | Bin 0 -> 1752 bytes .../images/bb10/icons/ic_check_spelling.png | Bin 0 -> 1422 bytes .../themes/images/bb10/icons/ic_clear.png | Bin 0 -> 994 bytes .../images/bb10/icons/ic_clear_list.png | Bin 0 -> 1170 bytes .../images/bb10/icons/ic_code_inspector.png | Bin 0 -> 1200 bytes .../themes/images/bb10/icons/ic_collapse.png | Bin 0 -> 487 bytes .../themes/images/bb10/icons/ic_compose.png | Bin 0 -> 927 bytes .../images/bb10/icons/ic_connections.png | Bin 0 -> 1532 bytes .../themes/images/bb10/icons/ic_contacts.png | Bin 0 -> 1008 bytes .../themes/images/bb10/icons/ic_copy.png | Bin 0 -> 737 bytes .../themes/images/bb10/icons/ic_copy_link.png | Bin 0 -> 940 bytes .../images/bb10/icons/ic_copy_link_image.png | Bin 0 -> 1370 bytes .../images/bb10/icons/ic_copy_password.png | Bin 0 -> 781 bytes .../themes/images/bb10/icons/ic_cut.png | Bin 0 -> 1147 bytes .../themes/images/bb10/icons/ic_decrease.png | Bin 0 -> 918 bytes .../themes/images/bb10/icons/ic_delete.png | Bin 0 -> 896 bytes .../images/bb10/icons/ic_delete_prior.png | Bin 0 -> 1165 bytes .../themes/images/bb10/icons/ic_deselect.png | Bin 0 -> 1447 bytes .../images/bb10/icons/ic_deselect_all.png | Bin 0 -> 523 bytes .../images/bb10/icons/ic_diagnostics.png | Bin 0 -> 848 bytes .../themes/images/bb10/icons/ic_disable.png | Bin 0 -> 971 bytes .../images/bb10/icons/ic_doctype_doc.png | Bin 0 -> 1050 bytes .../images/bb10/icons/ic_doctype_generic.png | Bin 0 -> 575 bytes .../images/bb10/icons/ic_doctype_music.png | Bin 0 -> 860 bytes .../images/bb10/icons/ic_doctype_pdf.png | Bin 0 -> 948 bytes .../images/bb10/icons/ic_doctype_picture.png | Bin 0 -> 950 bytes .../images/bb10/icons/ic_doctype_ppt.png | Bin 0 -> 838 bytes .../images/bb10/icons/ic_doctype_video.png | Bin 0 -> 730 bytes .../images/bb10/icons/ic_doctype_web.png | Bin 0 -> 1451 bytes .../images/bb10/icons/ic_doctype_xls.png | Bin 0 -> 1128 bytes .../images/bb10/icons/ic_doctype_zip.png | Bin 0 -> 869 bytes .../themes/images/bb10/icons/ic_done.png | Bin 0 -> 943 bytes .../themes/images/bb10/icons/ic_download.png | Bin 0 -> 1174 bytes .../themes/images/bb10/icons/ic_edit.png | Bin 0 -> 931 bytes .../images/bb10/icons/ic_edit_favorite.png | Bin 0 -> 1283 bytes .../themes/images/bb10/icons/ic_edit_list.png | Bin 0 -> 949 bytes .../images/bb10/icons/ic_edit_profile.png | Bin 0 -> 1841 bytes .../themes/images/bb10/icons/ic_email.png | Bin 0 -> 952 bytes .../themes/images/bb10/icons/ic_enable.png | Bin 0 -> 961 bytes .../themes/images/bb10/icons/ic_entry.png | Bin 0 -> 431 bytes .../themes/images/bb10/icons/ic_expand.png | Bin 0 -> 540 bytes .../themes/images/bb10/icons/ic_favorite.png | Bin 0 -> 1000 bytes .../themes/images/bb10/icons/ic_feedback.png | Bin 0 -> 2930 bytes .../themes/images/bb10/icons/ic_forward.png | Bin 0 -> 747 bytes .../images/bb10/icons/ic_forward_as_bbm.png | Bin 0 -> 1131 bytes .../images/bb10/icons/ic_forward_as_email.png | Bin 0 -> 1145 bytes .../images/bb10/icons/ic_forward_as_text.png | Bin 0 -> 793 bytes .../themes/images/bb10/icons/ic_help.png | Bin 0 -> 1685 bytes .../themes/images/bb10/icons/ic_history.png | Bin 0 -> 1375 bytes .../themes/images/bb10/icons/ic_home.png | Bin 0 -> 949 bytes .../themes/images/bb10/icons/ic_increase.png | Bin 0 -> 1107 bytes .../themes/images/bb10/icons/ic_info.png | Bin 0 -> 1605 bytes .../themes/images/bb10/icons/ic_location.png | Bin 0 -> 1199 bytes .../themes/images/bb10/icons/ic_lock.png | Bin 0 -> 759 bytes .../themes/images/bb10/icons/ic_map.png | Bin 0 -> 1966 bytes .../images/bb10/icons/ic_microphone.png | Bin 0 -> 1040 bytes .../images/bb10/icons/ic_microphone_mute.png | Bin 0 -> 1340 bytes .../themes/images/bb10/icons/ic_move.png | Bin 0 -> 1075 bytes .../themes/images/bb10/icons/ic_nav_to.png | Bin 0 -> 1429 bytes .../themes/images/bb10/icons/ic_next.png | Bin 0 -> 930 bytes .../themes/images/bb10/icons/ic_notes.png | Bin 0 -> 1576 bytes .../images/bb10/icons/ic_notification.png | Bin 0 -> 898 bytes .../themes/images/bb10/icons/ic_open.png | Bin 0 -> 669 bytes .../themes/images/bb10/icons/ic_open_link.png | Bin 0 -> 722 bytes .../images/bb10/icons/ic_overflow_action.png | Bin 0 -> 509 bytes .../images/bb10/icons/ic_overflow_tab.png | Bin 0 -> 506 bytes .../themes/images/bb10/icons/ic_paste.png | Bin 0 -> 769 bytes .../themes/images/bb10/icons/ic_pause.png | Bin 0 -> 449 bytes .../themes/images/bb10/icons/ic_phone.png | Bin 0 -> 1064 bytes .../themes/images/bb10/icons/ic_play.png | Bin 0 -> 837 bytes .../themes/images/bb10/icons/ic_previous.png | Bin 0 -> 924 bytes .../images/bb10/icons/ic_properties.png | Bin 0 -> 487 bytes .../themes/images/bb10/icons/ic_reload.png | Bin 0 -> 1239 bytes .../themes/images/bb10/icons/ic_rename.png | Bin 0 -> 1439 bytes .../themes/images/bb10/icons/ic_reply.png | Bin 0 -> 726 bytes .../themes/images/bb10/icons/ic_reply_all.png | Bin 0 -> 878 bytes .../themes/images/bb10/icons/ic_rotate.png | Bin 0 -> 1269 bytes .../themes/images/bb10/icons/ic_save.png | Bin 0 -> 871 bytes .../themes/images/bb10/icons/ic_save_as.png | Bin 0 -> 1051 bytes .../images/bb10/icons/ic_scan_barcode.png | Bin 0 -> 836 bytes .../themes/images/bb10/icons/ic_search.png | Bin 0 -> 1425 bytes .../themes/images/bb10/icons/ic_select.png | Bin 0 -> 797 bytes .../images/bb10/icons/ic_select_all.png | Bin 0 -> 916 bytes .../images/bb10/icons/ic_select_more.png | Bin 0 -> 804 bytes .../images/bb10/icons/ic_select_text.png | Bin 0 -> 1210 bytes .../images/bb10/icons/ic_select_text_all.png | Bin 0 -> 487 bytes .../images/bb10/icons/ic_set_as_default.png | Bin 0 -> 759 bytes .../themes/images/bb10/icons/ic_settings.png | Bin 0 -> 1375 bytes .../themes/images/bb10/icons/ic_share.png | Bin 0 -> 1217 bytes .../images/bb10/icons/ic_show_dialpad.png | Bin 0 -> 736 bytes .../themes/images/bb10/icons/ic_show_vkb.png | Bin 0 -> 616 bytes .../themes/images/bb10/icons/ic_sort.png | Bin 0 -> 803 bytes .../images/bb10/icons/ic_sort_filter.png | Bin 0 -> 787 bytes .../themes/images/bb10/icons/ic_speaker.png | Bin 0 -> 1240 bytes .../images/bb10/icons/ic_speaker_mute.png | Bin 0 -> 1057 bytes .../themes/images/bb10/icons/ic_stop.png | Bin 0 -> 344 bytes .../images/bb10/icons/ic_textmessage.png | Bin 0 -> 477 bytes .../themes/images/bb10/icons/ic_to_bottom.png | Bin 0 -> 959 bytes .../themes/images/bb10/icons/ic_to_top.png | Bin 0 -> 908 bytes .../images/bb10/icons/ic_view_details.png | Bin 0 -> 315 bytes .../themes/images/bb10/icons/ic_view_grid.png | Bin 0 -> 401 bytes .../images/bb10/icons/ic_view_image.png | Bin 0 -> 1190 bytes .../themes/images/bb10/icons/ic_view_list.png | Bin 0 -> 3266 bytes .../themes/images/bb10/icons/ic_view_post.png | Bin 0 -> 569 bytes .../themes/images/bb10/icons/ic_zoom_in.png | Bin 0 -> 1507 bytes .../themes/images/bb10/icons/ic_zoom_out.png | Bin 0 -> 1468 bytes .../resources/themes/images/bb10/loading.gif | Bin 0 -> 3208 bytes .../themes/images/bb10/pullarrow.png | Bin 0 -> 655 bytes .../themes/images/bb10/reveal_icon.png | Bin 0 -> 25609 bytes .../themes/images/bb10/select_mask.png | Bin 0 -> 144 bytes .../themes/images/bb10/tab-active.png | Bin 0 -> 1028 bytes .../resources/themes/images/bb10/tab.png | Bin 0 -> 1022 bytes .../themes/images/bb10/tip2_left.png | Bin 0 -> 641 bytes .../themes/images/bb10/tip2_right.png | Bin 0 -> 471 bytes .../themes/images/bb10/tip_bottom.png | Bin 0 -> 1549 bytes .../resources/themes/images/bb10/tip_left.png | Bin 0 -> 1610 bytes .../themes/images/bb10/tip_right.png | Bin 0 -> 1596 bytes .../resources/themes/images/bb10/tip_top.png | Bin 0 -> 340 bytes .../resources/themes/images/bb10/togglebg.png | Bin 0 -> 1704 bytes .../themes/images/bb10/togglemask.png | Bin 0 -> 570 bytes .../themes/images/bb10/togglethumb.png | Bin 0 -> 2038 bytes .../themes/images/bb10/togglethumbbg.png | Bin 0 -> 2130 bytes .../themes/images/bb10/togglethumbmask.png | Bin 0 -> 466 bytes .../themes/images/bb10/trackmask_outer.png | Bin 0 -> 1308 bytes .../resources/themes/images/bb103/check.png | Bin 0 -> 826 bytes .../themes/images/bb103/clear_icon.png | Bin 0 -> 8446 bytes .../themes/images/bb103/disclosure.png | Bin 0 -> 3567 bytes .../themes/images/bb103/disclosure2.png | Bin 0 -> 4035 bytes .../resources/themes/images/bb103/dotgrid.png | Bin 0 -> 582 bytes .../themes/images/bb103/icons-dark/ic_add.png | Bin 0 -> 15483 bytes .../bb103/icons-dark/ic_add_bookmarks.png | Bin 0 -> 16595 bytes .../images/bb103/icons-dark/ic_add_folder.png | Bin 0 -> 15604 bytes .../bb103/icons-dark/ic_add_to_contacts.png | Bin 0 -> 16940 bytes .../themes/images/bb103/icons-dark/ic_all.png | Bin 0 -> 15407 bytes .../images/bb103/icons-dark/ic_attach.png | Bin 0 -> 16844 bytes .../themes/images/bb103/icons-dark/ic_bbm.png | Bin 0 -> 16507 bytes .../images/bb103/icons-dark/ic_browser.png | Bin 0 -> 18168 bytes .../themes/images/bb103/icons-dark/ic_buy.png | Bin 0 -> 16826 bytes .../images/bb103/icons-dark/ic_camera.png | Bin 0 -> 17367 bytes .../images/bb103/icons-dark/ic_cancel.png | Bin 0 -> 17041 bytes .../bb103/icons-dark/ic_cancel_selection.png | Bin 0 -> 17693 bytes .../bb103/icons-dark/ic_check_spell.png | Bin 0 -> 16930 bytes .../images/bb103/icons-dark/ic_clear.png | Bin 0 -> 15815 bytes .../images/bb103/icons-dark/ic_clear_list.png | Bin 0 -> 16775 bytes .../bb103/icons-dark/ic_code_inspector.png | Bin 0 -> 17063 bytes .../images/bb103/icons-dark/ic_collapse.png | Bin 0 -> 15533 bytes .../images/bb103/icons-dark/ic_compose.png | Bin 0 -> 15640 bytes .../images/bb103/icons-dark/ic_contact.png | Bin 0 -> 16522 bytes .../images/bb103/icons-dark/ic_copy.png | Bin 0 -> 15979 bytes .../images/bb103/icons-dark/ic_copy_link.png | Bin 0 -> 16326 bytes .../bb103/icons-dark/ic_copy_link_image.png | Bin 0 -> 17113 bytes .../bb103/icons-dark/ic_copy_password.png | Bin 0 -> 16527 bytes .../themes/images/bb103/icons-dark/ic_cut.png | Bin 0 -> 16955 bytes .../images/bb103/icons-dark/ic_decrease.png | Bin 0 -> 16409 bytes .../images/bb103/icons-dark/ic_delete.png | Bin 0 -> 16789 bytes .../bb103/icons-dark/ic_delete_prior.png | Bin 0 -> 17259 bytes .../images/bb103/icons-dark/ic_deselect.png | Bin 0 -> 17496 bytes .../bb103/icons-dark/ic_deselect_all.png | Bin 0 -> 15427 bytes .../bb103/icons-dark/ic_diagnostics.png | Bin 0 -> 15962 bytes .../images/bb103/icons-dark/ic_disable.png | Bin 0 -> 16542 bytes .../bb103/icons-dark/ic_doctype_doc.png | Bin 0 -> 16860 bytes .../bb103/icons-dark/ic_doctype_generic.png | Bin 0 -> 15484 bytes .../bb103/icons-dark/ic_doctype_music.png | Bin 0 -> 16271 bytes .../bb103/icons-dark/ic_doctype_pdf.png | Bin 0 -> 16229 bytes .../bb103/icons-dark/ic_doctype_picture.png | Bin 0 -> 16506 bytes .../bb103/icons-dark/ic_doctype_ppt.png | Bin 0 -> 16042 bytes .../bb103/icons-dark/ic_doctype_video.png | Bin 0 -> 15676 bytes .../bb103/icons-dark/ic_doctype_web.png | Bin 0 -> 18853 bytes .../bb103/icons-dark/ic_doctype_xls.png | Bin 0 -> 16668 bytes .../bb103/icons-dark/ic_doctype_zip.png | Bin 0 -> 16130 bytes .../images/bb103/icons-dark/ic_done.png | Bin 0 -> 16345 bytes .../images/bb103/icons-dark/ic_download.png | Bin 0 -> 16737 bytes .../images/bb103/icons-dark/ic_edit.png | Bin 0 -> 16150 bytes .../bb103/icons-dark/ic_edit_bookmarks.png | Bin 0 -> 17124 bytes .../images/bb103/icons-dark/ic_edit_list.png | Bin 0 -> 16076 bytes .../bb103/icons-dark/ic_edit_profile.png | Bin 0 -> 18589 bytes .../images/bb103/icons-dark/ic_email_dk.png | Bin 0 -> 16034 bytes .../images/bb103/icons-dark/ic_enable.png | Bin 0 -> 16555 bytes .../images/bb103/icons-dark/ic_entry.png | Bin 0 -> 15273 bytes .../images/bb103/icons-dark/ic_expand.png | Bin 0 -> 15598 bytes .../images/bb103/icons-dark/ic_favorite.png | Bin 0 -> 16410 bytes .../images/bb103/icons-dark/ic_feedback.png | Bin 0 -> 18475 bytes .../images/bb103/icons-dark/ic_forward.png | Bin 0 -> 15935 bytes .../images/bb103/icons-dark/ic_help.png | Bin 0 -> 18299 bytes .../images/bb103/icons-dark/ic_history.png | Bin 0 -> 17616 bytes .../images/bb103/icons-dark/ic_home.png | Bin 0 -> 16298 bytes .../images/bb103/icons-dark/ic_increase.png | Bin 0 -> 16811 bytes .../images/bb103/icons-dark/ic_info.png | Bin 0 -> 17928 bytes .../images/bb103/icons-dark/ic_location.png | Bin 0 -> 17054 bytes .../images/bb103/icons-dark/ic_lock.png | Bin 0 -> 16030 bytes .../themes/images/bb103/icons-dark/ic_map.png | Bin 0 -> 18688 bytes .../images/bb103/icons-dark/ic_microphone.png | Bin 0 -> 16700 bytes .../bb103/icons-dark/ic_microphone_mute.png | Bin 0 -> 17372 bytes .../images/bb103/icons-dark/ic_move.png | Bin 0 -> 16257 bytes .../images/bb103/icons-dark/ic_nav_to.png | Bin 0 -> 17432 bytes .../images/bb103/icons-dark/ic_next.png | Bin 0 -> 16436 bytes .../images/bb103/icons-dark/ic_notes.png | Bin 0 -> 15758 bytes .../bb103/icons-dark/ic_notification.png | Bin 0 -> 16251 bytes .../images/bb103/icons-dark/ic_open.png | Bin 0 -> 15638 bytes .../images/bb103/icons-dark/ic_open_link.png | Bin 0 -> 15928 bytes .../bb103/icons-dark/ic_overflow_action.png | Bin 0 -> 15789 bytes .../bb103/icons-dark/ic_overflow_tab.png | Bin 0 -> 15491 bytes .../images/bb103/icons-dark/ic_paste.png | Bin 0 -> 16091 bytes .../images/bb103/icons-dark/ic_pause.png | Bin 0 -> 15601 bytes .../images/bb103/icons-dark/ic_phone.png | Bin 0 -> 16568 bytes .../images/bb103/icons-dark/ic_play.png | Bin 0 -> 15769 bytes .../images/bb103/icons-dark/ic_previous.png | Bin 0 -> 16397 bytes .../images/bb103/icons-dark/ic_properties.png | Bin 0 -> 15352 bytes .../images/bb103/icons-dark/ic_reload.png | Bin 0 -> 17101 bytes .../images/bb103/icons-dark/ic_rename.png | Bin 0 -> 17163 bytes .../images/bb103/icons-dark/ic_reply.png | Bin 0 -> 16016 bytes .../images/bb103/icons-dark/ic_reply_all.png | Bin 0 -> 16324 bytes .../images/bb103/icons-dark/ic_resume.png | Bin 0 -> 17122 bytes .../images/bb103/icons-dark/ic_save.png | Bin 0 -> 15990 bytes .../images/bb103/icons-dark/ic_save_as.png | Bin 0 -> 16248 bytes .../bb103/icons-dark/ic_scan_barcode.png | Bin 0 -> 15307 bytes .../images/bb103/icons-dark/ic_search.png | Bin 0 -> 17374 bytes .../images/bb103/icons-dark/ic_select.png | Bin 0 -> 16005 bytes .../images/bb103/icons-dark/ic_select_all.png | Bin 0 -> 15932 bytes .../bb103/icons-dark/ic_select_more.png | Bin 0 -> 16119 bytes .../bb103/icons-dark/ic_select_text.png | Bin 0 -> 16860 bytes .../bb103/icons-dark/ic_set_as_default.png | Bin 0 -> 15816 bytes .../images/bb103/icons-dark/ic_settings.png | Bin 0 -> 17458 bytes .../images/bb103/icons-dark/ic_share.png | Bin 0 -> 17045 bytes .../bb103/icons-dark/ic_show_dialpad.png | Bin 0 -> 15651 bytes .../images/bb103/icons-dark/ic_show_vkb.png | Bin 0 -> 15255 bytes .../images/bb103/icons-dark/ic_sort.png | Bin 0 -> 16037 bytes .../images/bb103/icons-dark/ic_speaker_dk.png | Bin 0 -> 16813 bytes .../bb103/icons-dark/ic_speaker_mute.png | Bin 0 -> 16411 bytes .../images/bb103/icons-dark/ic_stop.png | Bin 0 -> 15225 bytes .../bb103/icons-dark/ic_textmessage_dk.png | Bin 0 -> 15342 bytes .../images/bb103/icons-dark/ic_to_bottom.png | Bin 0 -> 16487 bytes .../images/bb103/icons-dark/ic_to_top.png | Bin 0 -> 16397 bytes .../bb103/icons-dark/ic_view_details_dk.png | Bin 0 -> 15115 bytes .../images/bb103/icons-dark/ic_view_grid.png | Bin 0 -> 15271 bytes .../images/bb103/icons-dark/ic_view_image.png | Bin 0 -> 16582 bytes .../images/bb103/icons-dark/ic_view_list.png | Bin 0 -> 15283 bytes .../images/bb103/icons-dark/ic_view_post.png | Bin 0 -> 15493 bytes .../images/bb103/icons-dark/ic_zoom_in.png | Bin 0 -> 17581 bytes .../images/bb103/icons-dark/ic_zoom_out.png | Bin 0 -> 17497 bytes .../themes/images/bb103/icons/ic_add.png | Bin 0 -> 1411 bytes .../images/bb103/icons/ic_add_bookmarks.png | Bin 0 -> 2231 bytes .../images/bb103/icons/ic_add_folder.png | Bin 0 -> 1557 bytes .../images/bb103/icons/ic_add_to_contacts.png | Bin 0 -> 2474 bytes .../themes/images/bb103/icons/ic_all.png | Bin 0 -> 1434 bytes .../themes/images/bb103/icons/ic_attach.png | Bin 0 -> 2270 bytes .../themes/images/bb103/icons/ic_bbm.png | Bin 0 -> 2021 bytes .../themes/images/bb103/icons/ic_browser.png | Bin 0 -> 3103 bytes .../themes/images/bb103/icons/ic_buy.png | Bin 0 -> 2315 bytes .../themes/images/bb103/icons/ic_camera.png | Bin 0 -> 2516 bytes .../themes/images/bb103/icons/ic_cancel.png | Bin 0 -> 2524 bytes .../bb103/icons/ic_cancel_selection.png | Bin 0 -> 2832 bytes .../images/bb103/icons/ic_check_spell.png | Bin 0 -> 2430 bytes .../themes/images/bb103/icons/ic_clear.png | Bin 0 -> 1750 bytes .../images/bb103/icons/ic_clear_list.png | Bin 0 -> 2284 bytes .../images/bb103/icons/ic_code_inspector.png | Bin 0 -> 2405 bytes .../themes/images/bb103/icons/ic_collapse.png | Bin 0 -> 1447 bytes .../themes/images/bb103/icons/ic_compose.png | Bin 0 -> 1664 bytes .../themes/images/bb103/icons/ic_contact.png | Bin 0 -> 2118 bytes .../themes/images/bb103/icons/ic_copy.png | Bin 0 -> 1852 bytes .../images/bb103/icons/ic_copy_link.png | Bin 0 -> 2083 bytes .../images/bb103/icons/ic_copy_link_image.png | Bin 0 -> 2640 bytes .../images/bb103/icons/ic_copy_password.png | Bin 0 -> 2082 bytes .../themes/images/bb103/icons/ic_cut.png | Bin 0 -> 2501 bytes .../themes/images/bb103/icons/ic_decrease.png | Bin 0 -> 2049 bytes .../themes/images/bb103/icons/ic_delete.png | Bin 0 -> 2048 bytes .../images/bb103/icons/ic_delete_prior.png | Bin 0 -> 2297 bytes .../themes/images/bb103/icons/ic_deselect.png | Bin 0 -> 2764 bytes .../images/bb103/icons/ic_deselect_all.png | Bin 0 -> 1395 bytes .../images/bb103/icons/ic_diagnostics.png | Bin 0 -> 1759 bytes .../themes/images/bb103/icons/ic_disable.png | Bin 0 -> 2126 bytes .../images/bb103/icons/ic_doctype_doc.png | Bin 0 -> 2252 bytes .../images/bb103/icons/ic_doctype_generic.png | Bin 0 -> 1446 bytes .../images/bb103/icons/ic_doctype_music.png | Bin 0 -> 2037 bytes .../images/bb103/icons/ic_doctype_pdf.png | Bin 0 -> 1930 bytes .../images/bb103/icons/ic_doctype_picture.png | Bin 0 -> 2226 bytes .../images/bb103/icons/ic_doctype_ppt.png | Bin 0 -> 1784 bytes .../images/bb103/icons/ic_doctype_video.png | Bin 0 -> 1601 bytes .../images/bb103/icons/ic_doctype_web.png | Bin 0 -> 3338 bytes .../images/bb103/icons/ic_doctype_xls.png | Bin 0 -> 2206 bytes .../images/bb103/icons/ic_doctype_zip.png | Bin 0 -> 1870 bytes .../themes/images/bb103/icons/ic_done.png | Bin 0 -> 2088 bytes .../themes/images/bb103/icons/ic_download.png | Bin 0 -> 2416 bytes .../themes/images/bb103/icons/ic_edit.png | Bin 0 -> 2057 bytes .../images/bb103/icons/ic_edit_bookmarks.png | Bin 0 -> 2651 bytes .../images/bb103/icons/ic_edit_list.png | Bin 0 -> 1999 bytes .../images/bb103/icons/ic_edit_profile.png | Bin 0 -> 3405 bytes .../themes/images/bb103/icons/ic_email_dk.png | Bin 0 -> 1843 bytes .../themes/images/bb103/icons/ic_enable.png | Bin 0 -> 2167 bytes .../themes/images/bb103/icons/ic_entry.png | Bin 0 -> 1306 bytes .../themes/images/bb103/icons/ic_expand.png | Bin 0 -> 1537 bytes .../themes/images/bb103/icons/ic_favorite.png | Bin 0 -> 2144 bytes .../themes/images/bb103/icons/ic_feedback.png | Bin 0 -> 3210 bytes .../themes/images/bb103/icons/ic_forward.png | Bin 0 -> 1835 bytes .../themes/images/bb103/icons/ic_help.png | Bin 0 -> 3099 bytes .../themes/images/bb103/icons/ic_history.png | Bin 0 -> 2798 bytes .../themes/images/bb103/icons/ic_home.png | Bin 0 -> 1986 bytes .../themes/images/bb103/icons/ic_increase.png | Bin 0 -> 2307 bytes .../themes/images/bb103/icons/ic_info.png | Bin 0 -> 2884 bytes .../themes/images/bb103/icons/ic_location.png | Bin 0 -> 2528 bytes .../themes/images/bb103/icons/ic_lock.png | Bin 0 -> 1801 bytes .../themes/images/bb103/icons/ic_map.png | Bin 0 -> 3376 bytes .../images/bb103/icons/ic_microphone.png | Bin 0 -> 2173 bytes .../images/bb103/icons/ic_microphone_mute.png | Bin 0 -> 2597 bytes .../themes/images/bb103/icons/ic_move.png | Bin 0 -> 2075 bytes .../themes/images/bb103/icons/ic_nav_to.png | Bin 0 -> 2545 bytes .../themes/images/bb103/icons/ic_next.png | Bin 0 -> 2195 bytes .../themes/images/bb103/icons/ic_notes.png | Bin 0 -> 1617 bytes .../images/bb103/icons/ic_notification.png | Bin 0 -> 1922 bytes .../themes/images/bb103/icons/ic_open.png | Bin 0 -> 1592 bytes .../images/bb103/icons/ic_open_link.png | Bin 0 -> 1751 bytes .../images/bb103/icons/ic_overflow_action.png | Bin 0 -> 1620 bytes .../images/bb103/icons/ic_overflow_tab.png | Bin 0 -> 1466 bytes .../themes/images/bb103/icons/ic_paste.png | Bin 0 -> 1862 bytes .../themes/images/bb103/icons/ic_pause.png | Bin 0 -> 1542 bytes .../themes/images/bb103/icons/ic_phone.png | Bin 0 -> 2196 bytes .../themes/images/bb103/icons/ic_play.png | Bin 0 -> 1710 bytes .../themes/images/bb103/icons/ic_previous.png | Bin 0 -> 2176 bytes .../images/bb103/icons/ic_properties.png | Bin 0 -> 1361 bytes .../themes/images/bb103/icons/ic_reload.png | Bin 0 -> 2461 bytes .../themes/images/bb103/icons/ic_rename.png | Bin 0 -> 2518 bytes .../themes/images/bb103/icons/ic_reply.png | Bin 0 -> 1876 bytes .../images/bb103/icons/ic_reply_all.png | Bin 0 -> 1968 bytes .../themes/images/bb103/icons/ic_resume.png | Bin 0 -> 2505 bytes .../themes/images/bb103/icons/ic_save.png | Bin 0 -> 1906 bytes .../themes/images/bb103/icons/ic_save_as.png | Bin 0 -> 2148 bytes .../images/bb103/icons/ic_scan_barcode.png | Bin 0 -> 1382 bytes .../themes/images/bb103/icons/ic_search.png | Bin 0 -> 2604 bytes .../themes/images/bb103/icons/ic_select.png | Bin 0 -> 1796 bytes .../images/bb103/icons/ic_select_all.png | Bin 0 -> 1762 bytes .../images/bb103/icons/ic_select_more.png | Bin 0 -> 1939 bytes .../images/bb103/icons/ic_select_text.png | Bin 0 -> 2270 bytes .../images/bb103/icons/ic_set_as_default.png | Bin 0 -> 1687 bytes .../themes/images/bb103/icons/ic_settings.png | Bin 0 -> 2680 bytes .../themes/images/bb103/icons/ic_share.png | Bin 0 -> 2438 bytes .../images/bb103/icons/ic_show_dialpad.png | Bin 0 -> 1577 bytes .../themes/images/bb103/icons/ic_show_vkb.png | Bin 0 -> 1311 bytes .../themes/images/bb103/icons/ic_sort.png | Bin 0 -> 1832 bytes .../images/bb103/icons/ic_speaker_dk.png | Bin 0 -> 2442 bytes .../images/bb103/icons/ic_speaker_mute.png | Bin 0 -> 2253 bytes .../themes/images/bb103/icons/ic_stop.png | Bin 0 -> 1261 bytes .../images/bb103/icons/ic_textmessage_dk.png | Bin 0 -> 1345 bytes .../images/bb103/icons/ic_to_bottom.png | Bin 0 -> 2154 bytes .../themes/images/bb103/icons/ic_to_top.png | Bin 0 -> 2061 bytes .../images/bb103/icons/ic_view_details_dk.png | Bin 0 -> 1193 bytes .../images/bb103/icons/ic_view_grid.png | Bin 0 -> 1298 bytes .../images/bb103/icons/ic_view_image.png | Bin 0 -> 2363 bytes .../images/bb103/icons/ic_view_list.png | Bin 0 -> 1302 bytes .../images/bb103/icons/ic_view_post.png | Bin 0 -> 1462 bytes .../themes/images/bb103/icons/ic_zoom_in.png | Bin 0 -> 2682 bytes .../themes/images/bb103/icons/ic_zoom_out.png | Bin 0 -> 2653 bytes .../resources/themes/images/bb103/loading.gif | Bin 0 -> 3208 bytes .../themes/images/bb103/pullarrow.png | Bin 0 -> 655 bytes .../themes/images/bb103/reveal_icon.png | Bin 0 -> 25609 bytes .../themes/images/bb103/select_mask.png | Bin 0 -> 144 bytes .../themes/images/bb103/tab-active.png | Bin 0 -> 1028 bytes .../resources/themes/images/bb103/tab.png | Bin 0 -> 1022 bytes .../themes/images/bb103/tip2_left.png | Bin 0 -> 641 bytes .../themes/images/bb103/tip2_right.png | Bin 0 -> 471 bytes .../themes/images/bb103/tip_bottom.png | Bin 0 -> 1549 bytes .../themes/images/bb103/tip_left.png | Bin 0 -> 1610 bytes .../themes/images/bb103/tip_right.png | Bin 0 -> 1596 bytes .../resources/themes/images/bb103/tip_top.png | Bin 0 -> 340 bytes .../themes/images/bb103/togglebg.png | Bin 0 -> 1704 bytes .../themes/images/bb103/togglemask.png | Bin 0 -> 570 bytes .../themes/images/bb103/togglethumb.png | Bin 0 -> 2038 bytes .../themes/images/bb103/togglethumbbg.png | Bin 0 -> 2130 bytes .../themes/images/bb103/togglethumbmask.png | Bin 0 -> 466 bytes .../themes/images/bb103/trackmask_outer.png | Bin 0 -> 1308 bytes .../images/cupertino-flat/clear_icon.png | Bin 0 -> 2240 bytes .../themes/images/cupertino/clear_icon.png | Bin 0 -> 2240 bytes .../themes/images/default/pictos/back.png | Bin 0 -> 508 bytes .../themes/images/default/pictos/more2.png | Bin 0 -> 3452 bytes .../images/default/pictos/pictos-web.eot | Bin 0 -> 18632 bytes .../images/default/pictos/pictos-web.svg | 114 + .../images/default/pictos/pictos-web.ttf | Bin 0 -> 18276 bytes .../images/default/pictos/pictos-web.woff | Bin 0 -> 12904 bytes .../images/windows-phone/dark/check.png | Bin 0 -> 826 bytes .../images/windows-phone/dark/clear_icon.png | Bin 0 -> 3404 bytes .../images/windows-phone/dark/disclosure.png | Bin 0 -> 3567 bytes .../images/windows-phone/dark/disclosure2.png | Bin 0 -> 4035 bytes .../images/windows-phone/dark/dotgrid.png | Bin 0 -> 582 bytes .../images/windows-phone/dark/loading.gif | Bin 0 -> 3208 bytes .../windows-phone/dark/pictos/action.png | Bin 0 -> 1569 bytes .../images/windows-phone/dark/pictos/add.png | Bin 0 -> 1065 bytes .../images/windows-phone/dark/pictos/add1.png | Bin 0 -> 1295 bytes .../windows-phone/dark/pictos/add_black.png | Bin 0 -> 2058 bytes .../dark/pictos/address_book.png | Bin 0 -> 1863 bytes .../windows-phone/dark/pictos/arrow_down.png | Bin 0 -> 2051 bytes .../windows-phone/dark/pictos/arrow_left.png | Bin 0 -> 2190 bytes .../windows-phone/dark/pictos/arrow_right.png | Bin 0 -> 2197 bytes .../windows-phone/dark/pictos/arrow_up.png | Bin 0 -> 2059 bytes .../images/windows-phone/dark/pictos/at.png | Bin 0 -> 2253 bytes .../images/windows-phone/dark/pictos/atom.png | Bin 0 -> 1297 bytes .../windows-phone/dark/pictos/attachment.png | Bin 0 -> 1836 bytes .../windows-phone/dark/pictos/attachment2.png | Bin 0 -> 1929 bytes .../windows-phone/dark/pictos/attachment3.png | Bin 0 -> 2412 bytes .../dark/pictos/attachment_black.png | Bin 0 -> 2022 bytes .../images/windows-phone/dark/pictos/back.png | Bin 0 -> 508 bytes .../windows-phone/dark/pictos/backspace.png | Bin 0 -> 1318 bytes .../dark/pictos/battery_full.png | Bin 0 -> 1107 bytes .../windows-phone/dark/pictos/battery_low.png | Bin 0 -> 1231 bytes .../dark/pictos/battery_power.png | Bin 0 -> 1271 bytes .../windows-phone/dark/pictos/blank.png | Bin 0 -> 979 bytes .../images/windows-phone/dark/pictos/bolt.png | Bin 0 -> 1655 bytes .../windows-phone/dark/pictos/bolt_side.png | Bin 0 -> 1151 bytes .../windows-phone/dark/pictos/bookmark1.png | Bin 0 -> 1320 bytes .../windows-phone/dark/pictos/bookmark2.png | Bin 0 -> 1174 bytes .../dark/pictos/bookmark_black.png | Bin 0 -> 1909 bytes .../windows-phone/dark/pictos/bookmarks.png | Bin 0 -> 2261 bytes .../windows-phone/dark/pictos/briefcase1.png | Bin 0 -> 1375 bytes .../windows-phone/dark/pictos/briefcase2.png | Bin 0 -> 1304 bytes .../windows-phone/dark/pictos/brightness1.png | Bin 0 -> 2090 bytes .../windows-phone/dark/pictos/brightness2.png | Bin 0 -> 2357 bytes .../windows-phone/dark/pictos/broadcast.png | Bin 0 -> 1880 bytes .../images/windows-phone/dark/pictos/bug.png | Bin 0 -> 2126 bytes .../images/windows-phone/dark/pictos/bulb.png | Bin 0 -> 2174 bytes .../windows-phone/dark/pictos/bullseye1.png | Bin 0 -> 2396 bytes .../windows-phone/dark/pictos/bullseye2.png | Bin 0 -> 2942 bytes .../windows-phone/dark/pictos/calendar.png | Bin 0 -> 2222 bytes .../windows-phone/dark/pictos/calendar2.png | Bin 0 -> 2160 bytes .../dark/pictos/calendar_add.png | Bin 0 -> 2005 bytes .../windows-phone/dark/pictos/card1.png | Bin 0 -> 1211 bytes .../windows-phone/dark/pictos/card2.png | Bin 0 -> 1399 bytes .../windows-phone/dark/pictos/chart1.png | Bin 0 -> 1414 bytes .../windows-phone/dark/pictos/chart2.png | Bin 0 -> 1593 bytes .../windows-phone/dark/pictos/chart3.png | Bin 0 -> 1303 bytes .../images/windows-phone/dark/pictos/chat.png | Bin 0 -> 2166 bytes .../windows-phone/dark/pictos/chat1.png | Bin 0 -> 1880 bytes .../windows-phone/dark/pictos/chat2.png | Bin 0 -> 2012 bytes .../windows-phone/dark/pictos/chat3.png | Bin 0 -> 1811 bytes .../windows-phone/dark/pictos/chat4.png | Bin 0 -> 1590 bytes .../windows-phone/dark/pictos/chat_black1.png | Bin 0 -> 2210 bytes .../windows-phone/dark/pictos/chat_black2.png | Bin 0 -> 2132 bytes .../windows-phone/dark/pictos/check.png | Bin 0 -> 604 bytes .../windows-phone/dark/pictos/check1.png | Bin 0 -> 1606 bytes .../windows-phone/dark/pictos/check2.png | Bin 0 -> 1575 bytes .../dark/pictos/check_black1.png | Bin 0 -> 1718 bytes .../dark/pictos/check_black2.png | Bin 0 -> 2046 bytes .../dark/pictos/check_dotted.png | Bin 0 -> 2386 bytes .../windows-phone/dark/pictos/circle.png | Bin 0 -> 1755 bytes .../windows-phone/dark/pictos/circle2.png | Bin 0 -> 1980 bytes .../windows-phone/dark/pictos/circle3.png | Bin 0 -> 4674 bytes .../windows-phone/dark/pictos/circle4.png | Bin 0 -> 4094 bytes .../windows-phone/dark/pictos/clash.png | Bin 0 -> 1916 bytes .../windows-phone/dark/pictos/cloud.png | Bin 0 -> 2082 bytes .../windows-phone/dark/pictos/cloud_black.png | Bin 0 -> 1425 bytes .../dark/pictos/cloud_black_upload1.png | Bin 0 -> 2040 bytes .../dark/pictos/cloud_black_upload2.png | Bin 0 -> 1603 bytes .../windows-phone/dark/pictos/cloud_bolt.png | Bin 0 -> 2332 bytes .../dark/pictos/cloud_download.png | Bin 0 -> 2062 bytes .../windows-phone/dark/pictos/code1.png | Bin 0 -> 1628 bytes .../windows-phone/dark/pictos/code2.png | Bin 0 -> 1587 bytes .../windows-phone/dark/pictos/code3.png | Bin 0 -> 3918 bytes .../windows-phone/dark/pictos/compass1.png | Bin 0 -> 2666 bytes .../windows-phone/dark/pictos/compass2.png | Bin 0 -> 2014 bytes .../windows-phone/dark/pictos/compass3.png | Bin 0 -> 2384 bytes .../windows-phone/dark/pictos/compose.png | Bin 0 -> 1842 bytes .../windows-phone/dark/pictos/compose1.png | Bin 0 -> 1913 bytes .../windows-phone/dark/pictos/compose2.png | Bin 0 -> 1996 bytes .../windows-phone/dark/pictos/compose3.png | Bin 0 -> 1813 bytes .../dark/pictos/compose_black.png | Bin 0 -> 2081 bytes .../windows-phone/dark/pictos/contract.png | Bin 0 -> 2130 bytes .../images/windows-phone/dark/pictos/cube.png | Bin 0 -> 2126 bytes .../images/windows-phone/dark/pictos/data.png | Bin 0 -> 1873 bytes .../windows-phone/dark/pictos/delete.png | Bin 0 -> 1966 bytes .../windows-phone/dark/pictos/delete1.png | Bin 0 -> 2081 bytes .../dark/pictos/delete_black1.png | Bin 0 -> 2253 bytes .../dark/pictos/delete_black2.png | Bin 0 -> 2237 bytes .../images/windows-phone/dark/pictos/doc.png | Bin 0 -> 1381 bytes .../images/windows-phone/dark/pictos/doc2.png | Bin 0 -> 1427 bytes .../windows-phone/dark/pictos/doc_black.png | Bin 0 -> 1219 bytes .../dark/pictos/doc_black_landscape.png | Bin 0 -> 1143 bytes .../dark/pictos/doc_compose1.png | Bin 0 -> 1767 bytes .../dark/pictos/doc_compose2.png | Bin 0 -> 1894 bytes .../windows-phone/dark/pictos/doc_delete.png | Bin 0 -> 2105 bytes .../windows-phone/dark/pictos/doc_down.png | Bin 0 -> 1612 bytes .../windows-phone/dark/pictos/doc_drawer.png | Bin 0 -> 1460 bytes .../windows-phone/dark/pictos/doc_list.png | Bin 0 -> 1580 bytes .../windows-phone/dark/pictos/doc_new.png | Bin 0 -> 1514 bytes .../windows-phone/dark/pictos/doc_send.png | Bin 0 -> 1703 bytes .../windows-phone/dark/pictos/doc_up.png | Bin 0 -> 1609 bytes .../windows-phone/dark/pictos/docs1.png | Bin 0 -> 1604 bytes .../windows-phone/dark/pictos/docs2.png | Bin 0 -> 1718 bytes .../windows-phone/dark/pictos/docs_black1.png | Bin 0 -> 1388 bytes .../windows-phone/dark/pictos/docs_black2.png | Bin 0 -> 2063 bytes .../windows-phone/dark/pictos/download.png | Bin 0 -> 1964 bytes .../windows-phone/dark/pictos/download1.png | Bin 0 -> 1471 bytes .../windows-phone/dark/pictos/download2.png | Bin 0 -> 1625 bytes .../dark/pictos/download_screen.png | Bin 0 -> 2114 bytes .../windows-phone/dark/pictos/eject.png | Bin 0 -> 1297 bytes .../windows-phone/dark/pictos/empty1.png | Bin 0 -> 2152 bytes .../windows-phone/dark/pictos/empty2.png | Bin 0 -> 2325 bytes .../windows-phone/dark/pictos/equalizer1.png | Bin 0 -> 1297 bytes .../windows-phone/dark/pictos/equalizer2.png | Bin 0 -> 1929 bytes .../dark/pictos/event_complete.png | Bin 0 -> 2126 bytes .../windows-phone/dark/pictos/expand.png | Bin 0 -> 1933 bytes .../windows-phone/dark/pictos/favorites.png | Bin 0 -> 1789 bytes .../windows-phone/dark/pictos/favorites1.png | Bin 0 -> 1761 bytes .../dark/pictos/favorites_circle.png | Bin 0 -> 2113 bytes .../windows-phone/dark/pictos/fforward.png | Bin 0 -> 1499 bytes .../images/windows-phone/dark/pictos/find.png | Bin 0 -> 2235 bytes .../images/windows-phone/dark/pictos/flag.png | Bin 0 -> 1426 bytes .../windows-phone/dark/pictos/flickr2.png | Bin 0 -> 2021 bytes .../windows-phone/dark/pictos/folder.png | Bin 0 -> 1540 bytes .../windows-phone/dark/pictos/folder_add.png | Bin 0 -> 1411 bytes .../dark/pictos/folder_black.png | Bin 0 -> 1178 bytes .../dark/pictos/folder_black_open.png | Bin 0 -> 1304 bytes .../dark/pictos/folder_delete.png | Bin 0 -> 1337 bytes .../dark/pictos/folder_delete2.png | Bin 0 -> 1657 bytes .../windows-phone/dark/pictos/folder_lock.png | Bin 0 -> 1299 bytes .../dark/pictos/folder_open2.png | Bin 0 -> 1314 bytes .../images/windows-phone/dark/pictos/font.png | Bin 0 -> 1906 bytes .../windows-phone/dark/pictos/forbidden.png | Bin 0 -> 2334 bytes .../dark/pictos/forward_black.png | Bin 0 -> 2052 bytes .../windows-phone/dark/pictos/globe1.png | Bin 0 -> 2492 bytes .../windows-phone/dark/pictos/globe2.png | Bin 0 -> 2681 bytes .../windows-phone/dark/pictos/globe_black.png | Bin 0 -> 2383 bytes .../windows-phone/dark/pictos/headphones.png | Bin 0 -> 1958 bytes .../windows-phone/dark/pictos/heart.png | Bin 0 -> 1766 bytes .../dark/pictos/heart_circle.png | Bin 0 -> 2177 bytes .../images/windows-phone/dark/pictos/help.png | Bin 0 -> 1847 bytes .../windows-phone/dark/pictos/help_black.png | Bin 0 -> 2099 bytes .../images/windows-phone/dark/pictos/home.png | Bin 0 -> 1485 bytes .../windows-phone/dark/pictos/home2.png | Bin 0 -> 1418 bytes .../images/windows-phone/dark/pictos/hot.png | Bin 0 -> 2062 bytes .../windows-phone/dark/pictos/inbox1.png | Bin 0 -> 1650 bytes .../windows-phone/dark/pictos/inbox2.png | Bin 0 -> 1852 bytes .../windows-phone/dark/pictos/inbox3.png | Bin 0 -> 1400 bytes .../windows-phone/dark/pictos/infinite.png | Bin 0 -> 1939 bytes .../windows-phone/dark/pictos/infinite2.png | Bin 0 -> 1737 bytes .../images/windows-phone/dark/pictos/info.png | Bin 0 -> 2122 bytes .../windows-phone/dark/pictos/info2.png | Bin 0 -> 2049 bytes .../windows-phone/dark/pictos/info_plain.png | Bin 0 -> 1725 bytes .../windows-phone/dark/pictos/info_plain2.png | Bin 0 -> 1519 bytes .../images/windows-phone/dark/pictos/json.png | Bin 0 -> 1291 bytes .../images/windows-phone/dark/pictos/lab.png | Bin 0 -> 1834 bytes .../windows-phone/dark/pictos/layout.png | Bin 0 -> 1254 bytes .../windows-phone/dark/pictos/link1.png | Bin 0 -> 2047 bytes .../windows-phone/dark/pictos/link2.png | Bin 0 -> 2157 bytes .../windows-phone/dark/pictos/link_black.png | Bin 0 -> 2345 bytes .../images/windows-phone/dark/pictos/list.png | Bin 0 -> 1497 bytes .../windows-phone/dark/pictos/locate.png | Bin 0 -> 2237 bytes .../windows-phone/dark/pictos/locate1.png | Bin 0 -> 1926 bytes .../windows-phone/dark/pictos/locate2.png | Bin 0 -> 1852 bytes .../windows-phone/dark/pictos/locate3.png | Bin 0 -> 2351 bytes .../windows-phone/dark/pictos/locate4.png | Bin 0 -> 1771 bytes .../windows-phone/dark/pictos/lock_closed.png | Bin 0 -> 1456 bytes .../windows-phone/dark/pictos/lock_open.png | Bin 0 -> 1512 bytes .../images/windows-phone/dark/pictos/look.png | Bin 0 -> 1608 bytes .../images/windows-phone/dark/pictos/loop.png | Bin 0 -> 1749 bytes .../windows-phone/dark/pictos/loop2.png | Bin 0 -> 1873 bytes .../windows-phone/dark/pictos/loop_circle.png | Bin 0 -> 2017 bytes .../windows-phone/dark/pictos/magic.png | Bin 0 -> 1991 bytes .../images/windows-phone/dark/pictos/mail.png | Bin 0 -> 1820 bytes .../windows-phone/dark/pictos/mail1.png | Bin 0 -> 1939 bytes .../windows-phone/dark/pictos/mail2.png | Bin 0 -> 1985 bytes .../windows-phone/dark/pictos/mail3.png | Bin 0 -> 2114 bytes .../windows-phone/dark/pictos/mail4.png | Bin 0 -> 1599 bytes .../windows-phone/dark/pictos/mail5.png | Bin 0 -> 1593 bytes .../images/windows-phone/dark/pictos/maps.png | Bin 0 -> 1717 bytes .../images/windows-phone/dark/pictos/mic.png | Bin 0 -> 1776 bytes .../windows-phone/dark/pictos/minus1.png | Bin 0 -> 914 bytes .../windows-phone/dark/pictos/minus2.png | Bin 0 -> 986 bytes .../dark/pictos/minus_black1.png | Bin 0 -> 1912 bytes .../dark/pictos/minus_black2.png | Bin 0 -> 1909 bytes .../windows-phone/dark/pictos/monitor1.png | Bin 0 -> 1467 bytes .../windows-phone/dark/pictos/monitor2.png | Bin 0 -> 1302 bytes .../windows-phone/dark/pictos/monitor3.png | Bin 0 -> 1520 bytes .../windows-phone/dark/pictos/monitor4.png | Bin 0 -> 1345 bytes .../images/windows-phone/dark/pictos/more.png | Bin 0 -> 1123 bytes .../windows-phone/dark/pictos/mouse.png | Bin 0 -> 2045 bytes .../images/windows-phone/dark/pictos/move.png | Bin 0 -> 1700 bytes .../windows-phone/dark/pictos/music1.png | Bin 0 -> 1904 bytes .../windows-phone/dark/pictos/music2.png | Bin 0 -> 1615 bytes .../windows-phone/dark/pictos/nodes1.png | Bin 0 -> 1951 bytes .../windows-phone/dark/pictos/nodes2.png | Bin 0 -> 2228 bytes .../windows-phone/dark/pictos/note1.png | Bin 0 -> 1818 bytes .../windows-phone/dark/pictos/note2.png | Bin 0 -> 1989 bytes .../windows-phone/dark/pictos/note3.png | Bin 0 -> 1648 bytes .../windows-phone/dark/pictos/note_black.png | Bin 0 -> 1971 bytes .../windows-phone/dark/pictos/nuclear.png | Bin 0 -> 2196 bytes .../windows-phone/dark/pictos/organize.png | Bin 0 -> 1694 bytes .../windows-phone/dark/pictos/outbox.png | Bin 0 -> 1917 bytes .../windows-phone/dark/pictos/pause.png | Bin 0 -> 1113 bytes .../windows-phone/dark/pictos/phone1.png | Bin 0 -> 1812 bytes .../windows-phone/dark/pictos/phone2.png | Bin 0 -> 1816 bytes .../windows-phone/dark/pictos/phone_black.png | Bin 0 -> 2240 bytes .../windows-phone/dark/pictos/phone_ring1.png | Bin 0 -> 2278 bytes .../windows-phone/dark/pictos/phone_ring2.png | Bin 0 -> 2416 bytes .../windows-phone/dark/pictos/photo1.png | Bin 0 -> 1587 bytes .../windows-phone/dark/pictos/photo2.png | Bin 0 -> 1511 bytes .../windows-phone/dark/pictos/photo3.png | Bin 0 -> 1356 bytes .../dark/pictos/photo_black1.png | Bin 0 -> 1648 bytes .../dark/pictos/photo_black2.png | Bin 0 -> 2029 bytes .../windows-phone/dark/pictos/photos1.png | Bin 0 -> 1348 bytes .../windows-phone/dark/pictos/photos2.png | Bin 0 -> 2219 bytes .../windows-phone/dark/pictos/photos4.png | Bin 0 -> 1411 bytes .../windows-phone/dark/pictos/piechart.png | Bin 0 -> 1831 bytes .../windows-phone/dark/pictos/play1.png | Bin 0 -> 1534 bytes .../windows-phone/dark/pictos/play2.png | Bin 0 -> 1492 bytes .../windows-phone/dark/pictos/play_black1.png | Bin 0 -> 2064 bytes .../windows-phone/dark/pictos/play_black2.png | Bin 0 -> 2030 bytes .../windows-phone/dark/pictos/podcast.png | Bin 0 -> 2726 bytes .../windows-phone/dark/pictos/power_on.png | Bin 0 -> 2169 bytes .../dark/pictos/power_socket.png | Bin 0 -> 2138 bytes .../windows-phone/dark/pictos/print.png | Bin 0 -> 1664 bytes .../windows-phone/dark/pictos/print2.png | Bin 0 -> 1493 bytes .../windows-phone/dark/pictos/quote1.png | Bin 0 -> 1729 bytes .../windows-phone/dark/pictos/quote2.png | Bin 0 -> 2026 bytes .../dark/pictos/quote_black1.png | Bin 0 -> 1669 bytes .../dark/pictos/quote_black2.png | Bin 0 -> 2111 bytes .../dark/pictos/quote_black3.png | Bin 0 -> 1873 bytes .../windows-phone/dark/pictos/refresh.png | Bin 0 -> 2060 bytes .../windows-phone/dark/pictos/refresh1.png | Bin 0 -> 2201 bytes .../windows-phone/dark/pictos/refresh2.png | Bin 0 -> 1759 bytes .../windows-phone/dark/pictos/refresh3.png | Bin 0 -> 2037 bytes .../windows-phone/dark/pictos/refresh5.png | Bin 0 -> 2127 bytes .../windows-phone/dark/pictos/reply.png | Bin 0 -> 1397 bytes .../windows-phone/dark/pictos/replytoall.png | Bin 0 -> 1406 bytes .../windows-phone/dark/pictos/resize.png | Bin 0 -> 1712 bytes .../dark/pictos/resize_black.png | Bin 0 -> 1769 bytes .../windows-phone/dark/pictos/rewind.png | Bin 0 -> 1540 bytes .../windows-phone/dark/pictos/right.png | Bin 0 -> 1145 bytes .../windows-phone/dark/pictos/right2.png | Bin 0 -> 1419 bytes .../images/windows-phone/dark/pictos/rss.png | Bin 0 -> 2250 bytes .../images/windows-phone/dark/pictos/rss2.png | Bin 0 -> 1771 bytes .../windows-phone/dark/pictos/rss_black.png | Bin 0 -> 1507 bytes .../windows-phone/dark/pictos/rss_black1.png | Bin 0 -> 2115 bytes .../windows-phone/dark/pictos/rss_black2.png | Bin 0 -> 2271 bytes .../windows-phone/dark/pictos/screens.png | Bin 0 -> 1595 bytes .../windows-phone/dark/pictos/search.png | Bin 0 -> 1900 bytes .../windows-phone/dark/pictos/search1.png | Bin 0 -> 1956 bytes .../windows-phone/dark/pictos/search2.png | Bin 0 -> 2091 bytes .../dark/pictos/search_black.png | Bin 0 -> 2131 bytes .../windows-phone/dark/pictos/server.png | Bin 0 -> 1125 bytes .../windows-phone/dark/pictos/servers.png | Bin 0 -> 1608 bytes .../windows-phone/dark/pictos/settings.png | Bin 0 -> 2325 bytes .../windows-phone/dark/pictos/settings1.png | Bin 0 -> 1966 bytes .../windows-phone/dark/pictos/settings10.png | Bin 0 -> 1652 bytes .../windows-phone/dark/pictos/settings11.png | Bin 0 -> 2148 bytes .../windows-phone/dark/pictos/settings3.png | Bin 0 -> 2626 bytes .../windows-phone/dark/pictos/settings4.png | Bin 0 -> 1914 bytes .../windows-phone/dark/pictos/settings5.png | Bin 0 -> 2201 bytes .../windows-phone/dark/pictos/settings6.png | Bin 0 -> 2031 bytes .../windows-phone/dark/pictos/settings7.png | Bin 0 -> 2121 bytes .../windows-phone/dark/pictos/settings8.png | Bin 0 -> 2226 bytes .../windows-phone/dark/pictos/settings9.png | Bin 0 -> 2245 bytes .../dark/pictos/settings_black.png | Bin 0 -> 2117 bytes .../windows-phone/dark/pictos/share.png | Bin 0 -> 1706 bytes .../windows-phone/dark/pictos/shield1.png | Bin 0 -> 1647 bytes .../windows-phone/dark/pictos/shield2.png | Bin 0 -> 2139 bytes .../windows-phone/dark/pictos/shop1.png | Bin 0 -> 1803 bytes .../windows-phone/dark/pictos/shop2.png | Bin 0 -> 1738 bytes .../windows-phone/dark/pictos/shuffle.png | Bin 0 -> 1913 bytes .../dark/pictos/sign_backforth.png | Bin 0 -> 1837 bytes .../windows-phone/dark/pictos/sign_cross.png | Bin 0 -> 1981 bytes .../dark/pictos/sign_leftright.png | Bin 0 -> 1158 bytes .../dark/pictos/sign_leftright2.png | Bin 0 -> 1887 bytes .../windows-phone/dark/pictos/sign_split.png | Bin 0 -> 1985 bytes .../windows-phone/dark/pictos/sign_switch.png | Bin 0 -> 1504 bytes .../windows-phone/dark/pictos/sign_uturn.png | Bin 0 -> 1844 bytes .../windows-phone/dark/pictos/spaces1.png | Bin 0 -> 1166 bytes .../windows-phone/dark/pictos/spaces2.png | Bin 0 -> 1800 bytes .../dark/pictos/speedometer1.png | Bin 0 -> 2464 bytes .../dark/pictos/speedometer2.png | Bin 0 -> 2736 bytes .../dark/pictos/speedometer_black1.png | Bin 0 -> 2260 bytes .../dark/pictos/speedometer_black2.png | Bin 0 -> 2162 bytes .../images/windows-phone/dark/pictos/star.png | Bin 0 -> 1789 bytes .../images/windows-phone/dark/pictos/stop.png | Bin 0 -> 3965 bytes .../windows-phone/dark/pictos/stop1.png | Bin 0 -> 1827 bytes .../windows-phone/dark/pictos/stop2.png | Bin 0 -> 1993 bytes .../images/windows-phone/dark/pictos/sync.png | Bin 0 -> 2242 bytes .../windows-phone/dark/pictos/tabbed_book.png | Bin 0 -> 1185 bytes .../images/windows-phone/dark/pictos/tag.png | Bin 0 -> 1825 bytes .../windows-phone/dark/pictos/tag_black.png | Bin 0 -> 2136 bytes .../images/windows-phone/dark/pictos/tags.png | Bin 0 -> 2172 bytes .../images/windows-phone/dark/pictos/team.png | Bin 0 -> 1419 bytes .../windows-phone/dark/pictos/team1.png | Bin 0 -> 1474 bytes .../images/windows-phone/dark/pictos/time.png | Bin 0 -> 2300 bytes .../windows-phone/dark/pictos/time_repeat.png | Bin 0 -> 2351 bytes .../windows-phone/dark/pictos/trash.png | Bin 0 -> 1908 bytes .../windows-phone/dark/pictos/trash2.png | Bin 0 -> 2124 bytes .../windows-phone/dark/pictos/trash_black.png | Bin 0 -> 1919 bytes .../images/windows-phone/dark/pictos/tree.png | Bin 0 -> 1541 bytes .../images/windows-phone/dark/pictos/tv.png | Bin 0 -> 1939 bytes .../windows-phone/dark/pictos/tweak.png | Bin 0 -> 1585 bytes .../windows-phone/dark/pictos/twitter1.png | Bin 0 -> 2043 bytes .../windows-phone/dark/pictos/twitter2.png | Bin 0 -> 2022 bytes .../images/windows-phone/dark/pictos/up1.png | Bin 0 -> 1380 bytes .../images/windows-phone/dark/pictos/up2.png | Bin 0 -> 1460 bytes .../windows-phone/dark/pictos/up_black.png | Bin 0 -> 1993 bytes .../windows-phone/dark/pictos/upload2.png | Bin 0 -> 1639 bytes .../images/windows-phone/dark/pictos/user.png | Bin 0 -> 1612 bytes .../windows-phone/dark/pictos/user3.png | Bin 0 -> 1421 bytes .../windows-phone/dark/pictos/user_add.png | Bin 0 -> 1612 bytes .../dark/pictos/user_business.png | Bin 0 -> 1804 bytes .../windows-phone/dark/pictos/user_fave.png | Bin 0 -> 1553 bytes .../windows-phone/dark/pictos/user_list.png | Bin 0 -> 1516 bytes .../windows-phone/dark/pictos/user_list2.png | Bin 0 -> 1401 bytes .../dark/pictos/user_remote1.png | Bin 0 -> 1690 bytes .../dark/pictos/user_remove2.png | Bin 0 -> 1517 bytes .../windows-phone/dark/pictos/user_send.png | Bin 0 -> 1555 bytes .../windows-phone/dark/pictos/video.png | Bin 0 -> 1347 bytes .../dark/pictos/video_black1.png | Bin 0 -> 1633 bytes .../dark/pictos/video_black2.png | Bin 0 -> 2021 bytes .../windows-phone/dark/pictos/volume.png | Bin 0 -> 2276 bytes .../dark/pictos/volume_black.png | Bin 0 -> 2190 bytes .../windows-phone/dark/pictos/volume_down.png | Bin 0 -> 1607 bytes .../windows-phone/dark/pictos/volume_mute.png | Bin 0 -> 1427 bytes .../windows-phone/dark/pictos/volume_up.png | Bin 0 -> 2111 bytes .../dark/pictos/warning_black.png | Bin 0 -> 1862 bytes .../dark/pictos/warning_dotted.png | Bin 0 -> 2373 bytes .../images/windows-phone/dark/pictos/wifi.png | Bin 0 -> 2299 bytes .../windows-phone/dark/pictos/wifi2.png | Bin 0 -> 1711 bytes .../windows-phone/dark/pictos/wifi3.png | Bin 0 -> 1957 bytes .../windows-phone/dark/pictos/wifi4.png | Bin 0 -> 1686 bytes .../windows-phone/dark/pictos/window.png | Bin 0 -> 1580 bytes .../images/windows-phone/dark/pullarrow.png | Bin 0 -> 655 bytes .../images/windows-phone/dark/select_mask.png | Bin 0 -> 144 bytes .../images/windows-phone/dark/tip2_left.png | Bin 0 -> 641 bytes .../images/windows-phone/dark/tip2_right.png | Bin 0 -> 471 bytes .../images/windows-phone/dark/tip_bottom.png | Bin 0 -> 1549 bytes .../images/windows-phone/dark/tip_left.png | Bin 0 -> 1610 bytes .../images/windows-phone/dark/tip_right.png | Bin 0 -> 1596 bytes .../images/windows-phone/dark/tip_top.png | Bin 0 -> 340 bytes .../images/windows-phone/dark/togglebg.png | Bin 0 -> 1704 bytes .../images/windows-phone/dark/togglemask.png | Bin 0 -> 570 bytes .../images/windows-phone/dark/togglethumb.png | Bin 0 -> 2038 bytes .../windows-phone/dark/togglethumbbg.png | Bin 0 -> 2130 bytes .../windows-phone/dark/togglethumbmask.png | Bin 0 -> 466 bytes .../windows-phone/dark/trackmask_outer.png | Bin 0 -> 1308 bytes .../images/windows-phone/light/check.png | Bin 0 -> 826 bytes .../images/windows-phone/light/clear_icon.png | Bin 0 -> 3404 bytes .../images/windows-phone/light/disclosure.png | Bin 0 -> 3567 bytes .../windows-phone/light/disclosure2.png | Bin 0 -> 4035 bytes .../images/windows-phone/light/dotgrid.png | Bin 0 -> 582 bytes .../images/windows-phone/light/loading.gif | Bin 0 -> 3208 bytes .../windows-phone/light/pictos/action.png | Bin 0 -> 1372 bytes .../images/windows-phone/light/pictos/add.png | Bin 0 -> 482 bytes .../windows-phone/light/pictos/add1.png | Bin 0 -> 879 bytes .../windows-phone/light/pictos/add_black.png | Bin 0 -> 1658 bytes .../light/pictos/address_book.png | Bin 0 -> 1739 bytes .../windows-phone/light/pictos/arrow_down.png | Bin 0 -> 1461 bytes .../windows-phone/light/pictos/arrow_left.png | Bin 0 -> 1496 bytes .../light/pictos/arrow_right.png | Bin 0 -> 1512 bytes .../windows-phone/light/pictos/arrow_up.png | Bin 0 -> 1409 bytes .../images/windows-phone/light/pictos/at.png | Bin 0 -> 2454 bytes .../windows-phone/light/pictos/atom.png | Bin 0 -> 1531 bytes .../windows-phone/light/pictos/attachment.png | Bin 0 -> 1207 bytes .../light/pictos/attachment2.png | Bin 0 -> 1240 bytes .../light/pictos/attachment3.png | Bin 0 -> 1646 bytes .../light/pictos/attachment_black.png | Bin 0 -> 1289 bytes .../windows-phone/light/pictos/back.png | Bin 0 -> 527 bytes .../windows-phone/light/pictos/backspace.png | Bin 0 -> 1129 bytes .../light/pictos/battery_full.png | Bin 0 -> 665 bytes .../light/pictos/battery_low.png | Bin 0 -> 835 bytes .../light/pictos/battery_power.png | Bin 0 -> 1157 bytes .../windows-phone/light/pictos/blank.png | Bin 0 -> 239 bytes .../windows-phone/light/pictos/bolt.png | Bin 0 -> 1547 bytes .../windows-phone/light/pictos/bolt_side.png | Bin 0 -> 988 bytes .../windows-phone/light/pictos/bookmark1.png | Bin 0 -> 592 bytes .../windows-phone/light/pictos/bookmark2.png | Bin 0 -> 591 bytes .../light/pictos/bookmark_black.png | Bin 0 -> 1448 bytes .../windows-phone/light/pictos/bookmarks.png | Bin 0 -> 1860 bytes .../windows-phone/light/pictos/briefcase1.png | Bin 0 -> 1048 bytes .../windows-phone/light/pictos/briefcase2.png | Bin 0 -> 676 bytes .../light/pictos/brightness1.png | Bin 0 -> 2074 bytes .../light/pictos/brightness2.png | Bin 0 -> 2254 bytes .../windows-phone/light/pictos/broadcast.png | Bin 0 -> 2257 bytes .../images/windows-phone/light/pictos/bug.png | Bin 0 -> 1863 bytes .../windows-phone/light/pictos/bulb.png | Bin 0 -> 2032 bytes .../windows-phone/light/pictos/bullseye1.png | Bin 0 -> 2486 bytes .../windows-phone/light/pictos/bullseye2.png | Bin 0 -> 3533 bytes .../windows-phone/light/pictos/calendar.png | Bin 0 -> 1942 bytes .../windows-phone/light/pictos/calendar2.png | Bin 0 -> 2086 bytes .../light/pictos/calendar_add.png | Bin 0 -> 1566 bytes .../windows-phone/light/pictos/card1.png | Bin 0 -> 564 bytes .../windows-phone/light/pictos/card2.png | Bin 0 -> 703 bytes .../windows-phone/light/pictos/chart1.png | Bin 0 -> 833 bytes .../windows-phone/light/pictos/chart2.png | Bin 0 -> 1514 bytes .../windows-phone/light/pictos/chart3.png | Bin 0 -> 688 bytes .../windows-phone/light/pictos/chat.png | Bin 0 -> 1903 bytes .../windows-phone/light/pictos/chat1.png | Bin 0 -> 1378 bytes .../windows-phone/light/pictos/chat2.png | Bin 0 -> 1768 bytes .../windows-phone/light/pictos/chat3.png | Bin 0 -> 1411 bytes .../windows-phone/light/pictos/chat4.png | Bin 0 -> 921 bytes .../light/pictos/chat_black1.png | Bin 0 -> 1936 bytes .../light/pictos/chat_black2.png | Bin 0 -> 1906 bytes .../windows-phone/light/pictos/check.png | Bin 0 -> 684 bytes .../windows-phone/light/pictos/check1.png | Bin 0 -> 1419 bytes .../windows-phone/light/pictos/check2.png | Bin 0 -> 1331 bytes .../light/pictos/check_black1.png | Bin 0 -> 1297 bytes .../light/pictos/check_black2.png | Bin 0 -> 1876 bytes .../light/pictos/check_dotted.png | Bin 0 -> 2205 bytes .../windows-phone/light/pictos/circle.png | Bin 0 -> 1229 bytes .../windows-phone/light/pictos/circle2.png | Bin 0 -> 1644 bytes .../windows-phone/light/pictos/circle3.png | Bin 0 -> 3986 bytes .../windows-phone/light/pictos/circle4.png | Bin 0 -> 3433 bytes .../windows-phone/light/pictos/clash.png | Bin 0 -> 1945 bytes .../windows-phone/light/pictos/cloud.png | Bin 0 -> 1809 bytes .../light/pictos/cloud_black.png | Bin 0 -> 963 bytes .../light/pictos/cloud_black_upload1.png | Bin 0 -> 1956 bytes .../light/pictos/cloud_black_upload2.png | Bin 0 -> 1322 bytes .../windows-phone/light/pictos/cloud_bolt.png | Bin 0 -> 2489 bytes .../light/pictos/cloud_download.png | Bin 0 -> 1997 bytes .../windows-phone/light/pictos/code1.png | Bin 0 -> 1727 bytes .../windows-phone/light/pictos/code2.png | Bin 0 -> 1538 bytes .../windows-phone/light/pictos/code3.png | Bin 0 -> 3503 bytes .../windows-phone/light/pictos/compass1.png | Bin 0 -> 3226 bytes .../windows-phone/light/pictos/compass2.png | Bin 0 -> 2064 bytes .../windows-phone/light/pictos/compass3.png | Bin 0 -> 2490 bytes .../windows-phone/light/pictos/compose.png | Bin 0 -> 1592 bytes .../windows-phone/light/pictos/compose1.png | Bin 0 -> 1581 bytes .../windows-phone/light/pictos/compose2.png | Bin 0 -> 1913 bytes .../windows-phone/light/pictos/compose3.png | Bin 0 -> 1591 bytes .../light/pictos/compose_black.png | Bin 0 -> 1995 bytes .../windows-phone/light/pictos/contract.png | Bin 0 -> 1866 bytes .../windows-phone/light/pictos/cube.png | Bin 0 -> 1617 bytes .../windows-phone/light/pictos/data.png | Bin 0 -> 1555 bytes .../windows-phone/light/pictos/delete.png | Bin 0 -> 1705 bytes .../windows-phone/light/pictos/delete1.png | Bin 0 -> 1837 bytes .../light/pictos/delete_black1.png | Bin 0 -> 2245 bytes .../light/pictos/delete_black2.png | Bin 0 -> 2126 bytes .../images/windows-phone/light/pictos/doc.png | Bin 0 -> 618 bytes .../windows-phone/light/pictos/doc2.png | Bin 0 -> 883 bytes .../windows-phone/light/pictos/doc_black.png | Bin 0 -> 533 bytes .../light/pictos/doc_black_landscape.png | Bin 0 -> 512 bytes .../light/pictos/doc_compose1.png | Bin 0 -> 1514 bytes .../light/pictos/doc_compose2.png | Bin 0 -> 1796 bytes .../windows-phone/light/pictos/doc_delete.png | Bin 0 -> 1868 bytes .../windows-phone/light/pictos/doc_down.png | Bin 0 -> 1049 bytes .../windows-phone/light/pictos/doc_drawer.png | Bin 0 -> 1055 bytes .../windows-phone/light/pictos/doc_list.png | Bin 0 -> 1166 bytes .../windows-phone/light/pictos/doc_new.png | Bin 0 -> 958 bytes .../windows-phone/light/pictos/doc_send.png | Bin 0 -> 1182 bytes .../windows-phone/light/pictos/doc_up.png | Bin 0 -> 1102 bytes .../windows-phone/light/pictos/docs1.png | Bin 0 -> 880 bytes .../windows-phone/light/pictos/docs2.png | Bin 0 -> 1019 bytes .../light/pictos/docs_black1.png | Bin 0 -> 713 bytes .../light/pictos/docs_black2.png | Bin 0 -> 1758 bytes .../windows-phone/light/pictos/download.png | Bin 0 -> 1704 bytes .../windows-phone/light/pictos/download1.png | Bin 0 -> 1012 bytes .../windows-phone/light/pictos/download2.png | Bin 0 -> 1299 bytes .../light/pictos/download_screen.png | Bin 0 -> 1848 bytes .../windows-phone/light/pictos/eject.png | Bin 0 -> 840 bytes .../windows-phone/light/pictos/empty1.png | Bin 0 -> 1501 bytes .../windows-phone/light/pictos/empty2.png | Bin 0 -> 1990 bytes .../windows-phone/light/pictos/equalizer1.png | Bin 0 -> 937 bytes .../windows-phone/light/pictos/equalizer2.png | Bin 0 -> 1536 bytes .../light/pictos/event_complete.png | Bin 0 -> 1767 bytes .../windows-phone/light/pictos/expand.png | Bin 0 -> 1605 bytes .../windows-phone/light/pictos/favorites.png | Bin 0 -> 1462 bytes .../windows-phone/light/pictos/favorites1.png | Bin 0 -> 1441 bytes .../light/pictos/favorites_circle.png | Bin 0 -> 1867 bytes .../windows-phone/light/pictos/fforward.png | Bin 0 -> 1216 bytes .../windows-phone/light/pictos/find.png | Bin 0 -> 1876 bytes .../windows-phone/light/pictos/flag.png | Bin 0 -> 967 bytes .../windows-phone/light/pictos/flickr2.png | Bin 0 -> 1848 bytes .../windows-phone/light/pictos/folder.png | Bin 0 -> 793 bytes .../windows-phone/light/pictos/folder_add.png | Bin 0 -> 934 bytes .../light/pictos/folder_black.png | Bin 0 -> 512 bytes .../light/pictos/folder_black_open.png | Bin 0 -> 810 bytes .../light/pictos/folder_delete.png | Bin 0 -> 769 bytes .../light/pictos/folder_delete2.png | Bin 0 -> 1316 bytes .../light/pictos/folder_lock.png | Bin 0 -> 913 bytes .../light/pictos/folder_open2.png | Bin 0 -> 726 bytes .../windows-phone/light/pictos/font.png | Bin 0 -> 1874 bytes .../windows-phone/light/pictos/forbidden.png | Bin 0 -> 2408 bytes .../light/pictos/forward_black.png | Bin 0 -> 1864 bytes .../windows-phone/light/pictos/globe1.png | Bin 0 -> 2622 bytes .../windows-phone/light/pictos/globe2.png | Bin 0 -> 3001 bytes .../light/pictos/globe_black.png | Bin 0 -> 2650 bytes .../windows-phone/light/pictos/headphones.png | Bin 0 -> 1634 bytes .../windows-phone/light/pictos/heart.png | Bin 0 -> 1409 bytes .../light/pictos/heart_circle.png | Bin 0 -> 1963 bytes .../windows-phone/light/pictos/help.png | Bin 0 -> 1499 bytes .../windows-phone/light/pictos/help_black.png | Bin 0 -> 1914 bytes .../windows-phone/light/pictos/home.png | Bin 0 -> 1124 bytes .../windows-phone/light/pictos/home2.png | Bin 0 -> 1000 bytes .../images/windows-phone/light/pictos/hot.png | Bin 0 -> 1919 bytes .../windows-phone/light/pictos/inbox1.png | Bin 0 -> 1366 bytes .../windows-phone/light/pictos/inbox2.png | Bin 0 -> 1861 bytes .../windows-phone/light/pictos/inbox3.png | Bin 0 -> 1516 bytes .../windows-phone/light/pictos/infinite.png | Bin 0 -> 1858 bytes .../windows-phone/light/pictos/infinite2.png | Bin 0 -> 1761 bytes .../windows-phone/light/pictos/info.png | Bin 0 -> 1905 bytes .../windows-phone/light/pictos/info2.png | Bin 0 -> 1642 bytes .../windows-phone/light/pictos/info_plain.png | Bin 0 -> 1387 bytes .../light/pictos/info_plain2.png | Bin 0 -> 922 bytes .../windows-phone/light/pictos/json.png | Bin 0 -> 1386 bytes .../images/windows-phone/light/pictos/lab.png | Bin 0 -> 1227 bytes .../windows-phone/light/pictos/layout.png | Bin 0 -> 664 bytes .../windows-phone/light/pictos/link1.png | Bin 0 -> 2179 bytes .../windows-phone/light/pictos/link2.png | Bin 0 -> 2342 bytes .../windows-phone/light/pictos/link_black.png | Bin 0 -> 2420 bytes .../windows-phone/light/pictos/list.png | Bin 0 -> 995 bytes .../windows-phone/light/pictos/locate.png | Bin 0 -> 2119 bytes .../windows-phone/light/pictos/locate1.png | Bin 0 -> 1471 bytes .../windows-phone/light/pictos/locate2.png | Bin 0 -> 1651 bytes .../windows-phone/light/pictos/locate3.png | Bin 0 -> 2234 bytes .../windows-phone/light/pictos/locate4.png | Bin 0 -> 1532 bytes .../light/pictos/lock_closed.png | Bin 0 -> 896 bytes .../windows-phone/light/pictos/lock_open.png | Bin 0 -> 1004 bytes .../windows-phone/light/pictos/look.png | Bin 0 -> 1627 bytes .../windows-phone/light/pictos/loop.png | Bin 0 -> 1509 bytes .../windows-phone/light/pictos/loop2.png | Bin 0 -> 1379 bytes .../light/pictos/loop_circle.png | Bin 0 -> 1928 bytes .../windows-phone/light/pictos/magic.png | Bin 0 -> 1913 bytes .../windows-phone/light/pictos/mail.png | Bin 0 -> 1679 bytes .../windows-phone/light/pictos/mail1.png | Bin 0 -> 1681 bytes .../windows-phone/light/pictos/mail2.png | Bin 0 -> 1961 bytes .../windows-phone/light/pictos/mail3.png | Bin 0 -> 1787 bytes .../windows-phone/light/pictos/mail4.png | Bin 0 -> 1653 bytes .../windows-phone/light/pictos/mail5.png | Bin 0 -> 1221 bytes .../windows-phone/light/pictos/maps.png | Bin 0 -> 976 bytes .../images/windows-phone/light/pictos/mic.png | Bin 0 -> 1516 bytes .../windows-phone/light/pictos/minus1.png | Bin 0 -> 261 bytes .../windows-phone/light/pictos/minus2.png | Bin 0 -> 458 bytes .../light/pictos/minus_black1.png | Bin 0 -> 1407 bytes .../light/pictos/minus_black2.png | Bin 0 -> 1362 bytes .../windows-phone/light/pictos/monitor1.png | Bin 0 -> 773 bytes .../windows-phone/light/pictos/monitor2.png | Bin 0 -> 521 bytes .../windows-phone/light/pictos/monitor3.png | Bin 0 -> 913 bytes .../windows-phone/light/pictos/monitor4.png | Bin 0 -> 610 bytes .../windows-phone/light/pictos/more.png | Bin 0 -> 864 bytes .../windows-phone/light/pictos/mouse.png | Bin 0 -> 1550 bytes .../windows-phone/light/pictos/move.png | Bin 0 -> 1569 bytes .../windows-phone/light/pictos/music1.png | Bin 0 -> 1282 bytes .../windows-phone/light/pictos/music2.png | Bin 0 -> 874 bytes .../windows-phone/light/pictos/nodes1.png | Bin 0 -> 1832 bytes .../windows-phone/light/pictos/nodes2.png | Bin 0 -> 2190 bytes .../windows-phone/light/pictos/note1.png | Bin 0 -> 1233 bytes .../windows-phone/light/pictos/note2.png | Bin 0 -> 1637 bytes .../windows-phone/light/pictos/note3.png | Bin 0 -> 1228 bytes .../windows-phone/light/pictos/note_black.png | Bin 0 -> 1949 bytes .../windows-phone/light/pictos/nuclear.png | Bin 0 -> 2209 bytes .../windows-phone/light/pictos/organize.png | Bin 0 -> 1198 bytes .../windows-phone/light/pictos/outbox.png | Bin 0 -> 1858 bytes .../windows-phone/light/pictos/pause.png | Bin 0 -> 319 bytes .../windows-phone/light/pictos/phone1.png | Bin 0 -> 1384 bytes .../windows-phone/light/pictos/phone2.png | Bin 0 -> 1352 bytes .../light/pictos/phone_black.png | Bin 0 -> 2124 bytes .../light/pictos/phone_ring1.png | Bin 0 -> 2386 bytes .../light/pictos/phone_ring2.png | Bin 0 -> 2512 bytes .../windows-phone/light/pictos/photo1.png | Bin 0 -> 1328 bytes .../windows-phone/light/pictos/photo2.png | Bin 0 -> 1015 bytes .../windows-phone/light/pictos/photo3.png | Bin 0 -> 1068 bytes .../light/pictos/photo_black1.png | Bin 0 -> 1204 bytes .../light/pictos/photo_black2.png | Bin 0 -> 1781 bytes .../windows-phone/light/pictos/photos1.png | Bin 0 -> 621 bytes .../windows-phone/light/pictos/photos2.png | Bin 0 -> 2176 bytes .../windows-phone/light/pictos/photos4.png | Bin 0 -> 752 bytes .../windows-phone/light/pictos/piechart.png | Bin 0 -> 1320 bytes .../windows-phone/light/pictos/play1.png | Bin 0 -> 1096 bytes .../windows-phone/light/pictos/play2.png | Bin 0 -> 989 bytes .../light/pictos/play_black1.png | Bin 0 -> 1644 bytes .../light/pictos/play_black2.png | Bin 0 -> 1635 bytes .../windows-phone/light/pictos/podcast.png | Bin 0 -> 3252 bytes .../windows-phone/light/pictos/power_on.png | Bin 0 -> 2134 bytes .../light/pictos/power_socket.png | Bin 0 -> 2028 bytes .../windows-phone/light/pictos/print.png | Bin 0 -> 1245 bytes .../windows-phone/light/pictos/print2.png | Bin 0 -> 1211 bytes .../windows-phone/light/pictos/quote1.png | Bin 0 -> 1342 bytes .../windows-phone/light/pictos/quote2.png | Bin 0 -> 1767 bytes .../light/pictos/quote_black1.png | Bin 0 -> 1220 bytes .../light/pictos/quote_black2.png | Bin 0 -> 1940 bytes .../light/pictos/quote_black3.png | Bin 0 -> 1565 bytes .../windows-phone/light/pictos/refresh.png | Bin 0 -> 1805 bytes .../windows-phone/light/pictos/refresh1.png | Bin 0 -> 1939 bytes .../windows-phone/light/pictos/refresh2.png | Bin 0 -> 1629 bytes .../windows-phone/light/pictos/refresh3.png | Bin 0 -> 2091 bytes .../windows-phone/light/pictos/refresh5.png | Bin 0 -> 2065 bytes .../windows-phone/light/pictos/reply.png | Bin 0 -> 1156 bytes .../windows-phone/light/pictos/replytoall.png | Bin 0 -> 1578 bytes .../windows-phone/light/pictos/resize.png | Bin 0 -> 1240 bytes .../light/pictos/resize_black.png | Bin 0 -> 1314 bytes .../windows-phone/light/pictos/rewind.png | Bin 0 -> 1366 bytes .../windows-phone/light/pictos/right.png | Bin 0 -> 731 bytes .../windows-phone/light/pictos/right2.png | Bin 0 -> 1055 bytes .../images/windows-phone/light/pictos/rss.png | Bin 0 -> 2064 bytes .../windows-phone/light/pictos/rss2.png | Bin 0 -> 2061 bytes .../windows-phone/light/pictos/rss_black.png | Bin 0 -> 1687 bytes .../windows-phone/light/pictos/rss_black1.png | Bin 0 -> 1850 bytes .../windows-phone/light/pictos/rss_black2.png | Bin 0 -> 2259 bytes .../windows-phone/light/pictos/screens.png | Bin 0 -> 1210 bytes .../windows-phone/light/pictos/search.png | Bin 0 -> 1709 bytes .../windows-phone/light/pictos/search1.png | Bin 0 -> 1744 bytes .../windows-phone/light/pictos/search2.png | Bin 0 -> 1928 bytes .../light/pictos/search_black.png | Bin 0 -> 2108 bytes .../windows-phone/light/pictos/server.png | Bin 0 -> 857 bytes .../windows-phone/light/pictos/servers.png | Bin 0 -> 1389 bytes .../windows-phone/light/pictos/settings.png | Bin 0 -> 2251 bytes .../windows-phone/light/pictos/settings1.png | Bin 0 -> 1618 bytes .../windows-phone/light/pictos/settings10.png | Bin 0 -> 1225 bytes .../windows-phone/light/pictos/settings11.png | Bin 0 -> 2094 bytes .../windows-phone/light/pictos/settings3.png | Bin 0 -> 2741 bytes .../windows-phone/light/pictos/settings4.png | Bin 0 -> 1689 bytes .../windows-phone/light/pictos/settings5.png | Bin 0 -> 2223 bytes .../windows-phone/light/pictos/settings6.png | Bin 0 -> 1868 bytes .../windows-phone/light/pictos/settings7.png | Bin 0 -> 1961 bytes .../windows-phone/light/pictos/settings8.png | Bin 0 -> 2002 bytes .../windows-phone/light/pictos/settings9.png | Bin 0 -> 2069 bytes .../light/pictos/settings_black.png | Bin 0 -> 2024 bytes .../windows-phone/light/pictos/share.png | Bin 0 -> 1408 bytes .../windows-phone/light/pictos/shield1.png | Bin 0 -> 1153 bytes .../windows-phone/light/pictos/shield2.png | Bin 0 -> 1852 bytes .../windows-phone/light/pictos/shop1.png | Bin 0 -> 1771 bytes .../windows-phone/light/pictos/shop2.png | Bin 0 -> 1576 bytes .../windows-phone/light/pictos/shuffle.png | Bin 0 -> 1962 bytes .../light/pictos/sign_backforth.png | Bin 0 -> 1530 bytes .../windows-phone/light/pictos/sign_cross.png | Bin 0 -> 1823 bytes .../light/pictos/sign_leftright.png | Bin 0 -> 976 bytes .../light/pictos/sign_leftright2.png | Bin 0 -> 1571 bytes .../windows-phone/light/pictos/sign_split.png | Bin 0 -> 1479 bytes .../light/pictos/sign_switch.png | Bin 0 -> 1275 bytes .../windows-phone/light/pictos/sign_uturn.png | Bin 0 -> 1164 bytes .../windows-phone/light/pictos/spaces1.png | Bin 0 -> 466 bytes .../windows-phone/light/pictos/spaces2.png | Bin 0 -> 1465 bytes .../light/pictos/speedometer1.png | Bin 0 -> 2609 bytes .../light/pictos/speedometer2.png | Bin 0 -> 2775 bytes .../light/pictos/speedometer_black1.png | Bin 0 -> 2260 bytes .../light/pictos/speedometer_black2.png | Bin 0 -> 1932 bytes .../windows-phone/light/pictos/star.png | Bin 0 -> 1462 bytes .../windows-phone/light/pictos/stop.png | Bin 0 -> 3170 bytes .../windows-phone/light/pictos/stop1.png | Bin 0 -> 1597 bytes .../windows-phone/light/pictos/stop2.png | Bin 0 -> 1957 bytes .../windows-phone/light/pictos/sync.png | Bin 0 -> 2054 bytes .../light/pictos/tabbed_book.png | Bin 0 -> 545 bytes .../images/windows-phone/light/pictos/tag.png | Bin 0 -> 1514 bytes .../windows-phone/light/pictos/tag_black.png | Bin 0 -> 1945 bytes .../windows-phone/light/pictos/tags.png | Bin 0 -> 2073 bytes .../windows-phone/light/pictos/team.png | Bin 0 -> 1372 bytes .../windows-phone/light/pictos/team1.png | Bin 0 -> 1252 bytes .../windows-phone/light/pictos/time.png | Bin 0 -> 2165 bytes .../light/pictos/time_repeat.png | Bin 0 -> 2303 bytes .../windows-phone/light/pictos/trash.png | Bin 0 -> 1341 bytes .../windows-phone/light/pictos/trash2.png | Bin 0 -> 2086 bytes .../light/pictos/trash_black.png | Bin 0 -> 1813 bytes .../windows-phone/light/pictos/tree.png | Bin 0 -> 1235 bytes .../images/windows-phone/light/pictos/tv.png | Bin 0 -> 1490 bytes .../windows-phone/light/pictos/tweak.png | Bin 0 -> 1330 bytes .../windows-phone/light/pictos/twitter1.png | Bin 0 -> 1651 bytes .../windows-phone/light/pictos/twitter2.png | Bin 0 -> 1734 bytes .../images/windows-phone/light/pictos/up1.png | Bin 0 -> 1019 bytes .../images/windows-phone/light/pictos/up2.png | Bin 0 -> 1113 bytes .../windows-phone/light/pictos/up_black.png | Bin 0 -> 1562 bytes .../windows-phone/light/pictos/upload2.png | Bin 0 -> 1205 bytes .../windows-phone/light/pictos/user.png | Bin 0 -> 1169 bytes .../windows-phone/light/pictos/user3.png | Bin 0 -> 998 bytes .../windows-phone/light/pictos/user_add.png | Bin 0 -> 1306 bytes .../light/pictos/user_business.png | Bin 0 -> 1416 bytes .../windows-phone/light/pictos/user_fave.png | Bin 0 -> 1387 bytes .../windows-phone/light/pictos/user_list.png | Bin 0 -> 1312 bytes .../windows-phone/light/pictos/user_list2.png | Bin 0 -> 1208 bytes .../light/pictos/user_remote1.png | Bin 0 -> 1254 bytes .../light/pictos/user_remove2.png | Bin 0 -> 1048 bytes .../windows-phone/light/pictos/user_send.png | Bin 0 -> 1266 bytes .../windows-phone/light/pictos/video.png | Bin 0 -> 786 bytes .../light/pictos/video_black1.png | Bin 0 -> 988 bytes .../light/pictos/video_black2.png | Bin 0 -> 1602 bytes .../windows-phone/light/pictos/volume.png | Bin 0 -> 2680 bytes .../light/pictos/volume_black.png | Bin 0 -> 2341 bytes .../light/pictos/volume_down.png | Bin 0 -> 1261 bytes .../light/pictos/volume_mute.png | Bin 0 -> 855 bytes .../windows-phone/light/pictos/volume_up.png | Bin 0 -> 2101 bytes .../light/pictos/warning_black.png | Bin 0 -> 1685 bytes .../light/pictos/warning_dotted.png | Bin 0 -> 2039 bytes .../windows-phone/light/pictos/wifi.png | Bin 0 -> 2171 bytes .../windows-phone/light/pictos/wifi2.png | Bin 0 -> 1637 bytes .../windows-phone/light/pictos/wifi3.png | Bin 0 -> 1932 bytes .../windows-phone/light/pictos/wifi4.png | Bin 0 -> 1874 bytes .../windows-phone/light/pictos/window.png | Bin 0 -> 936 bytes .../images/windows-phone/light/pullarrow.png | Bin 0 -> 655 bytes .../windows-phone/light/select_mask.png | Bin 0 -> 144 bytes .../images/windows-phone/light/tip2_left.png | Bin 0 -> 641 bytes .../images/windows-phone/light/tip2_right.png | Bin 0 -> 471 bytes .../images/windows-phone/light/tip_bottom.png | Bin 0 -> 1549 bytes .../images/windows-phone/light/tip_left.png | Bin 0 -> 1610 bytes .../images/windows-phone/light/tip_right.png | Bin 0 -> 1596 bytes .../images/windows-phone/light/tip_top.png | Bin 0 -> 340 bytes .../images/windows-phone/light/togglebg.png | Bin 0 -> 1704 bytes .../images/windows-phone/light/togglemask.png | Bin 0 -> 570 bytes .../windows-phone/light/togglethumb.png | Bin 0 -> 2038 bytes .../windows-phone/light/togglethumbbg.png | Bin 0 -> 2130 bytes .../windows-phone/light/togglethumbmask.png | Bin 0 -> 466 bytes .../windows-phone/light/trackmask_outer.png | Bin 0 -> 1308 bytes .../stylesheets/sencha-touch/_base.scss | 15 + .../stylesheets/sencha-touch/_bb10.scss | 5 + .../stylesheets/sencha-touch/_bb103.scss | 5 + .../sencha-touch/_cupertino-classic.scss | 18 + .../stylesheets/sencha-touch/_cupertino.scss | 19 + .../stylesheets/sencha-touch/_default.scss | 28 + .../sencha-touch/_mountainview.scss | 18 + .../stylesheets/sencha-touch/_tizen.scss | 4 + .../stylesheets/sencha-touch/_windows.scss | 13 + .../stylesheets/sencha-touch/base/_all.scss | 1 + .../sencha-touch/base/mixins/_Class.scss | 516 + .../sencha-touch/base/src/_Button.scss | 74 + .../sencha-touch/base/src/_Class.scss | 210 + .../widgets/_img.scss => base/src/_Img.scss} | 6 +- .../sencha-touch/base/src/_Map.scss | 24 + .../sencha-touch/base/src/_Mask.scss | 99 + .../_media.scss => base/src/_Media.scss} | 5 +- .../sencha-touch/base/src/_Menu.scss | 3 + .../sencha-touch/base/src/_MessageBox.scss | 48 + .../sencha-touch/base/src/_Panel.scss | 33 + .../base/src/_ProgressIndicator.scss | 69 + .../sencha-touch/base/src/_Sheet.scss | 8 + .../sencha-touch/base/src/_Toast.scss | 26 + .../sencha-touch/base/src/_Toolbar.scss | 69 + .../sencha-touch/base/src/_all.scss | 48 + .../base/src/carousel/_Carousel.scss | 41 + .../base/src/chart/_AbstractChart.scss | 139 + .../base/src/dataview/_DataView.scss | 17 + .../base/src/dataview/_IndexBar.scss | 43 + .../sencha-touch/base/src/dataview/_List.scss | 157 + .../sencha-touch/base/src/form/_Panel.scss | 230 + .../sencha-touch/base/src/grid/_Grid.scss | 342 + .../base/src/layout/_Abstract.scss | 29 + .../sencha-touch/base/src/layout/_Box.scss | 111 + .../sencha-touch/base/src/layout/_Card.scss | 23 + .../sencha-touch/base/src/layout/_Dock.scss | 102 + .../sencha-touch/base/src/layout/_Fit.scss | 49 + .../sencha-touch/base/src/layout/_Float.scss | 37 + .../sencha-touch/base/src/picker/_Picker.scss | 105 + .../base/src/plugin/_ListPaging.scss | 25 + .../base/src/plugin/_PullRefresh.scss | 58 + .../base/src/scroller/_Scroller.scss | 210 + .../sencha-touch/base/src/slider/_Slider.scss | 44 + .../sencha-touch/base/src/tab/_Panel.scss | 55 + .../sencha-touch/base/src/table/_Table.scss | 23 + .../base/src/util/_PaintMonitor.scss | 49 + .../base/src/util/_SizeMonitor.scss | 82 + .../base/src/util/_Translatable.scss | 35 + .../base/src/viewport/_Default.scss | 7 + .../stylesheets/sencha-touch/bb10/_all.scss | 1 + .../sencha-touch/bb10/mixins/_Class.scss | 21 + .../sencha-touch/bb10/src/_Button.scss | 320 + .../sencha-touch/bb10/src/_Class.scss | 14 + .../sencha-touch/bb10/src/_Mask.scss | 109 + .../sencha-touch/bb10/src/_Menu.scss | 105 + .../sencha-touch/bb10/src/_MessageBox.scss | 38 + .../sencha-touch/bb10/src/_Panel.scss | 5 + .../bb10/src/_SegmentedButton.scss | 149 + .../sencha-touch/bb10/src/_Sheet.scss | 23 + .../sencha-touch/bb10/src/_Toast.scss | 25 + .../sencha-touch/bb10/src/_Toolbar.scss | 92 + .../sencha-touch/bb10/src/_all.scss | 26 + .../bb10/src/carousel/_Carousel.scss | 52 + .../sencha-touch/bb10/src/dataview/_List.scss | 137 + .../bb10/src/field/_Checkbox.scss | 55 + .../sencha-touch/bb10/src/field/_Field.scss | 104 + .../sencha-touch/bb10/src/field/_Radio.scss | 36 + .../sencha-touch/bb10/src/field/_Select.scss | 87 + .../sencha-touch/bb10/src/field/_Spinner.scss | 24 + .../sencha-touch/bb10/src/form/_FieldSet.scss | 21 + .../sencha-touch/bb10/src/form/_Panel.scss | 9 + .../sencha-touch/bb10/src/grid/_Grid.scss | 8 + .../sencha-touch/bb10/src/picker/_Picker.scss | 59 + .../bb10/src/plugin/_PullRefresh.scss | 24 + .../sencha-touch/bb10/src/slider/_Slider.scss | 104 + .../sencha-touch/bb10/src/slider/_Toggle.scss | 41 + .../sencha-touch/bb10/src/tab/_Panel.scss | 211 + .../sencha-touch/bb10/var/_Class.scss | 181 + .../stylesheets/sencha-touch/bb103/_all.scss | 1 + .../sencha-touch/bb103/mixins/_Class.scss | 32 + .../sencha-touch/bb103/src/_Button.scss | 223 + .../sencha-touch/bb103/src/_Class.scss | 9 + .../sencha-touch/bb103/src/_Mask.scss | 89 + .../sencha-touch/bb103/src/_Menu.scss | 102 + .../sencha-touch/bb103/src/_MessageBox.scss | 38 + .../sencha-touch/bb103/src/_Panel.scss | 5 + .../bb103/src/_SegmentedButton.scss | 52 + .../sencha-touch/bb103/src/_Sheet.scss | 23 + .../sencha-touch/bb103/src/_Toast.scss | 25 + .../sencha-touch/bb103/src/_Toolbar.scss | 50 + .../sencha-touch/bb103/src/_all.scss | 27 + .../bb103/src/carousel/_Carousel.scss | 52 + .../bb103/src/dataview/_List.scss | 136 + .../bb103/src/field/_Checkbox.scss | 41 + .../sencha-touch/bb103/src/field/_Field.scss | 100 + .../sencha-touch/bb103/src/field/_Radio.scss | 36 + .../sencha-touch/bb103/src/field/_Select.scss | 72 + .../bb103/src/field/_Spinner.scss | 25 + .../bb103/src/form/_FieldSet.scss | 21 + .../sencha-touch/bb103/src/form/_Panel.scss | 9 + .../sencha-touch/bb103/src/grid/_Grid.scss | 8 + .../sencha-touch/bb103/src/layout/_Dock.scss | 3 + .../bb103/src/picker/_Picker.scss | 51 + .../bb103/src/plugin/_PullRefresh.scss | 24 + .../bb103/src/slider/_Slider.scss | 96 + .../bb103/src/slider/_Toggle.scss | 43 + .../sencha-touch/bb103/src/tab/_Panel.scss | 162 + .../sencha-touch/bb103/var/_Class.scss | 190 + .../sencha-touch/cupertino-classic/_all.scss | 1 + .../cupertino-classic/src/_Button.scss | 165 + .../cupertino-classic/src/_Class.scss | 3 + .../cupertino-classic/src/_Menu.scss | 40 + .../cupertino-classic/src/_MessageBox.scss | 118 + .../cupertino-classic/src/_Panel.scss | 70 + .../src/_SegmentedButton.scss | 16 + .../cupertino-classic/src/_Sheet.scss | 18 + .../cupertino-classic/src/_Toast.scss | 20 + .../cupertino-classic/src/_Toolbar.scss | 142 + .../cupertino-classic/src/_all.scss | 26 + .../src/carousel/_Indicator.scss | 4 + .../cupertino-classic/src/dataview/_List.scss | 252 + .../src/field/_Checkbox.scss | 44 + .../cupertino-classic/src/field/_Field.scss | 100 + .../cupertino-classic/src/field/_Radio.scss | 46 + .../cupertino-classic/src/field/_Select.scss | 19 + .../cupertino-classic/src/field/_Slider.scss | 10 + .../cupertino-classic/src/field/_Spinner.scss | 40 + .../src/field/_TextArea.scss | 4 + .../cupertino-classic/src/form/_FieldSet.scss | 91 + .../cupertino-classic/src/form/_Panel.scss | 27 + .../cupertino-classic/src/grid/_Grid.scss | 10 + .../cupertino-classic/src/picker/_Picker.scss | 75 + .../src/plugin/_PullRefresh.scss | 24 + .../cupertino-classic/src/slider/_Slider.scss | 51 + .../cupertino-classic/src/slider/_Toggle.scss | 38 + .../cupertino-classic/src/tab/_Panel.scss | 51 + .../cupertino-classic/var/_Button.scss | 0 .../cupertino-classic/var/_Class.scss | 8 + .../cupertino-classic/var/dataview/_List.scss | 75 + .../cupertino-classic/var/field/_Field.scss | 15 + .../cupertino-classic/var/field/_Slider.scss | 15 + .../cupertino-classic/var/field/_Toggle.scss | 9 + .../cupertino-classic/var/form/_FieldSet.scss | 9 + .../cupertino-classic/var/form/_Panel.scss | 39 + .../cupertino-classic/var/picker/_Picker.scss | 33 + .../sencha-touch/cupertino/_all.scss | 1 + .../sencha-touch/cupertino/src/_Button.scss | 225 + .../sencha-touch/cupertino/src/_Class.scss | 5 + .../sencha-touch/cupertino/src/_Mask.scss | 19 + .../sencha-touch/cupertino/src/_Menu.scss | 59 + .../cupertino/src/_MessageBox.scss | 126 + .../sencha-touch/cupertino/src/_Panel.scss | 69 + .../cupertino/src/_SegmentedButton.scss | 24 + .../sencha-touch/cupertino/src/_Sheet.scss | 15 + .../sencha-touch/cupertino/src/_Toast.scss | 20 + .../sencha-touch/cupertino/src/_Toolbar.scss | 41 + .../sencha-touch/cupertino/src/_all.scss | 28 + .../cupertino/src/carousel/_Indicator.scss | 7 + .../cupertino/src/dataview/_IndexBar.scss | 3 + .../cupertino/src/dataview/_List.scss | 71 + .../cupertino/src/field/_Checkbox.scss | 42 + .../cupertino/src/field/_Field.scss | 102 + .../cupertino/src/field/_Radio.scss | 18 + .../cupertino/src/field/_Select.scss | 16 + .../cupertino/src/field/_Slider.scss | 10 + .../cupertino/src/field/_Spinner.scss | 58 + .../cupertino/src/field/_TextArea.scss | 4 + .../cupertino/src/form/_FieldSet.scss | 51 + .../cupertino/src/form/_Panel.scss | 44 + .../cupertino/src/grid/_Grid.scss | 9 + .../cupertino/src/picker/_Picker.scss | 54 + .../cupertino/src/plugin/_PullRefresh.scss | 24 + .../cupertino/src/slider/_Slider.scss | 48 + .../cupertino/src/slider/_Toggle.scss | 57 + .../cupertino/src/tab/_Panel.scss | 116 + .../sencha-touch/cupertino/var/_Button.scss | 0 .../sencha-touch/cupertino/var/_Class.scss | 18 + .../cupertino/var/dataview/_List.scss | 14 + .../cupertino/var/field/_Field.scss | 15 + .../cupertino/var/field/_Slider.scss | 15 + .../cupertino/var/field/_Toggle.scss | 9 + .../cupertino/var/form/_FieldSet.scss | 9 + .../cupertino/var/form/_Panel.scss | 39 + .../cupertino/var/grid/_Grid.scss | 1 + .../cupertino/var/picker/_Picker.scss | 33 + .../sencha-touch/default/_all.scss | 3 +- .../sencha-touch/default/_core.scss | 3 - .../sencha-touch/default/_global.scss | 2 - .../sencha-touch/default/_mixins.scss | 153 - .../sencha-touch/default/_widgets.scss | 18 - .../sencha-touch/default/core/_core.scss | 205 - .../sencha-touch/default/core/_layout.scss | 629 - .../sencha-touch/default/core/_reset.scss | 62 - .../sencha-touch/default/mixins/_Class.scss | 98 + .../sencha-touch/default/src/_Button.scss | 334 + .../sencha-touch/default/src/_Class.scss | 27 + .../sencha-touch/default/src/_Menu.scss | 12 + .../sencha-touch/default/src/_MessageBox.scss | 98 + .../sencha-touch/default/src/_Panel.scss | 79 + .../sencha-touch/default/src/_Sheet.scss | 23 + .../sencha-touch/default/src/_Toast.scss | 30 + .../sencha-touch/default/src/_Toolbar.scss | 291 + .../sencha-touch/default/src/_all.scss | 28 + .../default/src/carousel/_Carousel.scss | 51 + .../default/src/dataview/_IndexBar.scss | 23 + .../default/src/dataview/_List.scss | 246 + .../default/src/field/_Checkbox.scss | 44 + .../default/src/field/_Field.scss | 72 + .../default/src/field/_Radio.scss | 35 + .../default/src/field/_Search.scss | 27 + .../default/src/field/_Select.scss | 69 + .../default/src/field/_Slider.scss | 10 + .../default/src/field/_Spinner.scss | 57 + .../default/src/field/_TextArea.scss | 8 + .../default/src/form/_FieldSet.scss | 105 + .../sencha-touch/default/src/form/_Panel.scss | 31 + .../sencha-touch/default/src/grid/_Grid.scss | 135 + .../default/src/picker/_Picker.scss | 79 + .../default/src/plugin/_ListPaging.scss | 18 + .../default/src/plugin/_PullRefresh.scss | 24 + .../default/src/slider/_Slider.scss | 77 + .../default/src/slider/_Toggle.scss | 27 + .../sencha-touch/default/src/tab/_Panel.scss | 207 + .../sencha-touch/default/var/_Button.scss | 57 + .../{_variables.scss => var/_Class.scss} | 37 +- .../sencha-touch/default/var/_Panel.scss | 15 + .../{widgets/_sheets.scss => var/_Sheet.scss} | 25 - .../sencha-touch/default/var/_Toolbar.scss | 21 + .../default/var/carousel/_Carousel.scss | 19 + .../default/var/dataview/_IndexBar.scss | 21 + .../default/var/dataview/_List.scss | 82 + .../default/var/field/_Field.scss | 63 + .../default/var/field/_Slider.scss | 15 + .../default/var/field/_Spinner.scss | 9 + .../default/var/field/_TextArea.scss | 9 + .../default/var/field/_Toggle.scss | 9 + .../default/var/form/_FieldSet.scss | 33 + .../sencha-touch/default/var/form/_Panel.scss | 39 + .../sencha-touch/default/var/grid/_Grid.scss | 11 + .../default/var/picker/_Picker.scss | 51 + .../sencha-touch/default/var/tab/_Panel.scss | 79 + .../default/widgets/_buttons.scss | 362 - .../default/widgets/_carousel.scss | 113 - .../sencha-touch/default/widgets/_charts.scss | 134 - .../sencha-touch/default/widgets/_draw.scss | 34 - .../default/widgets/_form-sliders-basic.scss | 102 - .../default/widgets/_form-sliders.scss | 149 - .../sencha-touch/default/widgets/_form.scss | 654 - .../default/widgets/_indexbar.scss | 76 - .../sencha-touch/default/widgets/_list.scss | 464 - .../default/widgets/_loading-spinner.scss | 121 - .../sencha-touch/default/widgets/_map.scss | 19 - .../sencha-touch/default/widgets/_msgbox.scss | 118 - .../sencha-touch/default/widgets/_panel.scss | 98 - .../sencha-touch/default/widgets/_picker.scss | 157 - .../sencha-touch/default/widgets/_tabs.scss | 312 - .../default/widgets/_toolbar-forms.scss | 182 - .../default/widgets/_toolbar.scss | 166 - .../sencha-touch/mountainview/_all.scss | 1 + .../mountainview/src/_Button.scss | 146 + .../sencha-touch/mountainview/src/_Class.scss | 24 + .../sencha-touch/mountainview/src/_Menu.scss | 17 + .../mountainview/src/_MessageBox.scss | 73 + .../sencha-touch/mountainview/src/_Panel.scss | 24 + .../mountainview/src/_SegmentedButton.scss | 19 + .../sencha-touch/mountainview/src/_Sheet.scss | 11 + .../sencha-touch/mountainview/src/_Toast.scss | 14 + .../mountainview/src/_Toolbar.scss | 25 + .../sencha-touch/mountainview/src/_all.scss | 25 + .../mountainview/src/dataview/_List.scss | 108 + .../mountainview/src/field/_Checkbox.scss | 69 + .../mountainview/src/field/_Field.scss | 194 + .../mountainview/src/field/_Radio.scss | 32 + .../mountainview/src/field/_Select.scss | 20 + .../mountainview/src/field/_Slider.scss | 10 + .../mountainview/src/field/_Spinner.scss | 28 + .../mountainview/src/field/_TextArea.scss | 4 + .../mountainview/src/form/_FieldSet.scss | 26 + .../mountainview/src/form/_Panel.scss | 25 + .../mountainview/src/grid/_Grid.scss | 9 + .../mountainview/src/picker/_Picker.scss | 43 + .../mountainview/src/slider/_Slider.scss | 54 + .../mountainview/src/slider/_Toggle.scss | 54 + .../mountainview/src/tab/_Panel.scss | 49 + .../mountainview/var/_Button.scss | 0 .../sencha-touch/mountainview/var/_Class.scss | 26 + .../mountainview/var/dataview/_List.scss | 75 + .../mountainview/var/field/_Field.scss | 15 + .../mountainview/var/field/_Slider.scss | 15 + .../mountainview/var/field/_Toggle.scss | 9 + .../mountainview/var/form/_FieldSet.scss | 9 + .../mountainview/var/form/_Panel.scss | 39 + .../mountainview/var/picker/_Picker.scss | 33 + .../stylesheets/sencha-touch/tizen/_all.scss | 6 + .../sencha-touch/tizen/base/src/_Button.scss | 107 + .../sencha-touch/tizen/base/src/_Class.scss | 21 + .../sencha-touch/tizen/base/src/_Icons.scss | 29 + .../sencha-touch/tizen/base/src/_Mask.scss | 52 + .../sencha-touch/tizen/base/src/_Menu.scss | 15 + .../tizen/base/src/_MessageBox.scss | 39 + .../sencha-touch/tizen/base/src/_Panel.scss | 58 + .../tizen/base/src/_SegmentedButton.scss | 17 + .../sencha-touch/tizen/base/src/_Toast.scss | 12 + .../sencha-touch/tizen/base/src/_Toolbar.scss | 41 + .../sencha-touch/tizen/base/src/_all.scss | 30 + .../tizen/base/src/carousel/_Indicator.scss | 3 + .../tizen/base/src/dataview/_List.scss | 53 + .../tizen/base/src/field/_Checkbox.scss | 26 + .../tizen/base/src/field/_Field.scss | 66 + .../tizen/base/src/field/_Radio.scss | 32 + .../tizen/base/src/field/_Spinner.scss | 15 + .../tizen/base/src/field/_TextArea.scss | 4 + .../tizen/base/src/form/_FieldSet.scss | 7 + .../tizen/base/src/form/_Panel.scss | 48 + .../tizen/base/src/picker/_Picker.scss | 44 + .../tizen/base/src/slider/_Slider.scss | 56 + .../tizen/base/src/slider/_Toggle.scss | 46 + .../tizen/base/src/tab/_Panel.scss | 73 + .../sencha-touch/tizen/base/var/_Button.scss | 1 + .../sencha-touch/tizen/base/var/_Class.scss | 3 + .../sencha-touch/tizen/base/var/_Mask.scss | 3 + .../sencha-touch/tizen/base/var/_Palette.scss | 13 + .../sencha-touch/tizen/base/var/_Panel.scss | 2 + .../sencha-touch/tizen/base/var/_all.scss | 13 + .../tizen/base/var/dataview/_List.scss | 2 + .../tizen/base/var/field/_Radio.scss | 3 + .../tizen/base/var/slider/_Slider.scss | 3 + .../tizen/base/var/slider/_Toggle.scss | 2 + .../tizen/variations/dark/src/_Button.scss | 43 + .../tizen/variations/dark/src/_Class.scss | 39 + .../tizen/variations/dark/src/_Icons.scss | 29 + .../tizen/variations/dark/src/_Mask.scss | 14 + .../tizen/variations/dark/src/_Menu.scss | 21 + .../variations/dark/src/_MessageBox.scss | 16 + .../tizen/variations/dark/src/_Panel.scss | 33 + .../variations/dark/src/_SegmentedButton.scss | 16 + .../tizen/variations/dark/src/_Toast.scss | 8 + .../tizen/variations/dark/src/_Toolbar.scss | 34 + .../tizen/variations/dark/src/_all.scss | 31 + .../dark/src/carousel/_Indicator.scss | 5 + .../variations/dark/src/dataview/_List.scss | 48 + .../variations/dark/src/field/_Checkbox.scss | 10 + .../variations/dark/src/field/_Field.scss | 64 + .../variations/dark/src/field/_Radio.scss | 16 + .../variations/dark/src/field/_Spinner.scss | 23 + .../variations/dark/src/form/_FieldSet.scss | 11 + .../variations/dark/src/form/_Panel.scss | 18 + .../tizen/variations/dark/src/grid/_Grid.scss | 5 + .../variations/dark/src/picker/_Picker.scss | 30 + .../variations/dark/src/slider/_Slider.scss | 25 + .../variations/dark/src/slider/_Toggle.scss | 25 + .../tizen/variations/dark/src/tab/_Panel.scss | 23 + .../tizen/variations/dark/var/_Button.scss | 14 + .../tizen/variations/dark/var/_Class.scss | 7 + .../tizen/variations/dark/var/_Mask.scss | 3 + .../tizen/variations/dark/var/_Menu.scss | 5 + .../variations/dark/var/_MessageBox.scss | 5 + .../tizen/variations/dark/var/_Palette.scss | 21 + .../tizen/variations/dark/var/_Panel.scss | 3 + .../variations/dark/var/_SegmentedButton.scss | 2 + .../tizen/variations/dark/var/_Toolbar.scss | 13 + .../tizen/variations/dark/var/_all.scss | 31 + .../dark/var/carousel/_Indicator.scss | 1 + .../variations/dark/var/dataview/_List.scss | 24 + .../variations/dark/var/field/_Checkbox.scss | 3 + .../variations/dark/var/field/_Field.scss | 14 + .../variations/dark/var/field/_Radio.scss | 5 + .../variations/dark/var/field/_Spinner.scss | 5 + .../variations/dark/var/form/_FieldSet.scss | 3 + .../variations/dark/var/form/_Panel.scss | 4 + .../tizen/variations/dark/var/grid/_Grid.scss | 3 + .../variations/dark/var/picker/_Picker.scss | 9 + .../variations/dark/var/slider/_Slider.scss | 3 + .../variations/dark/var/slider/_Toggle.scss | 8 + .../tizen/variations/dark/var/tab/_Panel.scss | 4 + .../tizen/variations/light/src/_Button.scss | 49 + .../tizen/variations/light/src/_Class.scss | 39 + .../tizen/variations/light/src/_Icons.scss | 29 + .../tizen/variations/light/src/_Mask.scss | 14 + .../tizen/variations/light/src/_Menu.scss | 21 + .../variations/light/src/_MessageBox.scss | 16 + .../tizen/variations/light/src/_Panel.scss | 33 + .../light/src/_SegmentedButton.scss | 16 + .../tizen/variations/light/src/_Toast.scss | 8 + .../tizen/variations/light/src/_Toolbar.scss | 34 + .../tizen/variations/light/src/_all.scss | 31 + .../light/src/carousel/_Indicator.scss | 5 + .../variations/light/src/dataview/_List.scss | 48 + .../variations/light/src/field/_Checkbox.scss | 10 + .../variations/light/src/field/_Field.scss | 64 + .../variations/light/src/field/_Radio.scss | 16 + .../variations/light/src/field/_Spinner.scss | 23 + .../variations/light/src/form/_FieldSet.scss | 11 + .../variations/light/src/form/_Panel.scss | 18 + .../variations/light/src/grid/_Grid.scss | 5 + .../variations/light/src/picker/_Picker.scss | 30 + .../variations/light/src/slider/_Slider.scss | 25 + .../variations/light/src/slider/_Toggle.scss | 25 + .../variations/light/src/tab/_Panel.scss | 19 + .../tizen/variations/light/var/_Button.scss | 16 + .../tizen/variations/light/var/_Class.scss | 7 + .../tizen/variations/light/var/_Mask.scss | 3 + .../tizen/variations/light/var/_Menu.scss | 5 + .../variations/light/var/_MessageBox.scss | 5 + .../tizen/variations/light/var/_Palette.scss | 40 + .../tizen/variations/light/var/_Panel.scss | 3 + .../light/var/_SegmentedButton.scss | 2 + .../tizen/variations/light/var/_Toolbar.scss | 13 + .../tizen/variations/light/var/_all.scss | 31 + .../light/var/carousel/_Indicator.scss | 1 + .../variations/light/var/dataview/_List.scss | 24 + .../variations/light/var/field/_Checkbox.scss | 3 + .../variations/light/var/field/_Field.scss | 14 + .../variations/light/var/field/_Radio.scss | 5 + .../variations/light/var/field/_Spinner.scss | 7 + .../variations/light/var/form/_FieldSet.scss | 3 + .../variations/light/var/form/_Panel.scss | 4 + .../variations/light/var/grid/_Grid.scss | 3 + .../variations/light/var/picker/_Picker.scss | 9 + .../variations/light/var/slider/_Slider.scss | 3 + .../variations/light/var/slider/_Toggle.scss | 8 + .../variations/light/var/tab/_Panel.scss | 4 + .../sencha-touch/windows/_all.scss | 1 + .../sencha-touch/windows/mixins/_Class.scss | 105 + .../sencha-touch/windows/src/_Button.scss | 227 + .../sencha-touch/windows/src/_Class.scss | 51 + .../sencha-touch/windows/src/_Menu.scss | 13 + .../sencha-touch/windows/src/_MessageBox.scss | 93 + .../sencha-touch/windows/src/_Panel.scss | 268 + .../windows/src/_SegmentedButton.scss | 11 + .../sencha-touch/windows/src/_Sheet.scss | 24 + .../sencha-touch/windows/src/_Toast.scss | 20 + .../sencha-touch/windows/src/_Toolbar.scss | 35 + .../sencha-touch/windows/src/_all.scss | 24 + .../windows/src/carousel/_Carousel.scss | 19 + .../windows/src/dataview/_List.scss | 80 + .../windows/src/field/_Checkbox.scss | 55 + .../windows/src/field/_Field.scss | 71 + .../windows/src/field/_Radio.scss | 20 + .../windows/src/field/_Spinner.scss | 63 + .../windows/src/field/_TextArea.scss | 8 + .../windows/src/form/_FieldSet.scss | 25 + .../sencha-touch/windows/src/form/_Panel.scss | 55 + .../sencha-touch/windows/src/grid/_Grid.scss | 96 + .../windows/src/picker/_Picker.scss | 95 + .../windows/src/plugin/_PullRefresh.scss | 24 + .../windows/src/slider/_Slider.scss | 77 + .../windows/src/slider/_Toggle.scss | 60 + .../sencha-touch/windows/src/tab/_Panel.scss | 247 + .../sencha-touch/windows/var/_Button.scss | 9 + .../sencha-touch/windows/var/_Class.scss | 223 + .../sencha-touch/windows/var/_Panel.scss | 15 + .../sencha-touch/windows/var/_Sheet.scss | 21 + .../sencha-touch/windows/var/_Toolbar.scss | 9 + .../windows/var/carousel/_Carousel.scss | 19 + .../windows/var/picker/_Picker.scss | 9 + .../stylesheets/recipes/_color.scss | 9 +- .../recipes/background/_gradients.scss | 12 + vendor/touch/sencha-touch-all-debug.js | 51777 ++++++---------- vendor/touch/sencha-touch-all.js | 19 +- vendor/touch/sencha-touch-debug.js | 3754 +- vendor/touch/sencha-touch.js | 19 +- vendor/touch/src/AbstractPlugin.js | 5 + vendor/touch/src/ActionSheet.js | 8 +- vendor/touch/src/Ajax.js | 5 +- vendor/touch/src/Anim.js | 2 + vendor/touch/src/AnimationQueue.js | 456 + vendor/touch/src/Audio.js | 19 +- vendor/touch/src/BingMap.js | 86 + vendor/touch/src/Button.js | 138 +- vendor/touch/src/Component.js | 294 +- vendor/touch/src/ComponentManager.js | 9 +- vendor/touch/src/ComponentQuery.js | 65 +- vendor/touch/src/Container.js | 158 +- vendor/touch/src/DateExtras.js | 31 +- vendor/touch/src/Img.js | 10 +- vendor/touch/src/LoadMask.js | 7 + vendor/touch/src/Map.js | 176 +- vendor/touch/src/Mask.js | 17 + vendor/touch/src/Menu.js | 166 + vendor/touch/src/MessageBox.js | 78 +- vendor/touch/src/Panel.js | 31 +- vendor/touch/src/ProgressIndicator.js | 232 + vendor/touch/src/Promise.js | 267 + vendor/touch/src/SegmentedButton.js | 3 +- vendor/touch/src/Sheet.js | 25 +- vendor/touch/src/TaskQueue.js | 55 +- vendor/touch/src/Template.js | 69 +- vendor/touch/src/TitleBar.js | 115 +- vendor/touch/src/Toast.js | 264 + vendor/touch/src/Toolbar.js | 10 +- vendor/touch/src/Video.js | 17 +- vendor/touch/src/XTemplateCompiler.js | 2 +- vendor/touch/src/app/Action.js | 4 + vendor/touch/src/app/Application.js | 99 +- vendor/touch/src/app/Controller.js | 18 +- vendor/touch/src/app/History.js | 20 +- vendor/touch/src/app/Profile.js | 8 +- vendor/touch/src/app/Route.js | 15 +- vendor/touch/src/app/Router.js | 1 + vendor/touch/src/bb/CrossCut.js | 112 - vendor/touch/src/behavior/Draggable.js | 2 +- vendor/touch/src/behavior/Scrollable.js | 26 +- vendor/touch/src/carousel/Carousel.js | 16 +- vendor/touch/src/chart/AbstractChart.js | 1160 - vendor/touch/src/chart/CartesianChart.js | 272 - vendor/touch/src/chart/Legend.js | 120 - vendor/touch/src/chart/MarkerHolder.js | 85 - vendor/touch/src/chart/Markers.js | 97 - vendor/touch/src/chart/PolarChart.js | 161 - vendor/touch/src/chart/SpaceFillingChart.js | 52 - vendor/touch/src/chart/axis/Axis.js | 894 - vendor/touch/src/chart/axis/Category.js | 69 - vendor/touch/src/chart/axis/Numeric.js | 73 - vendor/touch/src/chart/axis/Time.js | 140 - .../src/chart/axis/layout/CombineDuplicate.js | 20 - .../touch/src/chart/axis/layout/Continuous.js | 40 - .../touch/src/chart/axis/layout/Discrete.js | 108 - vendor/touch/src/chart/axis/layout/Layout.js | 136 - .../touch/src/chart/axis/segmenter/Names.js | 36 - .../touch/src/chart/axis/segmenter/Numeric.js | 45 - .../src/chart/axis/segmenter/Segmenter.js | 84 - vendor/touch/src/chart/axis/segmenter/Time.js | 107 - vendor/touch/src/chart/axis/sprite/Axis.js | 700 - vendor/touch/src/chart/grid/CircularGrid.js | 19 - vendor/touch/src/chart/grid/HorizontalGrid.js | 46 - vendor/touch/src/chart/grid/RadialGrid.js | 44 - vendor/touch/src/chart/grid/VerticalGrid.js | 43 - .../touch/src/chart/interactions/Abstract.js | 230 - .../touch/src/chart/interactions/CrossZoom.js | 372 - .../src/chart/interactions/ItemHighlight.js | 37 - .../touch/src/chart/interactions/ItemInfo.js | 106 - .../touch/src/chart/interactions/PanZoom.js | 476 - vendor/touch/src/chart/interactions/Rotate.js | 101 - .../src/chart/interactions/RotatePie3D.js | 22 - vendor/touch/src/chart/label/Callout.js | 107 - vendor/touch/src/chart/label/Label.js | 91 - vendor/touch/src/chart/series/Area.js | 61 - vendor/touch/src/chart/series/Bar.js | 104 - vendor/touch/src/chart/series/CandleStick.js | 100 - vendor/touch/src/chart/series/Cartesian.js | 144 - vendor/touch/src/chart/series/Gauge.js | 257 - .../touch/src/chart/series/ItemPublisher.js | 335 - vendor/touch/src/chart/series/Line.js | 139 - vendor/touch/src/chart/series/Pie.js | 315 - vendor/touch/src/chart/series/Pie3D.js | 247 - vendor/touch/src/chart/series/Polar.js | 103 - vendor/touch/src/chart/series/Radar.js | 168 - vendor/touch/src/chart/series/Scatter.js | 97 - vendor/touch/src/chart/series/Series.js | 843 - .../src/chart/series/StackedCartesian.js | 156 - .../src/chart/series/sprite/AbstractRadial.js | 17 - .../src/chart/series/sprite/Aggregative.js | 86 - vendor/touch/src/chart/series/sprite/Area.js | 116 - vendor/touch/src/chart/series/sprite/Bar.js | 166 - .../src/chart/series/sprite/CandleStick.js | 166 - .../src/chart/series/sprite/Cartesian.js | 272 - vendor/touch/src/chart/series/sprite/Line.js | 182 - .../src/chart/series/sprite/Pie3DPart.js | 377 - .../touch/src/chart/series/sprite/PieSlice.js | 112 - vendor/touch/src/chart/series/sprite/Polar.js | 137 - vendor/touch/src/chart/series/sprite/Radar.js | 43 - .../touch/src/chart/series/sprite/Scatter.js | 43 - .../chart/series/sprite/StackedCartesian.js | 71 - vendor/touch/src/core/Ext-more.js | 109 +- vendor/touch/src/core/Ext.js | 19 +- vendor/touch/src/core/class/Base.js | 55 +- vendor/touch/src/core/class/Class.js | 173 +- vendor/touch/src/core/class/ClassManager.js | 70 +- vendor/touch/src/core/class/Loader.js | 30 +- vendor/touch/src/core/lang/Array.js | 61 +- vendor/touch/src/core/lang/Date.js | 2 +- vendor/touch/src/core/lang/Function.js | 75 +- vendor/touch/src/core/lang/JSON.js | 20 +- vendor/touch/src/core/lang/Number.js | 4 +- vendor/touch/src/core/lang/Object.js | 45 +- vendor/touch/src/core/lang/String.js | 4 +- vendor/touch/src/core/version/Version.js | 8 +- vendor/touch/src/data/ArrayStore.js | 7 +- vendor/touch/src/data/Connection.js | 176 +- vendor/touch/src/data/DirectStore.js | 9 +- vendor/touch/src/data/Field.js | 7 +- vendor/touch/src/data/JsonP.js | 13 +- vendor/touch/src/data/Model.js | 160 +- vendor/touch/src/data/ModelManager.js | 26 +- vendor/touch/src/data/NodeInterface.js | 8 +- vendor/touch/src/data/NodeStore.js | 10 +- vendor/touch/src/data/Operation.js | 2 + vendor/touch/src/data/Request.js | 3 +- vendor/touch/src/data/Store.js | 270 +- vendor/touch/src/data/StoreManager.js | 9 +- vendor/touch/src/data/TreeStore.js | 12 +- vendor/touch/src/data/Types.js | 10 +- vendor/touch/src/data/Validations.js | 12 +- .../touch/src/data/association/Association.js | 4 +- .../touch/src/data/association/BelongsTo.js | 16 +- vendor/touch/src/data/association/HasMany.js | 15 +- vendor/touch/src/data/association/HasOne.js | 32 +- vendor/touch/src/data/identifier/Uuid.js | 26 +- vendor/touch/src/data/plugin/Buffered.js | 325 + vendor/touch/src/data/proxy/Ajax.js | 35 +- vendor/touch/src/data/proxy/Direct.js | 58 +- vendor/touch/src/data/proxy/JsonP.js | 8 +- vendor/touch/src/data/proxy/LocalStorage.js | 7 +- vendor/touch/src/data/proxy/Memory.js | 9 +- vendor/touch/src/data/proxy/Proxy.js | 10 +- vendor/touch/src/data/proxy/Rest.js | 7 +- vendor/touch/src/data/proxy/SQL.js | 259 +- vendor/touch/src/data/proxy/Server.js | 16 +- vendor/touch/src/data/proxy/SessionStorage.js | 7 +- vendor/touch/src/data/proxy/WebStorage.js | 87 +- vendor/touch/src/data/reader/Json.js | 4 +- vendor/touch/src/data/reader/Reader.js | 4 +- vendor/touch/src/data/reader/Xml.js | 30 +- vendor/touch/src/data/writer/Writer.js | 6 +- vendor/touch/src/data/writer/Xml.js | 26 +- vendor/touch/src/dataview/DataView.js | 140 +- vendor/touch/src/dataview/IndexBar.js | 86 +- vendor/touch/src/dataview/List.js | 2063 +- vendor/touch/src/dataview/ListItemHeader.js | 3 +- vendor/touch/src/dataview/NestedList.js | 149 +- .../touch/src/dataview/component/DataItem.js | 96 +- .../touch/src/dataview/component/ListItem.js | 115 +- .../src/dataview/component/SimpleListItem.js | 89 + vendor/touch/src/device/Accelerometer.js | 59 + vendor/touch/src/device/Browser.js | 26 + vendor/touch/src/device/Camera.js | 22 +- vendor/touch/src/device/Capture.js | 26 + vendor/touch/src/device/Compass.js | 53 + vendor/touch/src/device/Connection.js | 25 +- vendor/touch/src/device/Contacts.js | 24 +- vendor/touch/src/device/Device.js | 51 +- vendor/touch/src/device/FileSystem.js | 33 + vendor/touch/src/device/Geolocation.js | 21 +- vendor/touch/src/device/Globalization.js | 31 + vendor/touch/src/device/Media.js | 23 + vendor/touch/src/device/Notification.js | 24 +- vendor/touch/src/device/Orientation.js | 27 +- vendor/touch/src/device/Purchases.js | 13 +- vendor/touch/src/device/Push.js | 32 +- vendor/touch/src/device/SQLite.js | 115 + vendor/touch/src/device/Splashscreen.js | 32 + vendor/touch/src/device/Storage.js | 19 + vendor/touch/src/device/Tunnel.js | 18 + .../src/device/accelerometer/Abstract.js | 39 + .../touch/src/device/accelerometer/Cordova.js | 29 + .../src/device/accelerometer/Simulator.js | 6 + vendor/touch/src/device/browser/Abstract.js | 39 + vendor/touch/src/device/browser/Cordova.js | 24 + vendor/touch/src/device/browser/Simulator.js | 10 + vendor/touch/src/device/browser/Window.js | 37 + vendor/touch/src/device/camera/Abstract.js | 20 +- .../device/camera/{PhoneGap.js => Cordova.js} | 27 +- vendor/touch/src/device/capture/Abstract.js | 70 + vendor/touch/src/device/capture/Cordova.js | 34 + .../touch/src/device/communicator/Android.js | 2 +- .../touch/src/device/communicator/Default.js | 18 +- vendor/touch/src/device/compass/Abstract.js | 49 + vendor/touch/src/device/compass/Cordova.js | 40 + vendor/touch/src/device/compass/Simulator.js | 6 + .../touch/src/device/connection/Abstract.js | 11 + vendor/touch/src/device/connection/Cordova.js | 35 + .../touch/src/device/connection/PhoneGap.js | 22 - vendor/touch/src/device/connection/Sencha.js | 3 +- vendor/touch/src/device/contacts/Abstract.js | 6 +- vendor/touch/src/device/contacts/Cordova.js | 33 + vendor/touch/src/device/device/Abstract.js | 4 +- vendor/touch/src/device/device/Cordova.js | 145 + vendor/touch/src/device/device/PhoneGap.js | 21 - vendor/touch/src/device/device/Sencha.js | 37 +- .../touch/src/device/filesystem/Abstract.js | 24 + vendor/touch/src/device/filesystem/Chrome.js | 79 + vendor/touch/src/device/filesystem/Cordova.js | 217 + vendor/touch/src/device/filesystem/HTML5.js | 924 + vendor/touch/src/device/filesystem/Sencha.js | 696 + .../touch/src/device/filesystem/Simulator.js | 6 + .../touch/src/device/geolocation/Cordova.js | 29 + .../src/device/globalization/Abstract.js | 189 + .../touch/src/device/globalization/Cordova.js | 57 + .../src/device/globalization/Simulator.js | 6 + vendor/touch/src/device/media/Abstract.js | 22 + vendor/touch/src/device/media/Cordova.js | 83 + .../touch/src/device/notification/Abstract.js | 57 +- .../touch/src/device/notification/Cordova.js | 90 + .../touch/src/device/notification/PhoneGap.js | 41 - .../src/device/notification/Simulator.js | 66 +- .../touch/src/device/orientation/Abstract.js | 2 +- vendor/touch/src/device/orientation/HTML5.js | 4 +- vendor/touch/src/device/orientation/Sencha.js | 6 +- vendor/touch/src/device/purchases/Sencha.js | 148 +- vendor/touch/src/device/push/Abstract.js | 2 +- vendor/touch/src/device/push/Cordova.js | 46 + .../touch/src/device/splashscreen/Abstract.js | 7 + .../touch/src/device/splashscreen/Cordova.js | 14 + .../src/device/splashscreen/Simulator.js | 6 + vendor/touch/src/device/sqlite/Sencha.js | 507 + vendor/touch/src/device/storage/Abstract.js | 32 + vendor/touch/src/device/storage/Cordova.js | 8 + .../src/device/storage/HTML5/Database.js | 52 + .../touch/src/device/storage/HTML5/HTML5.js | 40 + .../src/device/storage/HTML5/SQLStatement.js | 18 + vendor/touch/src/device/storage/Simulator.js | 6 + vendor/touch/src/device/tunnel/Abstract.js | 262 + vendor/touch/src/device/tunnel/Connection.js | 11 + vendor/touch/src/device/tunnel/Sencha.js | 92 + vendor/touch/src/device/tunnel/Simulator.js | 17 + vendor/touch/src/direct/Provider.js | 5 + vendor/touch/src/direct/RemotingProvider.js | 136 +- vendor/touch/src/dom/CompositeElement.js | 18 - vendor/touch/src/dom/CompositeElementLite.js | 30 +- vendor/touch/src/dom/Element.alignment.js | 2 +- vendor/touch/src/dom/Element.insertion.js | 5 +- vendor/touch/src/dom/Element.js | 145 +- vendor/touch/src/dom/Element.position.js | 30 +- vendor/touch/src/dom/Element.style.js | 115 +- vendor/touch/src/dom/Element.traversal.js | 16 +- vendor/touch/src/dom/Helper.js | 12 +- vendor/touch/src/dom/Query.js | 53 +- vendor/touch/src/draw/Animator.js | 258 - vendor/touch/src/draw/Color.js | 428 - vendor/touch/src/draw/Component.js | 278 - vendor/touch/src/draw/Draw.js | 122 - vendor/touch/src/draw/Group.js | 249 - vendor/touch/src/draw/LimitedCache.js | 80 - vendor/touch/src/draw/Matrix.js | 810 - vendor/touch/src/draw/Path.js | 1177 - vendor/touch/src/draw/SegmentTree.js | 402 - vendor/touch/src/draw/Solver.js | 175 - vendor/touch/src/draw/Surface.js | 672 - vendor/touch/src/draw/TextMeasurer.js | 138 - vendor/touch/src/draw/TimingFunctions.js | 139 - vendor/touch/src/draw/engine/Canvas.js | 859 - vendor/touch/src/draw/engine/Svg.js | 176 - vendor/touch/src/draw/engine/SvgContext.js | 577 - vendor/touch/src/draw/gradient/Gradient.js | 88 - vendor/touch/src/draw/gradient/Linear.js | 84 - vendor/touch/src/draw/gradient/Radial.js | 144 - vendor/touch/src/draw/modifier/Animation.js | 434 - vendor/touch/src/draw/modifier/Highlight.js | 182 - vendor/touch/src/draw/modifier/Modifier.js | 89 - vendor/touch/src/draw/modifier/Target.js | 113 - .../touch/src/draw/sprite/AnimationParser.js | 180 - vendor/touch/src/draw/sprite/Arc.js | 67 - .../src/draw/sprite/AttributeDefinition.js | 407 - .../touch/src/draw/sprite/AttributeParser.js | 91 - vendor/touch/src/draw/sprite/Circle.js | 93 - vendor/touch/src/draw/sprite/Composite.js | 89 - vendor/touch/src/draw/sprite/Ellipse.js | 118 - vendor/touch/src/draw/sprite/EllipticalArc.js | 68 - vendor/touch/src/draw/sprite/Image.js | 74 - vendor/touch/src/draw/sprite/Instancing.js | 149 - vendor/touch/src/draw/sprite/Path.js | 88 - vendor/touch/src/draw/sprite/Rect.js | 101 - vendor/touch/src/draw/sprite/Sector.js | 94 - vendor/touch/src/draw/sprite/Sprite.js | 714 - vendor/touch/src/draw/sprite/Text.js | 321 - vendor/touch/src/env/Browser.js | 59 +- vendor/touch/src/env/Feature.js | 98 +- vendor/touch/src/env/OS.js | 50 +- vendor/touch/src/event/Dispatcher.js | 22 +- vendor/touch/src/event/Dom.js | 10 +- vendor/touch/src/event/Touch.js | 83 +- vendor/touch/src/event/publisher/Dom.js | 106 +- .../touch/src/event/publisher/TouchGesture.js | 547 +- vendor/touch/src/event/recognizer/Drag.js | 256 +- .../touch/src/event/recognizer/EdgeSwipe.js | 148 + vendor/touch/src/event/recognizer/Pinch.js | 2 +- vendor/touch/src/event/recognizer/Swipe.js | 37 +- vendor/touch/src/event/recognizer/Tap.js | 104 +- .../src/event/recognizer/VerticalSwipe.js | 8 +- vendor/touch/src/field/Checkbox.js | 52 +- vendor/touch/src/field/DatePicker.js | 15 +- vendor/touch/src/field/DatePickerNative.js | 40 + vendor/touch/src/field/Email.js | 4 +- vendor/touch/src/field/Field.js | 19 +- vendor/touch/src/field/File.js | 92 + vendor/touch/src/field/FileInput.js | 163 + vendor/touch/src/field/Hidden.js | 4 +- vendor/touch/src/field/Input.js | 186 +- vendor/touch/src/field/Number.js | 39 +- vendor/touch/src/field/Password.js | 138 +- vendor/touch/src/field/Radio.js | 7 +- vendor/touch/src/field/Search.js | 13 +- vendor/touch/src/field/Select.js | 199 +- vendor/touch/src/field/Slider.js | 21 +- vendor/touch/src/field/Spinner.js | 35 +- vendor/touch/src/field/Text.js | 41 +- vendor/touch/src/field/TextArea.js | 4 +- vendor/touch/src/field/Toggle.js | 65 +- vendor/touch/src/field/Url.js | 8 +- vendor/touch/src/form/FieldSet.js | 6 +- vendor/touch/src/form/Panel.js | 643 +- vendor/touch/src/fx/Animation.js | 17 +- vendor/touch/src/fx/animation/Abstract.js | 2 +- vendor/touch/src/fx/animation/Flip.js | 4 +- vendor/touch/src/fx/animation/Wipe.js | 4 +- vendor/touch/src/fx/layout/Card.js | 6 +- vendor/touch/src/fx/layout/card/Abstract.js | 8 + vendor/touch/src/fx/layout/card/Flip.js | 11 + vendor/touch/src/fx/layout/card/Scroll.js | 7 +- .../touch/src/fx/layout/card/ScrollCover.js | 4 +- .../touch/src/fx/layout/card/ScrollReveal.js | 2 +- vendor/touch/src/fx/layout/card/Style.js | 2 +- vendor/touch/src/fx/runner/Css.js | 47 +- vendor/touch/src/fx/runner/CssTransition.js | 42 +- vendor/touch/src/layout/Box.js | 56 + vendor/touch/src/layout/Card.js | 11 +- vendor/touch/src/layout/Default.js | 34 +- vendor/touch/src/layout/FlexBox.js | 47 +- vendor/touch/src/layout/HBox.js | 60 + vendor/touch/src/layout/VBox.js | 61 + vendor/touch/src/mixin/Bindable.js | 17 +- vendor/touch/src/mixin/Observable.js | 94 +- vendor/touch/src/mixin/Progressable.js | 109 + vendor/touch/src/mixin/Selectable.js | 21 +- vendor/touch/src/mixin/Sortable.js | 7 +- vendor/touch/src/navigation/Bar.js | 29 +- vendor/touch/src/navigation/View.js | 234 +- vendor/touch/src/picker/Date.js | 37 +- vendor/touch/src/picker/Picker.js | 67 +- vendor/touch/src/picker/Slot.js | 132 +- vendor/touch/src/plugin/ListPaging.js | 55 +- vendor/touch/src/plugin/PullRefresh.js | 465 +- vendor/touch/src/plugin/SortableList.js | 211 + vendor/touch/src/scroll/Indicator.js | 27 +- vendor/touch/src/scroll/Scroller.js | 136 +- vendor/touch/src/scroll/View.js | 12 +- vendor/touch/src/scroll/indicator/Abstract.js | 82 +- .../src/scroll/indicator/CssTransform.js | 100 +- vendor/touch/src/scroll/indicator/Default.js | 46 - vendor/touch/src/scroll/indicator/Rounded.js | 78 + .../src/scroll/indicator/ScrollPosition.js | 53 +- .../touch/src/scroll/indicator/Throttled.js | 69 - vendor/touch/src/slider/Slider.js | 24 +- vendor/touch/src/slider/Thumb.js | 75 + vendor/touch/src/slider/Toggle.js | 21 +- vendor/touch/src/tab/Bar.js | 13 +- vendor/touch/src/tab/Panel.js | 25 +- vendor/touch/src/tab/Tab.js | 33 +- .../touch/src/util/AbstractMixedCollection.js | 10 +- vendor/touch/src/util/Audio.js | 44 + vendor/touch/src/util/BufferedCollection.js | 45 + vendor/touch/src/util/Collection.js | 31 +- vendor/touch/src/util/DelayedTask.js | 30 +- vendor/touch/src/util/Draggable.js | 19 +- vendor/touch/src/util/Droppable.js | 4 +- vendor/touch/src/util/Filter.js | 2 +- vendor/touch/src/util/Format.js | 75 +- vendor/touch/src/util/GeoLocation.js | 8 +- vendor/touch/src/util/Grouper.js | 4 +- vendor/touch/src/util/InputBlocker.js | 26 + vendor/touch/src/util/JSON.js | 521 - vendor/touch/src/util/LineSegment.js | 24 +- vendor/touch/src/util/MixedCollection.js | 2 +- vendor/touch/src/util/PaintMonitor.js | 12 +- vendor/touch/src/util/Point.js | 18 +- vendor/touch/src/util/PositionMap.js | 2 + vendor/touch/src/util/Region.js | 7 +- vendor/touch/src/util/SizeMonitor.js | 12 +- vendor/touch/src/util/Sorter.js | 2 +- vendor/touch/src/util/TapRepeater.js | 1 - vendor/touch/src/util/Translatable.js | 33 +- vendor/touch/src/util/TranslatableGroup.js | 4 +- .../touch/src/util/paintmonitor/Abstract.js | 1 + .../src/util/paintmonitor/CssAnimation.js | 2 +- .../src/util/paintmonitor/OverflowChange.js | 2 +- vendor/touch/src/util/sizemonitor/Abstract.js | 17 +- vendor/touch/src/util/sizemonitor/Default.js | 35 + .../src/util/sizemonitor/OverflowChange.js | 31 +- .../touch/src/util/translatable/Abstract.js | 19 +- .../src/util/translatable/CssTransform.js | 7 +- .../src/util/translatable/ScrollPosition.js | 34 +- .../touch/src/ux/ActionOverFlowMenuButton.js | 96 + vendor/touch/src/ux/ApplicationMenu.js | 27 + vendor/touch/src/ux/ContextMenu.js | 21 + vendor/touch/src/ux/Faker.js | 63 - vendor/touch/src/ux/MenuButton.js | 89 + vendor/touch/src/ux/TabMenuButton.js | 88 + vendor/touch/src/ux/auth/Session.js | 28 - vendor/touch/src/ux/auth2/Auth.js | 10 - vendor/touch/src/ux/auth2/model/Session.js | 11 - vendor/touch/src/ux/device/Analytics.js | 26 + vendor/touch/src/ux/device/Twitter.js | 26 + .../touch/src/ux/device/analytics/Abstract.js | 51 + .../touch/src/ux/device/analytics/Cordova.js | 28 + .../touch/src/ux/device/twitter/Abstract.js | 86 + vendor/touch/src/ux/device/twitter/Cordova.js | 47 + vendor/touch/src/ux/parse/Helper.js | 23 + vendor/touch/src/ux/parse/Model.js | 282 + vendor/touch/src/ux/parse/Proxy.js | 294 + vendor/touch/src/ux/parse/Reader.js | 38 + vendor/touch/src/ux/parse/Store.js | 8 + .../touch/src/ux/parse/association/Pointer.js | 50 + .../src/ux/parse/association/Relation.js | 194 + .../viewport/{Android.js => AndroidStock.js} | 111 +- vendor/touch/src/viewport/Default.js | 938 +- vendor/touch/src/viewport/Ios.js | 83 +- vendor/touch/src/viewport/Viewport.js | 16 +- vendor/touch/src/viewport/WindowsPhone.js | 39 + vendor/touch/version.txt | 2 +- 2099 files changed, 119659 insertions(+), 176527 deletions(-) create mode 100644 apps/common/mobile/resources/fonts/ios7/ios7.eot create mode 100644 apps/common/mobile/resources/fonts/ios7/ios7.svg create mode 100644 apps/common/mobile/resources/fonts/ios7/ios7.ttf create mode 100644 apps/common/mobile/resources/fonts/ios7/ios7.woff create mode 100644 apps/common/mobile/resources/fonts/pictos/pictos-web.eot create mode 100644 apps/common/mobile/resources/fonts/pictos/pictos-web.svg create mode 100644 apps/common/mobile/resources/fonts/pictos/pictos-web.ttf create mode 100644 apps/common/mobile/resources/fonts/pictos/pictos-web.woff create mode 100644 apps/common/mobile/resources/fonts/tizen/TizenSansMedium.ttf create mode 100644 apps/common/mobile/resources/fonts/tizen/TizenSansRegular.ttf create mode 100644 apps/common/mobile/resources/fonts/tizen/tizen-icon.eot create mode 100644 apps/common/mobile/resources/fonts/tizen/tizen-icon.svg create mode 100644 apps/common/mobile/resources/fonts/tizen/tizen-icon.ttf create mode 100644 apps/common/mobile/resources/fonts/tizen/tizen-icon.woff create mode 100644 vendor/touch/SETUP.html create mode 100644 vendor/touch/SenchaLogo.png create mode 100644 vendor/touch/microloader/development.js create mode 100644 vendor/touch/microloader/production.js create mode 100644 vendor/touch/microloader/testing.js delete mode 100644 vendor/touch/resources/css-debug/android.css create mode 100644 vendor/touch/resources/css-debug/base.css create mode 100644 vendor/touch/resources/css-debug/bb10.css create mode 100644 vendor/touch/resources/css-debug/bb103.css delete mode 100644 vendor/touch/resources/css-debug/bb6.css create mode 100644 vendor/touch/resources/css-debug/cupertino-classic.css create mode 100644 vendor/touch/resources/css-debug/cupertino.css create mode 100644 vendor/touch/resources/css-debug/mountainview.css create mode 100644 vendor/touch/resources/css-debug/tizen.css create mode 100644 vendor/touch/resources/css-debug/wp.css delete mode 100644 vendor/touch/resources/css/android.css delete mode 100644 vendor/touch/resources/css/apple.css create mode 100644 vendor/touch/resources/css/base.css create mode 100644 vendor/touch/resources/css/bb10.css create mode 100644 vendor/touch/resources/css/bb103.css delete mode 100644 vendor/touch/resources/css/bb6.css create mode 100644 vendor/touch/resources/css/cupertino-classic.css create mode 100644 vendor/touch/resources/css/cupertino.css create mode 100644 vendor/touch/resources/css/mountainview.css create mode 100644 vendor/touch/resources/css/tizen.css create mode 100644 vendor/touch/resources/css/wp.css delete mode 100644 vendor/touch/resources/sass/android.scss delete mode 100644 vendor/touch/resources/sass/apple.scss create mode 100644 vendor/touch/resources/sass/base.scss create mode 100644 vendor/touch/resources/sass/bb10.scss create mode 100644 vendor/touch/resources/sass/bb103.scss delete mode 100644 vendor/touch/resources/sass/bb6.scss create mode 100644 vendor/touch/resources/sass/cupertino-classic.scss create mode 100644 vendor/touch/resources/sass/cupertino.scss create mode 100644 vendor/touch/resources/sass/mountainview.scss create mode 100644 vendor/touch/resources/sass/tizen.scss create mode 100644 vendor/touch/resources/sass/wp.scss create mode 100644 vendor/touch/resources/themes/fonts/ios7/ios7.eot create mode 100644 vendor/touch/resources/themes/fonts/ios7/ios7.svg create mode 100644 vendor/touch/resources/themes/fonts/ios7/ios7.ttf create mode 100644 vendor/touch/resources/themes/fonts/ios7/ios7.woff create mode 100644 vendor/touch/resources/themes/fonts/pictos/pictos-web.eot create mode 100644 vendor/touch/resources/themes/fonts/pictos/pictos-web.svg create mode 100644 vendor/touch/resources/themes/fonts/pictos/pictos-web.ttf create mode 100644 vendor/touch/resources/themes/fonts/pictos/pictos-web.woff create mode 100644 vendor/touch/resources/themes/fonts/tizen/TizenSansMedium.ttf create mode 100644 vendor/touch/resources/themes/fonts/tizen/TizenSansRegular.ttf create mode 100644 vendor/touch/resources/themes/fonts/tizen/tizen-icon.eot create mode 100644 vendor/touch/resources/themes/fonts/tizen/tizen-icon.svg create mode 100644 vendor/touch/resources/themes/fonts/tizen/tizen-icon.ttf create mode 100644 vendor/touch/resources/themes/fonts/tizen/tizen-icon.woff create mode 100644 vendor/touch/resources/themes/images/bb10/check.png create mode 100644 vendor/touch/resources/themes/images/bb10/clear_icon.png create mode 100644 vendor/touch/resources/themes/images/bb10/disclosure.png create mode 100644 vendor/touch/resources/themes/images/bb10/disclosure2.png create mode 100644 vendor/touch/resources/themes/images/bb10/dotgrid.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_add.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_add_entry.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_add_favorite.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_add_folder.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_add_to_contacts.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_advanced.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_advanced_restore.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_all.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_attach.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_bbm.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_browse.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_browser.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_buy.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_camera.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_cancel.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_cancel_selection.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_check_spelling.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_clear.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_clear_list.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_code_inspector.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_collapse.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_compose.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_connections.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_contacts.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_copy.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_copy_link.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_copy_link_image.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_copy_password.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_cut.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_decrease.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_delete.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_delete_prior.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_deselect.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_deselect_all.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_diagnostics.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_disable.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_doc.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_generic.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_music.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_pdf.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_picture.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_ppt.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_video.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_web.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_xls.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_doctype_zip.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_done.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_download.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_edit.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_edit_favorite.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_edit_list.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_edit_profile.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_email.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_enable.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_entry.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_expand.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_favorite.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_feedback.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_forward.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_forward_as_bbm.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_forward_as_email.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_forward_as_text.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_help.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_history.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_home.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_increase.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_info.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_location.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_lock.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_map.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_microphone.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_microphone_mute.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_move.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_nav_to.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_next.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_notes.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_notification.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_open.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_open_link.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_overflow_action.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_overflow_tab.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_paste.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_pause.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_phone.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_play.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_previous.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_properties.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_reload.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_rename.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_reply.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_reply_all.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_rotate.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_save.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_save_as.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_scan_barcode.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_search.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_select.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_select_all.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_select_more.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_select_text.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_select_text_all.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_set_as_default.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_settings.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_share.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_show_dialpad.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_show_vkb.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_sort.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_sort_filter.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_speaker.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_speaker_mute.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_stop.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_textmessage.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_to_bottom.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_to_top.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_view_details.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_view_grid.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_view_image.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_view_list.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_view_post.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_zoom_in.png create mode 100644 vendor/touch/resources/themes/images/bb10/icons/ic_zoom_out.png create mode 100644 vendor/touch/resources/themes/images/bb10/loading.gif create mode 100644 vendor/touch/resources/themes/images/bb10/pullarrow.png create mode 100644 vendor/touch/resources/themes/images/bb10/reveal_icon.png create mode 100644 vendor/touch/resources/themes/images/bb10/select_mask.png create mode 100644 vendor/touch/resources/themes/images/bb10/tab-active.png create mode 100644 vendor/touch/resources/themes/images/bb10/tab.png create mode 100644 vendor/touch/resources/themes/images/bb10/tip2_left.png create mode 100644 vendor/touch/resources/themes/images/bb10/tip2_right.png create mode 100644 vendor/touch/resources/themes/images/bb10/tip_bottom.png create mode 100644 vendor/touch/resources/themes/images/bb10/tip_left.png create mode 100644 vendor/touch/resources/themes/images/bb10/tip_right.png create mode 100644 vendor/touch/resources/themes/images/bb10/tip_top.png create mode 100644 vendor/touch/resources/themes/images/bb10/togglebg.png create mode 100644 vendor/touch/resources/themes/images/bb10/togglemask.png create mode 100644 vendor/touch/resources/themes/images/bb10/togglethumb.png create mode 100644 vendor/touch/resources/themes/images/bb10/togglethumbbg.png create mode 100644 vendor/touch/resources/themes/images/bb10/togglethumbmask.png create mode 100644 vendor/touch/resources/themes/images/bb10/trackmask_outer.png create mode 100644 vendor/touch/resources/themes/images/bb103/check.png create mode 100644 vendor/touch/resources/themes/images/bb103/clear_icon.png create mode 100644 vendor/touch/resources/themes/images/bb103/disclosure.png create mode 100644 vendor/touch/resources/themes/images/bb103/disclosure2.png create mode 100644 vendor/touch/resources/themes/images/bb103/dotgrid.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_add.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_add_bookmarks.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_add_folder.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_add_to_contacts.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_attach.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_bbm.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_browser.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_buy.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_camera.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_cancel.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_cancel_selection.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_check_spell.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_clear.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_clear_list.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_code_inspector.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_collapse.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_compose.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_contact.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_copy.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_copy_link.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_copy_link_image.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_copy_password.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_cut.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_decrease.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_delete.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_delete_prior.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_deselect.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_deselect_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_diagnostics.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_disable.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_doc.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_generic.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_music.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_pdf.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_picture.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_ppt.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_video.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_web.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_xls.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_doctype_zip.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_done.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_download.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_edit.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_edit_bookmarks.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_edit_list.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_edit_profile.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_email_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_enable.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_entry.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_expand.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_favorite.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_feedback.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_forward.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_help.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_history.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_home.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_increase.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_info.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_location.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_lock.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_map.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_microphone.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_microphone_mute.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_move.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_nav_to.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_next.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_notes.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_notification.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_open.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_open_link.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_overflow_action.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_overflow_tab.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_paste.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_pause.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_phone.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_play.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_previous.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_properties.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_reload.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_rename.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_reply.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_reply_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_resume.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_save.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_save_as.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_scan_barcode.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_search.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_select.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_select_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_select_more.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_select_text.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_set_as_default.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_settings.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_share.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_show_dialpad.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_show_vkb.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_sort.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_speaker_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_speaker_mute.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_stop.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_textmessage_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_to_bottom.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_to_top.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_view_details_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_view_grid.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_view_image.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_view_list.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_view_post.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_zoom_in.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons-dark/ic_zoom_out.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_add.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_add_bookmarks.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_add_folder.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_add_to_contacts.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_attach.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_bbm.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_browser.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_buy.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_camera.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_cancel.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_cancel_selection.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_check_spell.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_clear.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_clear_list.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_code_inspector.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_collapse.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_compose.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_contact.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_copy.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_copy_link.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_copy_link_image.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_copy_password.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_cut.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_decrease.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_delete.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_delete_prior.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_deselect.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_deselect_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_diagnostics.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_disable.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_doc.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_generic.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_music.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_pdf.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_picture.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_ppt.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_video.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_web.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_xls.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_doctype_zip.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_done.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_download.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_edit.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_edit_bookmarks.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_edit_list.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_edit_profile.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_email_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_enable.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_entry.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_expand.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_favorite.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_feedback.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_forward.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_help.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_history.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_home.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_increase.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_info.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_location.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_lock.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_map.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_microphone.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_microphone_mute.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_move.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_nav_to.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_next.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_notes.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_notification.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_open.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_open_link.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_overflow_action.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_overflow_tab.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_paste.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_pause.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_phone.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_play.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_previous.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_properties.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_reload.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_rename.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_reply.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_reply_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_resume.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_save.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_save_as.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_scan_barcode.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_search.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_select.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_select_all.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_select_more.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_select_text.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_set_as_default.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_settings.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_share.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_show_dialpad.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_show_vkb.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_sort.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_speaker_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_speaker_mute.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_stop.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_textmessage_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_to_bottom.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_to_top.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_view_details_dk.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_view_grid.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_view_image.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_view_list.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_view_post.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_zoom_in.png create mode 100644 vendor/touch/resources/themes/images/bb103/icons/ic_zoom_out.png create mode 100644 vendor/touch/resources/themes/images/bb103/loading.gif create mode 100644 vendor/touch/resources/themes/images/bb103/pullarrow.png create mode 100644 vendor/touch/resources/themes/images/bb103/reveal_icon.png create mode 100644 vendor/touch/resources/themes/images/bb103/select_mask.png create mode 100644 vendor/touch/resources/themes/images/bb103/tab-active.png create mode 100644 vendor/touch/resources/themes/images/bb103/tab.png create mode 100644 vendor/touch/resources/themes/images/bb103/tip2_left.png create mode 100644 vendor/touch/resources/themes/images/bb103/tip2_right.png create mode 100644 vendor/touch/resources/themes/images/bb103/tip_bottom.png create mode 100644 vendor/touch/resources/themes/images/bb103/tip_left.png create mode 100644 vendor/touch/resources/themes/images/bb103/tip_right.png create mode 100644 vendor/touch/resources/themes/images/bb103/tip_top.png create mode 100644 vendor/touch/resources/themes/images/bb103/togglebg.png create mode 100644 vendor/touch/resources/themes/images/bb103/togglemask.png create mode 100644 vendor/touch/resources/themes/images/bb103/togglethumb.png create mode 100644 vendor/touch/resources/themes/images/bb103/togglethumbbg.png create mode 100644 vendor/touch/resources/themes/images/bb103/togglethumbmask.png create mode 100644 vendor/touch/resources/themes/images/bb103/trackmask_outer.png create mode 100644 vendor/touch/resources/themes/images/cupertino-flat/clear_icon.png create mode 100644 vendor/touch/resources/themes/images/cupertino/clear_icon.png create mode 100644 vendor/touch/resources/themes/images/default/pictos/back.png create mode 100644 vendor/touch/resources/themes/images/default/pictos/more2.png create mode 100644 vendor/touch/resources/themes/images/default/pictos/pictos-web.eot create mode 100644 vendor/touch/resources/themes/images/default/pictos/pictos-web.svg create mode 100644 vendor/touch/resources/themes/images/default/pictos/pictos-web.ttf create mode 100644 vendor/touch/resources/themes/images/default/pictos/pictos-web.woff create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/check.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/clear_icon.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/disclosure.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/disclosure2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/dotgrid.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/loading.gif create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/action.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/add1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/add_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/address_book.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/arrow_down.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/arrow_left.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/arrow_right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/arrow_up.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/at.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/atom.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/attachment.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/attachment2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/attachment3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/attachment_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/back.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/backspace.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/battery_full.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/battery_low.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/battery_power.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/blank.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bolt.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bolt_side.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bookmark1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bookmark2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bookmark_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bookmarks.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/briefcase1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/briefcase2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/brightness1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/brightness2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/broadcast.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bug.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bulb.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bullseye1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/bullseye2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/calendar.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/calendar2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/calendar_add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/card1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/card2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chart1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chart2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chart3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/chat_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/check.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/check1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/check2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/check_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/check_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/check_dotted.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/circle2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/circle3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/circle4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/clash.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cloud.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cloud_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cloud_black_upload1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cloud_black_upload2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cloud_bolt.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cloud_download.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/code1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/code2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/code3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compass1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compass2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compass3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compose.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compose1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compose2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compose3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/compose_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/contract.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/cube.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/data.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/delete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/delete1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/delete_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/delete_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_black_landscape.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_compose1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_compose2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_delete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_down.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_drawer.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_list.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_new.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_send.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/doc_up.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/docs1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/docs2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/docs_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/docs_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/download.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/download1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/download2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/download_screen.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/eject.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/empty1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/empty2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/equalizer1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/equalizer2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/event_complete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/expand.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/favorites.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/favorites1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/favorites_circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/fforward.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/find.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/flag.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/flickr2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_black_open.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_delete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_delete2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_lock.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/folder_open2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/font.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/forbidden.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/forward_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/globe1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/globe2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/globe_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/headphones.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/heart.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/heart_circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/help.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/help_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/home.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/home2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/hot.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/inbox1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/inbox2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/inbox3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/infinite.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/infinite2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/info.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/info2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/info_plain.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/info_plain2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/json.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/lab.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/layout.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/link1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/link2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/link_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/list.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/locate.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/locate1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/locate2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/locate3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/locate4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/lock_closed.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/lock_open.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/look.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/loop.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/loop2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/loop_circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/magic.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mail.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mail1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mail2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mail3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mail4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mail5.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/maps.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mic.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/minus1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/minus2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/minus_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/minus_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/monitor1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/monitor2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/monitor3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/monitor4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/more.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/mouse.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/move.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/music1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/music2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/nodes1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/nodes2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/note1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/note2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/note3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/note_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/nuclear.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/organize.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/outbox.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/pause.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/phone1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/phone2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/phone_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/phone_ring1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/phone_ring2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photo1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photo2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photo3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photo_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photo_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photos1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photos2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/photos4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/piechart.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/play1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/play2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/play_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/play_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/podcast.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/power_on.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/power_socket.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/print.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/print2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/quote1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/quote2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/quote_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/quote_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/quote_black3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/refresh.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/refresh1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/refresh2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/refresh3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/refresh5.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/reply.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/replytoall.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/resize.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/resize_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/rewind.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/right2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/rss.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/rss2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/rss_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/rss_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/rss_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/screens.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/search.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/search1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/search2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/search_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/server.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/servers.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings10.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings11.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings5.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings6.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings7.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings8.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings9.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/settings_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/share.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/shield1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/shield2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/shop1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/shop2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/shuffle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_backforth.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_cross.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_leftright.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_leftright2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_split.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_switch.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sign_uturn.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/spaces1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/spaces2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/speedometer1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/speedometer2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/speedometer_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/speedometer_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/star.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/stop.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/stop1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/stop2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/sync.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tabbed_book.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tag.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tag_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tags.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/team.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/team1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/time.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/time_repeat.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/trash.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/trash2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/trash_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tree.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tv.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/tweak.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/twitter1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/twitter2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/up1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/up2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/up_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/upload2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_business.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_fave.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_list.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_list2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_remote1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_remove2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/user_send.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/video.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/video_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/video_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/volume.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/volume_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/volume_down.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/volume_mute.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/volume_up.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/warning_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/warning_dotted.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/wifi.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/wifi2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/wifi3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/wifi4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pictos/window.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/pullarrow.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/select_mask.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/tip2_left.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/tip2_right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/tip_bottom.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/tip_left.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/tip_right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/tip_top.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/togglebg.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/togglemask.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/togglethumb.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/togglethumbbg.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/togglethumbmask.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/dark/trackmask_outer.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/check.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/clear_icon.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/disclosure.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/disclosure2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/dotgrid.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/loading.gif create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/action.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/add1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/add_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/address_book.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/arrow_down.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/arrow_left.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/arrow_right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/arrow_up.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/at.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/atom.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/attachment.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/attachment2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/attachment3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/attachment_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/back.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/backspace.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/battery_full.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/battery_low.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/battery_power.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/blank.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bolt.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bolt_side.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bookmark1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bookmark2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bookmark_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bookmarks.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/briefcase1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/briefcase2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/brightness1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/brightness2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/broadcast.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bug.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bulb.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bullseye1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/bullseye2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/calendar.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/calendar2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/calendar_add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/card1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/card2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chart1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chart2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chart3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/chat_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/check.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/check1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/check2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/check_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/check_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/check_dotted.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/circle2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/circle3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/circle4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/clash.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cloud.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cloud_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cloud_black_upload1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cloud_black_upload2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cloud_bolt.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cloud_download.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/code1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/code2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/code3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compass1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compass2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compass3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compose.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compose1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compose2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compose3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/compose_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/contract.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/cube.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/data.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/delete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/delete1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/delete_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/delete_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_black_landscape.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_compose1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_compose2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_delete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_down.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_drawer.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_list.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_new.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_send.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/doc_up.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/docs1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/docs2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/docs_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/docs_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/download.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/download1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/download2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/download_screen.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/eject.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/empty1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/empty2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/equalizer1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/equalizer2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/event_complete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/expand.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/favorites.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/favorites1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/favorites_circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/fforward.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/find.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/flag.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/flickr2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_black_open.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_delete.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_delete2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_lock.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/folder_open2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/font.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/forbidden.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/forward_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/globe1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/globe2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/globe_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/headphones.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/heart.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/heart_circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/help.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/help_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/home.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/home2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/hot.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/inbox1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/inbox2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/inbox3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/infinite.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/infinite2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/info.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/info2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/info_plain.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/info_plain2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/json.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/lab.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/layout.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/link1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/link2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/link_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/list.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/locate.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/locate1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/locate2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/locate3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/locate4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/lock_closed.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/lock_open.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/look.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/loop.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/loop2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/loop_circle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/magic.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mail.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mail1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mail2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mail3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mail4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mail5.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/maps.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mic.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/minus1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/minus2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/minus_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/minus_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/monitor1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/monitor2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/monitor3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/monitor4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/more.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/mouse.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/move.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/music1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/music2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/nodes1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/nodes2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/note1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/note2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/note3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/note_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/nuclear.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/organize.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/outbox.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/pause.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/phone1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/phone2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/phone_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/phone_ring1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/phone_ring2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photo1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photo2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photo3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photo_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photo_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photos1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photos2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/photos4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/piechart.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/play1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/play2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/play_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/play_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/podcast.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/power_on.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/power_socket.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/print.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/print2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/quote1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/quote2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/quote_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/quote_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/quote_black3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/refresh.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/refresh1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/refresh2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/refresh3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/refresh5.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/reply.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/replytoall.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/resize.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/resize_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/rewind.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/right2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/rss.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/rss2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/rss_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/rss_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/rss_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/screens.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/search.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/search1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/search2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/search_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/server.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/servers.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings10.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings11.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings5.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings6.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings7.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings8.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings9.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/settings_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/share.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/shield1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/shield2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/shop1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/shop2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/shuffle.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_backforth.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_cross.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_leftright.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_leftright2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_split.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_switch.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sign_uturn.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/spaces1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/spaces2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/speedometer1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/speedometer2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/speedometer_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/speedometer_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/star.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/stop.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/stop1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/stop2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/sync.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tabbed_book.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tag.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tag_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tags.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/team.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/team1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/time.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/time_repeat.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/trash.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/trash2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/trash_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tree.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tv.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/tweak.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/twitter1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/twitter2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/up1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/up2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/up_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/upload2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_add.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_business.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_fave.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_list.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_list2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_remote1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_remove2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/user_send.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/video.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/video_black1.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/video_black2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/volume.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/volume_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/volume_down.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/volume_mute.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/volume_up.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/warning_black.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/warning_dotted.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/wifi.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/wifi2.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/wifi3.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/wifi4.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pictos/window.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/pullarrow.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/select_mask.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/tip2_left.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/tip2_right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/tip_bottom.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/tip_left.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/tip_right.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/tip_top.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/togglebg.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/togglemask.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/togglethumb.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/togglethumbbg.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/togglethumbmask.png create mode 100644 vendor/touch/resources/themes/images/windows-phone/light/trackmask_outer.png create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_base.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_bb10.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_bb103.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_cupertino-classic.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_cupertino.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_default.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_mountainview.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_tizen.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/_windows.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Class.scss rename vendor/touch/resources/themes/stylesheets/sencha-touch/{default/widgets/_img.scss => base/src/_Img.scss} (90%) create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Map.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Mask.scss rename vendor/touch/resources/themes/stylesheets/sencha-touch/{default/widgets/_media.scss => base/src/_Media.scss} (82%) create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_ProgressIndicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/chart/_AbstractChart.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_DataView.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_IndexBar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Abstract.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Box.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Card.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Dock.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Fit.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/layout/_Float.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_ListPaging.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/scroller/_Scroller.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/table/_Table.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_PaintMonitor.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_SizeMonitor.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/util/_Translatable.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/base/src/viewport/_Default.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/mixins/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/field/_Select.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb10/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/mixins/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Select.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/layout/_Dock.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/bb103/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_Select.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/field/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino-classic/var/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/dataview/_IndexBar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_Select.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/field/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/cupertino/var/picker/_Picker.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/_core.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/_global.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/_mixins.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/_widgets.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/mixins/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/dataview/_IndexBar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Search.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Select.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/plugin/_ListPaging.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/_Button.scss rename vendor/touch/resources/themes/stylesheets/sencha-touch/default/{_variables.scss => var/_Class.scss} (82%) create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/_Panel.scss rename vendor/touch/resources/themes/stylesheets/sencha-touch/default/{widgets/_sheets.scss => var/_Sheet.scss} (53%) create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/dataview/_IndexBar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/field/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/var/tab/_Panel.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_carousel.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_charts.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_draw.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders-basic.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_picker.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_tabs.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss delete mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_Select.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/field/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/field/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/mountainview/var/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Icons.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Palette.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/base/var/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Icons.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Palette.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/dark/var/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Icons.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Mask.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Palette.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/carousel/_Indicator.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/tizen/variations/light/var/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/mixins/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Menu.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_MessageBox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_SegmentedButton.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Toast.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/_all.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/dataview/_List.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/field/_Checkbox.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/field/_Field.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/field/_Radio.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/field/_Spinner.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/field/_TextArea.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/form/_FieldSet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/form/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/grid/_Grid.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/picker/_Picker.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/plugin/_PullRefresh.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/slider/_Slider.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/slider/_Toggle.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/src/tab/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/_Button.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/_Class.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/_Panel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/_Sheet.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/_Toolbar.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/carousel/_Carousel.scss create mode 100644 vendor/touch/resources/themes/stylesheets/sencha-touch/windows/var/picker/_Picker.scss create mode 100644 vendor/touch/src/AbstractPlugin.js create mode 100644 vendor/touch/src/AnimationQueue.js create mode 100644 vendor/touch/src/BingMap.js create mode 100644 vendor/touch/src/Menu.js create mode 100644 vendor/touch/src/ProgressIndicator.js create mode 100644 vendor/touch/src/Promise.js create mode 100644 vendor/touch/src/Toast.js delete mode 100644 vendor/touch/src/bb/CrossCut.js delete mode 100644 vendor/touch/src/chart/AbstractChart.js delete mode 100644 vendor/touch/src/chart/CartesianChart.js delete mode 100644 vendor/touch/src/chart/Legend.js delete mode 100644 vendor/touch/src/chart/MarkerHolder.js delete mode 100644 vendor/touch/src/chart/Markers.js delete mode 100644 vendor/touch/src/chart/PolarChart.js delete mode 100644 vendor/touch/src/chart/SpaceFillingChart.js delete mode 100644 vendor/touch/src/chart/axis/Axis.js delete mode 100644 vendor/touch/src/chart/axis/Category.js delete mode 100644 vendor/touch/src/chart/axis/Numeric.js delete mode 100644 vendor/touch/src/chart/axis/Time.js delete mode 100644 vendor/touch/src/chart/axis/layout/CombineDuplicate.js delete mode 100644 vendor/touch/src/chart/axis/layout/Continuous.js delete mode 100644 vendor/touch/src/chart/axis/layout/Discrete.js delete mode 100644 vendor/touch/src/chart/axis/layout/Layout.js delete mode 100644 vendor/touch/src/chart/axis/segmenter/Names.js delete mode 100644 vendor/touch/src/chart/axis/segmenter/Numeric.js delete mode 100644 vendor/touch/src/chart/axis/segmenter/Segmenter.js delete mode 100644 vendor/touch/src/chart/axis/segmenter/Time.js delete mode 100644 vendor/touch/src/chart/axis/sprite/Axis.js delete mode 100644 vendor/touch/src/chart/grid/CircularGrid.js delete mode 100644 vendor/touch/src/chart/grid/HorizontalGrid.js delete mode 100644 vendor/touch/src/chart/grid/RadialGrid.js delete mode 100644 vendor/touch/src/chart/grid/VerticalGrid.js delete mode 100644 vendor/touch/src/chart/interactions/Abstract.js delete mode 100644 vendor/touch/src/chart/interactions/CrossZoom.js delete mode 100644 vendor/touch/src/chart/interactions/ItemHighlight.js delete mode 100644 vendor/touch/src/chart/interactions/ItemInfo.js delete mode 100644 vendor/touch/src/chart/interactions/PanZoom.js delete mode 100644 vendor/touch/src/chart/interactions/Rotate.js delete mode 100644 vendor/touch/src/chart/interactions/RotatePie3D.js delete mode 100644 vendor/touch/src/chart/label/Callout.js delete mode 100644 vendor/touch/src/chart/label/Label.js delete mode 100644 vendor/touch/src/chart/series/Area.js delete mode 100644 vendor/touch/src/chart/series/Bar.js delete mode 100644 vendor/touch/src/chart/series/CandleStick.js delete mode 100644 vendor/touch/src/chart/series/Cartesian.js delete mode 100644 vendor/touch/src/chart/series/Gauge.js delete mode 100644 vendor/touch/src/chart/series/ItemPublisher.js delete mode 100644 vendor/touch/src/chart/series/Line.js delete mode 100644 vendor/touch/src/chart/series/Pie.js delete mode 100644 vendor/touch/src/chart/series/Pie3D.js delete mode 100644 vendor/touch/src/chart/series/Polar.js delete mode 100644 vendor/touch/src/chart/series/Radar.js delete mode 100644 vendor/touch/src/chart/series/Scatter.js delete mode 100644 vendor/touch/src/chart/series/Series.js delete mode 100644 vendor/touch/src/chart/series/StackedCartesian.js delete mode 100644 vendor/touch/src/chart/series/sprite/AbstractRadial.js delete mode 100644 vendor/touch/src/chart/series/sprite/Aggregative.js delete mode 100644 vendor/touch/src/chart/series/sprite/Area.js delete mode 100644 vendor/touch/src/chart/series/sprite/Bar.js delete mode 100644 vendor/touch/src/chart/series/sprite/CandleStick.js delete mode 100644 vendor/touch/src/chart/series/sprite/Cartesian.js delete mode 100644 vendor/touch/src/chart/series/sprite/Line.js delete mode 100644 vendor/touch/src/chart/series/sprite/Pie3DPart.js delete mode 100644 vendor/touch/src/chart/series/sprite/PieSlice.js delete mode 100644 vendor/touch/src/chart/series/sprite/Polar.js delete mode 100644 vendor/touch/src/chart/series/sprite/Radar.js delete mode 100644 vendor/touch/src/chart/series/sprite/Scatter.js delete mode 100644 vendor/touch/src/chart/series/sprite/StackedCartesian.js create mode 100644 vendor/touch/src/data/plugin/Buffered.js create mode 100644 vendor/touch/src/dataview/component/SimpleListItem.js create mode 100644 vendor/touch/src/device/Accelerometer.js create mode 100644 vendor/touch/src/device/Browser.js create mode 100644 vendor/touch/src/device/Capture.js create mode 100644 vendor/touch/src/device/Compass.js create mode 100644 vendor/touch/src/device/FileSystem.js create mode 100644 vendor/touch/src/device/Globalization.js create mode 100644 vendor/touch/src/device/Media.js create mode 100644 vendor/touch/src/device/SQLite.js create mode 100644 vendor/touch/src/device/Splashscreen.js create mode 100644 vendor/touch/src/device/Storage.js create mode 100644 vendor/touch/src/device/Tunnel.js create mode 100644 vendor/touch/src/device/accelerometer/Abstract.js create mode 100644 vendor/touch/src/device/accelerometer/Cordova.js create mode 100644 vendor/touch/src/device/accelerometer/Simulator.js create mode 100644 vendor/touch/src/device/browser/Abstract.js create mode 100644 vendor/touch/src/device/browser/Cordova.js create mode 100644 vendor/touch/src/device/browser/Simulator.js create mode 100644 vendor/touch/src/device/browser/Window.js rename vendor/touch/src/device/camera/{PhoneGap.js => Cordova.js} (78%) create mode 100644 vendor/touch/src/device/capture/Abstract.js create mode 100644 vendor/touch/src/device/capture/Cordova.js create mode 100644 vendor/touch/src/device/compass/Abstract.js create mode 100644 vendor/touch/src/device/compass/Cordova.js create mode 100644 vendor/touch/src/device/compass/Simulator.js create mode 100644 vendor/touch/src/device/connection/Cordova.js delete mode 100644 vendor/touch/src/device/connection/PhoneGap.js create mode 100644 vendor/touch/src/device/contacts/Cordova.js create mode 100644 vendor/touch/src/device/device/Cordova.js delete mode 100644 vendor/touch/src/device/device/PhoneGap.js create mode 100644 vendor/touch/src/device/filesystem/Abstract.js create mode 100644 vendor/touch/src/device/filesystem/Chrome.js create mode 100644 vendor/touch/src/device/filesystem/Cordova.js create mode 100644 vendor/touch/src/device/filesystem/HTML5.js create mode 100644 vendor/touch/src/device/filesystem/Sencha.js create mode 100644 vendor/touch/src/device/filesystem/Simulator.js create mode 100644 vendor/touch/src/device/geolocation/Cordova.js create mode 100644 vendor/touch/src/device/globalization/Abstract.js create mode 100644 vendor/touch/src/device/globalization/Cordova.js create mode 100644 vendor/touch/src/device/globalization/Simulator.js create mode 100644 vendor/touch/src/device/media/Abstract.js create mode 100644 vendor/touch/src/device/media/Cordova.js create mode 100644 vendor/touch/src/device/notification/Cordova.js delete mode 100644 vendor/touch/src/device/notification/PhoneGap.js create mode 100644 vendor/touch/src/device/push/Cordova.js create mode 100644 vendor/touch/src/device/splashscreen/Abstract.js create mode 100644 vendor/touch/src/device/splashscreen/Cordova.js create mode 100644 vendor/touch/src/device/splashscreen/Simulator.js create mode 100644 vendor/touch/src/device/sqlite/Sencha.js create mode 100644 vendor/touch/src/device/storage/Abstract.js create mode 100644 vendor/touch/src/device/storage/Cordova.js create mode 100644 vendor/touch/src/device/storage/HTML5/Database.js create mode 100644 vendor/touch/src/device/storage/HTML5/HTML5.js create mode 100644 vendor/touch/src/device/storage/HTML5/SQLStatement.js create mode 100644 vendor/touch/src/device/storage/Simulator.js create mode 100644 vendor/touch/src/device/tunnel/Abstract.js create mode 100644 vendor/touch/src/device/tunnel/Connection.js create mode 100644 vendor/touch/src/device/tunnel/Sencha.js create mode 100644 vendor/touch/src/device/tunnel/Simulator.js delete mode 100644 vendor/touch/src/draw/Animator.js delete mode 100644 vendor/touch/src/draw/Color.js delete mode 100644 vendor/touch/src/draw/Component.js delete mode 100644 vendor/touch/src/draw/Draw.js delete mode 100644 vendor/touch/src/draw/Group.js delete mode 100644 vendor/touch/src/draw/LimitedCache.js delete mode 100644 vendor/touch/src/draw/Matrix.js delete mode 100644 vendor/touch/src/draw/Path.js delete mode 100644 vendor/touch/src/draw/SegmentTree.js delete mode 100644 vendor/touch/src/draw/Solver.js delete mode 100644 vendor/touch/src/draw/Surface.js delete mode 100644 vendor/touch/src/draw/TextMeasurer.js delete mode 100644 vendor/touch/src/draw/TimingFunctions.js delete mode 100644 vendor/touch/src/draw/engine/Canvas.js delete mode 100644 vendor/touch/src/draw/engine/Svg.js delete mode 100644 vendor/touch/src/draw/engine/SvgContext.js delete mode 100644 vendor/touch/src/draw/gradient/Gradient.js delete mode 100644 vendor/touch/src/draw/gradient/Linear.js delete mode 100644 vendor/touch/src/draw/gradient/Radial.js delete mode 100644 vendor/touch/src/draw/modifier/Animation.js delete mode 100644 vendor/touch/src/draw/modifier/Highlight.js delete mode 100644 vendor/touch/src/draw/modifier/Modifier.js delete mode 100644 vendor/touch/src/draw/modifier/Target.js delete mode 100644 vendor/touch/src/draw/sprite/AnimationParser.js delete mode 100644 vendor/touch/src/draw/sprite/Arc.js delete mode 100644 vendor/touch/src/draw/sprite/AttributeDefinition.js delete mode 100644 vendor/touch/src/draw/sprite/AttributeParser.js delete mode 100644 vendor/touch/src/draw/sprite/Circle.js delete mode 100644 vendor/touch/src/draw/sprite/Composite.js delete mode 100644 vendor/touch/src/draw/sprite/Ellipse.js delete mode 100644 vendor/touch/src/draw/sprite/EllipticalArc.js delete mode 100644 vendor/touch/src/draw/sprite/Image.js delete mode 100644 vendor/touch/src/draw/sprite/Instancing.js delete mode 100644 vendor/touch/src/draw/sprite/Path.js delete mode 100644 vendor/touch/src/draw/sprite/Rect.js delete mode 100644 vendor/touch/src/draw/sprite/Sector.js delete mode 100644 vendor/touch/src/draw/sprite/Sprite.js delete mode 100644 vendor/touch/src/draw/sprite/Text.js create mode 100644 vendor/touch/src/event/recognizer/EdgeSwipe.js create mode 100644 vendor/touch/src/field/DatePickerNative.js create mode 100644 vendor/touch/src/field/File.js create mode 100644 vendor/touch/src/field/FileInput.js create mode 100644 vendor/touch/src/mixin/Progressable.js create mode 100644 vendor/touch/src/plugin/SortableList.js delete mode 100644 vendor/touch/src/scroll/indicator/Default.js create mode 100644 vendor/touch/src/scroll/indicator/Rounded.js delete mode 100644 vendor/touch/src/scroll/indicator/Throttled.js create mode 100644 vendor/touch/src/util/Audio.js create mode 100644 vendor/touch/src/util/BufferedCollection.js create mode 100644 vendor/touch/src/util/InputBlocker.js delete mode 100644 vendor/touch/src/util/JSON.js create mode 100644 vendor/touch/src/util/sizemonitor/Default.js create mode 100644 vendor/touch/src/ux/ActionOverFlowMenuButton.js create mode 100644 vendor/touch/src/ux/ApplicationMenu.js create mode 100644 vendor/touch/src/ux/ContextMenu.js delete mode 100644 vendor/touch/src/ux/Faker.js create mode 100644 vendor/touch/src/ux/MenuButton.js create mode 100644 vendor/touch/src/ux/TabMenuButton.js delete mode 100644 vendor/touch/src/ux/auth/Session.js delete mode 100644 vendor/touch/src/ux/auth2/Auth.js delete mode 100644 vendor/touch/src/ux/auth2/model/Session.js create mode 100644 vendor/touch/src/ux/device/Analytics.js create mode 100644 vendor/touch/src/ux/device/Twitter.js create mode 100644 vendor/touch/src/ux/device/analytics/Abstract.js create mode 100644 vendor/touch/src/ux/device/analytics/Cordova.js create mode 100644 vendor/touch/src/ux/device/twitter/Abstract.js create mode 100644 vendor/touch/src/ux/device/twitter/Cordova.js create mode 100644 vendor/touch/src/ux/parse/Helper.js create mode 100644 vendor/touch/src/ux/parse/Model.js create mode 100644 vendor/touch/src/ux/parse/Proxy.js create mode 100644 vendor/touch/src/ux/parse/Reader.js create mode 100644 vendor/touch/src/ux/parse/Store.js create mode 100644 vendor/touch/src/ux/parse/association/Pointer.js create mode 100644 vendor/touch/src/ux/parse/association/Relation.js rename vendor/touch/src/viewport/{Android.js => AndroidStock.js} (67%) create mode 100644 vendor/touch/src/viewport/WindowsPhone.js diff --git a/.gitignore b/.gitignore index a42c9820e..e02e885ff 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ apps/presentationeditor/embed/resources/less/node_modules apps/spreadsheeteditor/embed/resources/less/node_modules apps/documenteditor/mobile/resources/sass/.sass-cache apps/spreadsheeteditor/mobile/resources/sass/.sass-cache +apps/presentationeditor/mobile/resources/sass/.sass-cache # test documents diff --git a/apps/common/mobile/lib/component/SettingsList.js b/apps/common/mobile/lib/component/SettingsList.js index 6560131bd..8b1eea396 100644 --- a/apps/common/mobile/lib/component/SettingsList.js +++ b/apps/common/mobile/lib/component/SettingsList.js @@ -63,39 +63,5 @@ Ext.define('Common.component.SettingsList', { } } ) - }, - - // - // Workaround Sencha Touch bug - // See https://sencha.jira.com/browse/TOUCH-3718 - // - - findGroupHeaderIndices: function() { - var me = this, - store = me.getStore(), - storeLn = store.getCount(), - groups = store.getGroups(), - groupLn = groups.length, - headerIndices = me.headerIndices = {}, - footerIndices = me.footerIndices = {}, - i, previousIndex, firstGroupedRecord, storeIndex; - - - me.groups = groups; - - for (i = 0; i < groupLn; i++) { - firstGroupedRecord = groups[i].children[0]; - storeIndex = store.indexOf(firstGroupedRecord); - headerIndices[storeIndex] = true; - - previousIndex = storeIndex - 1; - if (previousIndex >= 0) { - footerIndices[previousIndex] = true; - } - } - - footerIndices[storeLn - 1] = true; - - return headerIndices; } }); \ No newline at end of file diff --git a/apps/common/mobile/resources/fonts/ios7/ios7.eot b/apps/common/mobile/resources/fonts/ios7/ios7.eot new file mode 100644 index 0000000000000000000000000000000000000000..6306b67346da07c17f7158935c4216974e78fcc6 GIT binary patch literal 1588 zcmds1L2DC16#h2JrfI8b3er|6x>cbbY)oRCni8af-BO4&)Ka|JkZ#gIk_~AB_11$3 zf`^{GD0o&2@nG>Ms94lv!HNMzL=+39-t79#>^3Hq{sD(f=6m0~dGp@9w{O@Btg3(l z7sPNubxS~IRS_tWlnW5Bd7+CHfjf+Hb)WmY`jJB#CJLM;irnyH1_rXIB99cxWO^`1 zri>-(3LOn$1QC+D2Tzj}4jkp3ZX|Vm_G)J8eH>6LWcw$tOz5}(MxoA9)~2tWk4$fE zo#dhGl;_fgR7s8QY*K#7Ig?E-l`M;vpeDHQ%jR!pzWw@<1l;E+&o3IOh2J07UJ!3_ zMi)tV0@fFvJx2M=Vxh9EcA-Z3DdnELnNHynPVjs`Wq%>HT*4IExqp$eR!kL)>CZdc z+`miicFA0-JbZNZ3GWy7qB1tdS1lVIH@f1x=(O|jW&`=h;W?Mm;)+o(l;r2cwD)Xp&N9Kk(t3x|R> zb_E-|h|fCMjni0mu!sDbgH?25!@*wiUq$vk?PUD4W@8s|pM%}d8I#R>$Uktf$_Dbx z!Cvy42U|`qZ5B+Ez2`vVnK81}e2N`Nmu;sa*D_m^0Syt^f;5Z~w>BZ03nPXhIV1Ec z%&r67ELL>0oHevaFrt8*idXJ5(-nP)fO7Q9nu2ljPg>>ENbB((|Oq0f2&<4 zr0I`e2jA7jFT(@1ty;|Kp^&H#vizF(;S-5h?-P`i-ORc|?S0!audnWyVWH66kNyA| C!Ns`% literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/ios7/ios7.svg b/apps/common/mobile/resources/fonts/ios7/ios7.svg new file mode 100644 index 000000000..be9446f2f --- /dev/null +++ b/apps/common/mobile/resources/fonts/ios7/ios7.svg @@ -0,0 +1,16 @@ + + + + +This is a custom SVG font generated by IcoMoon. + + + + + + + + + + + \ No newline at end of file diff --git a/apps/common/mobile/resources/fonts/ios7/ios7.ttf b/apps/common/mobile/resources/fonts/ios7/ios7.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6aaa050a68896f503a5f293610475d5245391f5d GIT binary patch literal 1424 zcmds1O=}ZT6g@A=B&pRl1!*b-ovKh5HYU-grUa>ArxaRRYANpQkWSJ-k_q{My6Zv& z!G$X~3a-^cTv+@GDi(EFu;PFsB8q`hcXm8)GW`hRAMnAOch0%@-Fx5HKma&`6?ieD zX>(KAiT7zhsZouLUm4SI9)9vUa&`LZxy1D5<_SPtBcIO{^|F%O+8}?)KAY34W!q*X zD3i1YbA=n(Z@+%b0N%6Y3rmK+`1|AP3*t@oG~%HyY$m$$JZC zM#m)_=llqHS5aRsV*(wtUnEycdeNBvyw#-r4z*ilvs!!jXzB^`%Xmr1wXxSL#-Z!o z>1}j+C;)F3lFI&QTOJ6DJcyRrnIkOQLR1PnQkIbpHpNl=+?$p~ItmAmx^99|??ORP zOo}YEad+ItG28@WD%_`C-_S1NIFlV)#3=fktV-6v+SHZ33S=UuJ#G!;4HyoV@nny< zHBFMq>LTzV#xc0J!jnz#oMdAbiR@3Imaii+nSU=KxDZ)xdy{c}&L+0&|0nC>9h5uB zRlB!^`_Uu%J-i&k+Hn>w(6E1s58@rq9N~fCf#LA?^x9gw*>kz^JjKI=VO!!pPm}iH zaG*nk*WV^>>On`?F|0+-4 z*FmL=(OTF;+~;C1G_I+o`=~!~v4UPabFrWL2J*4<&8*}MH4%-eBdVL1 zD4rTj4JKl7IgYgQRi=EuBIspid+8jq6vYwq8--8qm0AHELmtA{Vc s2PIH1<+WH$-VdsLO?>!7a@YH$OT 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 DI$5tl literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/pictos/pictos-web.svg b/apps/common/mobile/resources/fonts/pictos/pictos-web.svg new file mode 100644 index 000000000..2d1683147 --- /dev/null +++ b/apps/common/mobile/resources/fonts/pictos/pictos-web.svg @@ -0,0 +1,114 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Designer : Drew Wilson +Foundry : Drew Wilson +Foundry URL : httppictosdrewwilsoncom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/common/mobile/resources/fonts/pictos/pictos-web.ttf b/apps/common/mobile/resources/fonts/pictos/pictos-web.ttf new file mode 100644 index 0000000000000000000000000000000000000000..3ad12d5e9303d9c4e84bf7c404a161650c9e47a2 GIT binary patch literal 18276 zcmd^nd3YSfwQpBdFSGAGtz|T$nbAzkk}O%X+L9%Cm1TLsHh2T?w(x?DS1@2=%wkpp zcGzr|uqMC-0^G}Dj3FTelR!eqy;%r>BrM4#EFt$Mn0t9v>-|oT1Ws<=AMg9#e@{|( zS67`nb?Tf`r%s)!mc%4U@=ALoALO`9^cS2`fcNdFhE`cqDA z%Uv3|Xt5-*D!i{)y=mo^*Use|@qQkz{LILF^%24+T6YszwHLTmTX{A`0HO{z!v zE1OoHw?#TCzmNBi@m_!S%1r~E%bll6(qxY$iFI2xZ{M+Gw`aK|_3l9VC%CA0(y^bl z9-`+Du7BRJpI^vcyTpe#>In$MJCj!9qTX`4M2hW~6iMbs`PF#eS9!9xrJVEy-cSBP zkH7laa{jjM(gdkq8sdK%QbAWidIF_3CHyA-2-5ZT8`YvKRwSPRF9O50H6t3Q8kCt<@R`e{y;Dkj_6UNs=B5&Ru@my zCsXN$OxA21)zsWFy0vXgdoEunmdaztb##vJ>h75^anfXH!L+{V{WE6HntjTgx${mv zZT^CVix!`L#*(GWmaka(cMbl(dtLQ^gNlJe9Q^AXdR=Vf&q{7dm#QTx6IIj6RJP1Y zIYZ=1g={*dMxy0#IxJRZ3Vnk&^yM?G)UdW;zL7{6(L`c=%|$h9yB9C+=F#r%!N==c z5{Z`jYgxg90+U`8hCUWqem}G(CrROMxvZyDUCZa9dN86kvsAVi%oMuCKgcc=n748A zw%L<9t)UD)^xgEP)VU+4V6Z1kavB9KcoaN zJJeR+q=>8C1C+rYUr3f?5tqvYjG;XN?$)dZyTVbIX6?08yMTQ)TEX+=yh_^UUlj5@ zolk`3Xp&ztq`Wj1{7ajiOiP#5Tr{GlvW14>XE>@yG-31A6yU4PjRZ@UOZl8ACygZg zd}H9kCqwJlcgBtyHFgwh?r3c6X#7hxU!+xA%RON}_a(|wOH=7oTMQWz|tE_kbn zqG|?6BLy_GU9616-@Io{Ep3++$`GJYDw_~JQJrA88Bx&<^)N9w{LC~o6?eUi(ZIC4 zX+-n69!dx!7nhAFS^=t7Zl+sVv70H~%!vAUwj@^1nCNzU^&54so2wodcYC6gb}z`b z$RUs4?+MAxsp-7h?f1F&RM*^f_SPd^Q;qbT}RlTG9vOB|v1c|pOPS@i^}16q~C=`a!w#)587;Hrqn?QUuGL|Y&NnB3sd&-ttTde|9><@L0lE~bn5 zVxIlEbN+nGS6$shGtcOuf9Biy5y>ajN?GbhFd57j zq0}5hT$rVzZ7%hQp@orb<|(y~@$9U@BQq{sD9ej>-B@3rjn$gT2#7&S23sW?ibx|}QJQBDS+l(8$3jX*}x>|s!7 zXr*Zs^Li2&_@uEqcKTmiJGU-dKd^LLS37^*efZ)_4ts>ES4~{1$d0B_qno(Km8BC5 zU9kqMl|Yl*YqGKWcJqbWDYX+<41Tn{IX1bLKlj-q>lSYB%8wbpb?LfC21l8f96o%B z+3F0aOC|;*9F{|lh9)dk{nv&QK9>nROy!?B!^@Y?sGSnqmBr7!wUcAEJ~a+)5nG{8 zPMYn(`T(p`Hc)~&%VPSoB|@_q`|-DrAOH5FVC}(J*t#+ti-p;F;TS*ixpm*?pR*;O zTYV;FnvvRC;1!VePsIi7O5hD)bVy-h8%+hJ`pR5T9GMh~g&Q)Z;>=QsO~q|yk?o>K ziCtOBWa*uXvK5GI2B^um8+uG^;72j;LQ)hKfhD!=HTe$t$hLo_vzMv1|SM!S~q4tF9_d9=va2iC14_{af+M=h*0r?tQEH>rI;m zS6q2%`Qn#e+8iodpFxjnhu#*;_#P=j<1Uk6J_bIS&AeU)oCNZav^Lfa z7Xf{SOKk?asxoALv@2qSCq79J{-*cKp=u@7uk5 z&2{Bxckku{*N+=x#=3fsT|<6#Z0H>RWB4d3w44VU>xZ?jizT?9cQI;Gk3@4AFM0l0 z-4CsIUwP&FfV2G$UB9C}q@B9socngfKZ;-f!&k1m{uOr0wA>wfX2P|`x`KEI#j$Rv*>#B9EvG_RZ`?}~gY;I^L;joH(2 z)a5$WRqMJE7u$~8sVax-_Q^E^I<3J zREDt(!(MhW_1jFfzF_>wU@u)2`Z^`fj{^_Z7#TqE z2`>DVDCsgeBb{~DxR@HEKnoCBEj&K(*{J%Vm>0cy-`RNAUGU`(kcC<@h|YYZtyA zWdBQXDT)IgM;sjU4gEW0y97RALK+VqX+EyOoHny!9>z1=!*DO>i-raw&1^UYiwg)< zgBOr1m&)A?w@NW-mX;J(hC7?BKVU4==W?RbVXyVIm{Q9ECAghWRqrD{>b@Z?n1le5_ria5-qEi`#$mn=S0t-wv+%&2P!JjhA}G9w?WF znGmYXbWMkP=mOeQHeh!4^qlx#LYY2z-KW2?RMwDP%J#N5B;(Fj7Y}Lymsj(}9d6Cz zl$~z)qaKICn0t}K>G8#bKK}g3L^HTN)Da2>G0#MT?9{4kM>^$kN7RK5=8{#JbC)~f z^#mNU!zBWtNKG^>2V}RWCJ^xXqTwL=OSXI;dxw7qvcuRzZ}o^!+glmO5b0z=EZv6v zwkYFEE`7DCdgks+m&i@y$2T>PAJ4yY*%@b9({si9*woUJORd+&H&;r)$Jo$$Vg<%< z9jwDNU^dh&tmd#`i^Cfz4ck((qD)P-u~t?#R5E%neq?9?0%sOFAi;CRQ%#vH%Q}0r z0}cDL+11&zviloEeXlF9-&yNi?Q-o8u*b6-vIo*~{Z!{ynfg?!kjV@_A8Yh6(}%nD zD<5m_t(TF#F|#@gJOkOOkB<}^D-0ab*~mG-l_SPO`fnsIrI17nwo5F4J+3g@v#$3@K@J` z7I0|3+6m2WEtqpULdxW23wzpk)@BJ5_P7Cxyq-^$>OoDMVUmRHODCJbVbEY(KPaj_ zDMQ+#b?nM1TxAww15;Oy&Z<+|vdP4G)7O5Tb%jpNPg%*>s@~DFqJePRlE4KI zlRN27*g2Gm7i4%g;zA}ra@_jXXP>dtf8eS25b()>$oL1DG_K>)6tR+rv1&?7&FDcc z&J#@c$+n=1-6DLFs$+7n{WEs)?!Bw#>bfI##?mXkN`Aj%?%a-XbLS=s*=!-h!)=o% zR~ZgxV)poUB#kO3lAYF38)jU`+*bjVL5Pw|#i6VDq4VD>fWjgpf_N~E3 zA7ZPl_a5d)PrSx2e`qkw|LI{1c2$B`*EqBd^C9s%CpL9ELJ^}f0^{a~>!+tQ{ASZ;4(eqB zk(n!E7R#40=ccp>3JNM^r?VK`Ihe#&hL=Jbd8t;W8M$a#FGceaGiyZAE=u7`s%al< zqmjg@oosPDD;13nUMl9aXfahRQB%<}rUvu~BP&`eM-YL)M42t-U@anfv~AjCW%Jo` z9$KG5c@FV~oSvgPQH0vkdM>JA-GW|~F};*q;l^sw9tM5Q8R;ldnNHoO4Pikj&N7?TBCbU4{07agc{)JW-C zx`*W<(=>iD*!-NPAG`uK&h3l=h{Ifm1pL(DH%5rdU@!z?k5goU&!Cs0aiAUC9A-h+DkYEcKj5~1z!?{3Xx|APwb}-IM(3*THZ%^6z60{Y((9tf4(K}$=H82 zIa6>~9Na}Pf^!uxUesZlja_Dd$GStvK&JwMDx)QO10d=EgJ7C0GzNEhDx(Hx%z?XtClSkqlWUC2++eB?qy;@Z$`oV=L`Xr2P(dxar?IvxW?sG$b(nCV zhq7Ss@TlM131aa;i*B?-9AVt4f)KRj0D(fd&?I=Ea0hB3L)P4~8?-oqoGOAj7>pnl z$blK{f|mmAp!eu2+9!?>LL%GETpk7W(XInTFrg?4Q7Ke(gZ>C55Gm+B@FRoCNO*`! zMfj-S2!s;xz^bZf9!a`+!6U9P58^&R0lq3EB9GmFCM%$qlAw_=+MOmCt~wNjDPSr& z$;|E`@PP{e1W7{1O(VS^0_=ulFp$@R0tJ}@>Op)FfRst70405JsF14{Qb&nL0JG+F zkTfA?aD}jfR?y?t9Gtn5FYlXoT^pJKEi!jekBDs`57bWO)zq>EGHg`=Zy_S+%#BQe z&_KGZ*&Rd`6I6mPkQ;~uKIoMP!iJ1k6lobe0V>jAg1d`}SD;#G2-p}Pz&o~8b*Uf? zJaj?=K3h$wmW>pI`85{y+6$c+Ub1j{wN} z8j!%bvtyQdl7T~pLZew4KDO|nT^K9i7FVqAo_UJN@DTWqzL7dR z015P@^XN1z2$4v?stj?0_Yl9E^iQ~8d(fn+cpWmyga|{QofsGx54ef36V3p%N~4fU z(G}e73((Xglo%UNE(XRTqDk#S%Jk#5QB#Wh?V&EKP(9LW3=fb7op9oXMiywncqEem zdTj-Sk-?zCSRf_yk_M8QApxR~V2Q27Km_JOM^(6E%mFn3S8e=&^97;1)Gpez2Rb!_ zc7V}KTCE68C0mBh*qp_~?!VnUI_!jnp`8-gBJd}qxI8`taG)PFTFLmrUO0$n5V1^L zQK2}*DPRPf2v&AxoIX;6P(V(~4lg9qKlf728x#k-7aXf zo45+i#jmeQRnd?=EHv3?4^-^Q1BCdnX|7VKiu^=|Ku-ZvG8UOa<2cJH~ZfCbK!@B&VkJtt5Hfw;^NMjJs-of`_ zjpRiP&yGooyvT^Wkrz8o9KD0P4jfx=EnD|e`z0S*$5;ou$6CfFG3&V%)Sil1(oQi4 zYb6!+15y~PCyM23h7vZ)%*+T=GsA{i)=dSQlSM;w&Hp3124V( zQH*ubokuU2*TlA>@XdM6)^+nPxR-615;|r6oIgzs&z?UQ?QyhsKH7U0v2g4mIGNs# zs2;kB6$}OVDW1{*$2p5NKM%3)2iTrHU5(9~ZomD_+pXLB3x)n7TW)>tfs6Na`EGmb zw%g8bb{8m@`l8rz=q-pt({6HACAu)Os*~zVfo#1RK*Xl9m0*<0aN8*MonR%bR_rFD zUph-H#pGw6u}(b0de+|X_1AB>p&>anE<3t5v!?8$fhr?aRrO_<+AlITrz)Gc3Gb^uu+3?OyH3XXR)y3#E00F{Z!O5^+Shd zwKQY^Vr+=6y>lBwHNjv_$YU``q()-cqdAI{6MG8* z#61#d2W=EZ#xNBvYzO-lBUv^OcB|-Wg#YCF!A+0zwc)&V|NR@vJTv%f_DqL0XYHh2 zS*s-;Z;7)%TS3Nt{K=2@?ww$L#Ja8J?BbiA-_rE>G=b7MZD?~TIkZwVLvIrlX@Lrk zY|~)vgS8WuofQAVk^*avZpJIJv1P>{?3((%_5Az2U6EoiC?bmvy?KZ&iil9K_;U)P zWVy3+%lx~4|NFb=A1t9fTnx@Wchjx6ZaQans1OMYYhSj8-BOdy)>!LnNH;k2K@ywz zc31<_&m!$|Bx!Y|rGrdCfWjyItk5m@up+;G-C%}IgMD3Cn#$j@UOqkFKDV`ARU3O| z&+3Up)-UX}zTj?{QFFZYG8_AES7EiENx40xC7rER0nT@$vr=g2N-+ucU^-r+Sczf9 z<-_?2tkRKgX0%kL9VC0%iD+oCL^-rmiuE@MAIm>VmBFb5b|#>qSVM^p7n~~ZVfZ0) z;k$=fAo9HM@h3we-Q|$`FmXNOQr!-x=JEeQRkX>n;*CVSLYt&1>K~kLAKUBpdi}EN zeCCnmPuw2AE5LlW3302B@u1tU`979m%P-J0uixi#3I*QUr#>7jVIevAsX_}G@RCWb zL%R@%dJeV@yDK=?Q8tAcHp$E-SjJEc(cW{Y?M0?*(B0+n$r zS;0Fk&iQ|}7KJ!*l({3#b)M5sZ%>+-hDBn}MG5$Pu52o|c>b-CcAsy-0`7=L<6dP< z)|pxp>(j=hJ)1Xs(ru2u*ov$p+fKSc`&Lb2H!o6u81^=b6v45NIl)RKp^*HBk3Pb| zDUJ|qm{~Ybb=PLAXER%CzdufQ!Xu=Pp=ZTSus?N(ykZBIwCry%85(wvN6tbynZeq% zvSDicyG#1=RwUoomuDXbwZ+za8rtk*ZwNMW)n(Qh8x~&*8WhrQv4+Pn+QXPD8l*AkQxMB|Y`~_2g6_p~KA1K2d@+r97IhT^ zuTY|Xj-$nOQ-AD{nnv$ z-4na4_eZbqxaN@T(Hl?zRtG4 zVZHXoFOMJkm31v&Ze4%qjW-S*d}Gm9TUiD;oVF6XcCvax6gaNFYL7art zBNSVtP0b9ZV0%x5e-f>(3Oj20#&;(ae^1x>nVM+d!2v9K-0_vE!I$P&hl167eCvYw zH*wh`hk|1`Z}qv^^=hbI7{V|NFIHe|(TSgk_Fy&qJ$q~)$99lu8)&R_Yu|)(KZC&Y&Kz>YLO^%pg6WlX=y~w0FH4i!Bw!G zKK`?&x;h<8-=@r|{nNs}xijZ9npo!O@px06Gv{qvSucw#3%+o$swxx#>l=YU;(PC{q1FkyV;fOgC{FYVA zJV8XXLw!}QVydaLvng40X_Ji*@`9f4-YQqe>$$A66Lk6&J_uxxAG%5mV2)HUs=e?X zC8h)w90myD8VyGg=kC~#*+FZabtc{k!$?ww?F&LK0oroGncHH$DZmO zyyoyFYv)+~o&4G3k5me+rI#G;u=?i?;K828DRtYvUd6LEA7NkfES%=q7rtTfPw(Q- zTK{A9~^AAFh>pRjuDB9MZ1>OjIub|d;aPC5f~ zpq|EA9MW&{Y;yJiQq16(%#92k(<@;7kIeJ-EKjBoW8y16;N)_+K*KJ8Sb2+_NBEI> z&-BWEU!)-|hjli1+AUlUE6Ik4&o47~ArE`tcNW><>N?J?oT#f&TXVG`go17TM_Ze4 z$2_7&SM;K{xhT52L~)eA6j35{j0~0~3E8iQUo%dcB+Zbnk#3Uigt!okhXS<0_p_Z~ zjQ&>E10Gcj0k~wJpv5X~#O?9pTnOdb+j1JJ3ls5ijg%&8VANx40#gayksh`um{=-y zMWu6jrM=?U_7j!lU zaZY6m#+wtXDLTjV<=GJIP+|TjGehzSm)mf}hiUd9`N}B~tOCfc(=Iqk1g4t($UZdo z`RDH?8fpzzXL|j$f`=5}C|R_ss^+g=I$GcWVnj5nE@#kK4pUGGjUK;*HC0t7M#T(Y z&>AJ=tn7;+LghVLT_5sz#x;r2a>AkdpNhw;-L4LrlcPfq;(WqY(mLsN8kq)m6rqct zCDkVE5sJc;*kfzu1(RARJH7s(!$XasEgT(pxx=1Ss#_0F8RLngJ)Qm3EcgTNDvu{x!D`2+ zDgG_g|A7K*E%O75 zcNS`Dte35qWnV)qdhX)W2g0(yt!)xtHL$6DU2V+z0UIm(T3aV4HVvGmE5XspVS9;_ zSBUx1*+M!+Mkh4d&?GtQ@Z1<(CoNLK|A#a)_|n09hcA_mYS)@{p!;v0{ODfm_j~tR z@9*8qkB*dDe;9$W-XF=sfTy*?OhkB(P-KtkK_7OT$qzH&p4cZ|D}4{p8b?y8^%4^lew4V_ogj&pAi; z%{zx^WuWz4aUtIZI{%)wP8_Fz=}R!N+U@hXPyCtg**bUiH>%w+p7gs0|3WzkwEH`w z(N0L&iF5FCFh4r%$P~_ov2jc*kHgc%>R2;*{E$_6clrjltJ=DZM{XTB#52h0f3J$| zszJ``Lu(F^U5gL>5IT7U*1K5HW0h5z@?eG#bS#x|QoD;>K%5{+Bjl6D=08kuE2ATz z_VQk=EHwJ_9)0xG!f5N~P3d?Ii}bH=n{Yo?<-ce@(@cq6ps~IkV~-^sdWgLrhz`Di7dH6NLsl#hWzniLtP^`SKK$@@ zH5$0P>I^1dwDBRl7=cPVk)dnEG&>#x4IMdk-^R$z43zAn``JnuI48y!k#MZu_;vr1 zi=Td)@u%C)ICKA*XYQAcL|r&+{CW)KJ$>=%GnP{BnUE2kgWNpqzapx4@(2tK$DT7$ z7SZzNRQH?FD@Ki8bXf5NF8miel_G9pe4b{~RH9TTJmc9SLCcblU zc`uI+e#mYB7|QIs^^22U*c9toHr4w0+;c0kC`%1u7vF(Vj3Dpdjowb2R>7PHr9+JC zt1kz|Dwp5yI`JpEKf(+->S8_B?y9$DY}hcPf5Qeo+UK$wY3Q&wTs}6&>5YzI){ONx zZ`g42dNj(U^3X%#9R47_PK0*}2audVatGm9+FqnA&I!EzaCgU&^=(d}E^kJ9+Ldod!r!8`SqkSi2cT0z3hl0Du$+ z6FT|5@ED9JJvFtR`}nGBmbuntdRK<3t3%=HYU?MfRM)ins{WlU*b~UqP4{&9MgMsL zb~U!!yww5Ws(KUKXvz<|+I5Sin@nJlq#_su49Q%MlTm zcTR8iuW_lXu9=!$=UP^(4p-V^OIPt;|9Smr%+(if2#*i3^ZRS#p9^O!){uxhqra*P zF*L^AE9$uX3O32a_f%E(I=w!v&Y4le9(_8DcQO#EkB{2HP88a7_1c?i!2hX?0bhTBtv8^V9v+%R4K z@P?rJUyCkWy!gUJ&}RYNTgAU)+s!ncq*dTw8pIu(`)$M724S;`P61aqfsYTNF7QRs zZ=9iHkEisAH`P9yf2^IO{&UV0UCVmo4!{SXCfAb#BLBsbu|ng8i#cUq7$o zFXR;9W?lRjen(J z?Ok2^&PdC*;gbd(N;&+6+RSeq*fL|w{(BCXyUm*izg)psOFy{(iYxB_z%-j~yb(Ml zI;2zTR?V96K(m2;C>ANy8U7~zD8Y%FY)q6K`B}sM zT1m2507qIpAa#nBQh|RgHHxoEQE`P-&)<@QVxQziY;&|YU#b>P$rJ}segm#UxE`0v zVn3eeOSSyprI@${={1sve*s)$aJA#Q)xLaoy(Dn#lzi+Oe9`kS(schFD(4E4Q9@`L_7`kNLvOO3n* z@cX5)HlC|dpW566zU+|_;@ik?1fHY7{Rpmwl2cqK#l>ZSTOmbkK0FKD#GgBHJt?Ko zc0K={lmc(u#6SB|+jPV9oZY~A6wD;|$;i(ejpf_~8h z=%2Jkeh0hG^g~)n|MfwVCg7_4_@yIuP6c-4j_+MiEF>IV!E+McDru@aXE@D)ZzN3z zDdr95%g7%|E7A#kqhG13N}P?ryQC9r1ZK6=%4ZM5kj`E>oQ8h!D~Ho(BLC*$^jf6v znX`WNj?LTa7Y?jCbMx6dqz9#X{5ODY(g3`HdTF7wUfL*amo`ghOC5OMY5%t3>+uT2 z&XdYprPYAjBwd8x(-3`Fk9zgP_mxO(L7mO`9|Hq`qx%{g-vA=zXWIC8;C&_9q5P4$ zXWNjJSAi$UZ782Cor>RjaDSxkXrxvG^8j+sLCf?!MVc+mL@d4)>3PUG7uUAovH`TT z7VVskJj$iiTEOl2lJXJEBh+k18Nm_t8>RCBTj>$?bQP{jpIZMv@BLSj|9k%ZPx-e( z>nr@+45^TW)@NN~%a~kFlC(a|evHJ94 z^!af*B8YEz!q^YeF`5mmC#!LOq897^I-Jf(K(0xAZ<@xgY6jo7o7k@&g)d*5@%8;^ zXi^(&Sv%U!doOI=bo_7W#Z6EV&wV-!u5dhs<>A5I7KBQiV_ wUs}(GPR_yi*7Kmfr{SyX1sGwAprNNDioQfzDlLP*xB~q@f+*DFdFaaj2Em$p-~a#s literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/pictos/pictos-web.woff b/apps/common/mobile/resources/fonts/pictos/pictos-web.woff new file mode 100644 index 0000000000000000000000000000000000000000..90e536281ba9513c333237caf2be67baf2ac3a75 GIT binary patch literal 12904 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 z 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 Wds-3;eS`*+7(auHnP7eIsQ6#Uo}ga< literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/tizen/TizenSansMedium.ttf b/apps/common/mobile/resources/fonts/tizen/TizenSansMedium.ttf new file mode 100644 index 0000000000000000000000000000000000000000..76ba2c121af53e4d498f10f5ca1b776e61ab42f3 GIT binary patch literal 136456 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

fDeTlv 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 K@3mh!;r|DQXjYm4 literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/tizen/TizenSansRegular.ttf b/apps/common/mobile/resources/fonts/tizen/TizenSansRegular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7e98c96193c04739d713da078c28e4164e30b6b1 GIT binary patch literal 138928 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 literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/tizen/tizen-icon.eot b/apps/common/mobile/resources/fonts/tizen/tizen-icon.eot new file mode 100644 index 0000000000000000000000000000000000000000..d08871ba74ddc4f6f1c87948c9f6ef7b5ecd8de8 GIT binary patch literal 1572 zcma)6O-vI(6#k~$AKAsOCIu3sp@sfnVuZAX20_8Z#9%ZUiN>3(Wd)M9TLDA4^=Lwj zgqz;H8@U+07(+aGBA$#FP6SVSHu0dW-^?zQHb|V!&ilSM@4bC*cIG9+Ks^Kq1kgML zR)y4Dztya7u)0%QX|O#M#T<%oQ0D8PLUk0kVPgi5QG$heYC3V3nt3eHR@%fdfb)E% zZL2qxG7kfFXc)LT*`JNBAAd^Cd%jb}vQ@=fjMC^d`RI(bP^COUevk6lOlkSyqn++^ zRSBmYI-Ubbpg zwBa%k43ftyR@uJN_2w&ilHVAvItz=;lOr@G*P#U=R>2((JP&MA^URat2Xdl~{OB>x z2t{qf<-`2OTa4q1%O5Ad7~?E=Duy8XD8rQUw=#n3lE-1WuDk8NR8~|_3a*&@oJj(O zVHre4T+=FAh4Ief5{)}zk#KLKCzHM?@`a&XBHPv3aq_>FTE#HT-&>}^VQMK)9?1nJ zJS$&_)X`jJj|t}d4k?xKU_O)XO%#R(^Zg>-+Y=Gtj#!uI%w@-f(j~H7E3hmU#=0`; zK^Df+SQ%>zY%$Z_?UG^Sb<@;$|LD5VB+Bc0Npv%}wUH6qURtv45sp11wq%+m!!+q9 zy?kF4gu%>Ii-U5NJMZUy3OOJpGt9`WO__DKh^U#l7sS637B7Tm7`uPur!N@B`no|u zEWR|dYoHw(%SE~@85s`Dbx3|4AR{k}Q+6NbD3z~|LTp6`ZKe}H#S)g%|_ zBhN7Jh-BcIQb$Y?Z&Lp1AhTg`UA<~a$22~QnDPi=%)49rkq?Am>v-+Q6~yYRoCCyH zeZ5AU^l^~*j*mlZNKqe$5kc0+I`2_Y-l||5H8Q4$y_g>MVtUw%>0vLXhr{$8_I + + +Generated by IcoMoon + + + + + + + + + \ No newline at end of file diff --git a/apps/common/mobile/resources/fonts/tizen/tizen-icon.ttf b/apps/common/mobile/resources/fonts/tizen/tizen-icon.ttf new file mode 100644 index 0000000000000000000000000000000000000000..e06206390e731bb804c4d20b931666c16319e692 GIT binary patch literal 1408 zcma)5O-NKx6#nkK`N{XpS1_Xxg){2R7(@;;ql0N_5QISliP0`!<4c8^_og%)cP@j7 z#9i&$M{c4v5z?ZSw2C&a#8$NqTBNV<-uu#&l&-vU&UfxP-~G;bF9ZM!OE6HlG2T~f zTRr}SnRomqt97S=Hy8%QY2x8&XRbkig7`N5vFY04z5838=ZGhPNbij6Oa(8$y$6g( z+#i@>B2h3t60Z^W%+%+bt=AaA_)3$k`Bew&qDlOdxV7#y8)(60AQ~l3drsZG(((EW zaSzWJZ1{8Y)X5c_l>0EE5X*@1>}Qd6W}a#u>QWT+Zz0sp9P^gwZ1;Rvlf zF-a?bsU)K4rH|7KL?lBH5U1e;L9iLTP*qIO3+~vvm?DA7pd?X@D~4xyOaGXF(^HoOXX1!Hw8ZG`dFFmEvK3F9c^i7<|#ok(knBY|QV zn|w!A`KqEV%t%fhYfc?&P91Ab9cxY<$Jsj=_G->q^7^Rr^WotZTs*)WW)(`Kfb;zJ y)y!7?y6=1Yleo#oX*@&?4hi-(aA=p*lGwpK{S?x;i$&Tob@=u0a5WXp;p;bPLC7uu literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/fonts/tizen/tizen-icon.woff b/apps/common/mobile/resources/fonts/tizen/tizen-icon.woff new file mode 100644 index 0000000000000000000000000000000000000000..5fb4d55de76caaedfcf007e24ca9f3fc224f8ca7 GIT binary patch literal 1484 zcma)5O-NKx6#nkK`N{XpS1>9B;h4@$L8Q!#4yL7n7zSY^wXN4UIl|05OT%&JJ|b~f zyP&1yCTbVbqLs9gHm<~7t=pxq@7(*!6qW99?)kareD^zV&Rv)o8-oH@Yy*zgOR^ue zCMJ7wfI7vqhaxR&r(cw6-YjDk`a@biU})N#lh|AOk}Gm%y1Mw7u~i^)QRK-^$K^`d zn*yv&p7)CctKUCW7zCot^t(k8z1EjXZN9-+Fa4xQ^DUt2mn3hLzT`GzLp5q%gZD=7 z&`)V;!i~CDD>Ej121G{N-+!C+=jPcjxrBKZEh`GOj2OASifqt-X|(!*ylSF<@){vh z$yyKiv(_asT=x2^0qe zL?fWQ1RAeyK2klhLw(W=6F_QTWpMdWix$j zjIFUV_7>S9)4lDg;}mSywfA;yTUlZiY`dyD$ZchCuv}hPD3=Gh{#a^DXjUE9Wt~)o zwHkzAZu(GxE|o7IazBSWkQRnnVeJa*4wcY5xfj)Ogw<8#_BQwnR zqFv6E9x?5hP1ox|t}{0jePm+_pH)&<#4xPq()`o^lxwpE??POK7Dmh+5!yFH+oIha z+ELo~LOX^wdL}=P1ahHm^BtAsRYjW^5lmwnOk*2NV;f9k8%$%zSvwHc8q68u`lwNS z)NvnWJjEPlw3k9Ju22r-%#{3^@7E6oahHYDc!nxG0vsq{(`7;nu!ni-DWvcSi`>Wc P<+sDjbyxZW9=H7lOEk+Z literal 0 HcmV?d00001 diff --git a/apps/common/mobile/resources/sass/_common-settingspanel.scss b/apps/common/mobile/resources/sass/_common-settingspanel.scss index 528038103..dc993155c 100644 --- a/apps/common/mobile/resources/sass/_common-settingspanel.scss +++ b/apps/common/mobile/resources/sass/_common-settingspanel.scss @@ -17,7 +17,7 @@ position: absolute; width: $anchor-width; height: $anchor-height; - -webkit-mask: 0 0 theme_image($theme-name, "tip_top.png") no-repeat; + //-webkit-mask: 0 0 theme_image($theme-name, "tip_top.png") no-repeat; -webkit-mask-size: $anchor-width $anchor-height; @include background-gradient($base-color, color_stops(lighten($base-color, 15%), lighten($base-color, 13%))); top: 1px !important; @@ -38,7 +38,7 @@ position: absolute; width: $anchor-width; height: $anchor-height + .1em; - -webkit-mask: 0 0 theme_image($theme-name, "tip_bottom.png") no-repeat; + //-webkit-mask: 0 0 theme_image($theme-name, "tip_bottom.png") no-repeat; -webkit-mask-size: $anchor-width $anchor-height; @include background-gradient($base-color, color_stops($base-color, darken($base-color, 5%))); top: -1px !important; @@ -106,4 +106,17 @@ .round { @include border-radius($panel-border-radius); } + + // Hide group header + .x-list-header-wrap { + @include border-top-radius($panel-border-radius !important); + + .x-innerhtml { + @include border-top-radius($panel-border-radius !important); + } + } + + .x-list-header { + display: none; + } } \ No newline at end of file diff --git a/apps/common/mobile/resources/sass/_common-toolbar.scss b/apps/common/mobile/resources/sass/_common-toolbar.scss index 93c5531cf..ccb7fab8b 100644 --- a/apps/common/mobile/resources/sass/_common-toolbar.scss +++ b/apps/common/mobile/resources/sass/_common-toolbar.scss @@ -9,6 +9,10 @@ $shadow-width: .065em; // Space between tip and its shadow $toolbar-border-color: darken($color, 50%); $toolbar-button-color: darken($color, 5%); + .x-toolbar { + background-color: transparent; + } + .x-toolbar-#{$ui-label} { @if $ui-label == search { @include background-gradient($color, color_stops($color, lighten($color, 11%) 20%, lighten($color, 11%))); diff --git a/apps/documenteditor/mobile/resources/css/application-normal.css b/apps/documenteditor/mobile/resources/css/application-normal.css index d4d86dc26..3b0be657c 100644 --- a/apps/documenteditor/mobile/resources/css/application-normal.css +++ b/apps/documenteditor/mobile/resources/css/application-normal.css @@ -1,11785 +1 @@ -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, -h4, h5, h6, pre, code, form, fieldset, legend, -input, textarea, p, blockquote, th, td { - margin: 0; - padding: 0; -} - -/* line 8, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -fieldset, img { - border: 0; -} - -/* line 18, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -address, caption, cite, code, -dfn, em, strong, th, var { - font-style: normal; - font-weight: normal; -} - -/* line 23, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -li { - list-style: none; -} - -/* line 27, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -caption, th { - text-align: left; -} - -/* line 31, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -h1, h2, h3, h4, h5, h6 { - font-size: 100%; - font-weight: normal; -} - -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -q:before, -q:after { - content: ""; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -abbr, acronym { - border: 0; - font-variant: normal; -} - -/* line 46, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sup { - vertical-align: text-top; -} - -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sub { - vertical-align: text-bottom; -} - -/* line 54, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -input, textarea, select { - font-family: inherit; - font-size: inherit; - font-weight: inherit; -} - -/* line 60, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -*:focus { - outline: none; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 10, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -html, body { - font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif; - font-weight: normal; - position: relative; - -webkit-text-size-adjust: none; -} - -/* line 17, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - overflow: hidden; -} - -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -*, *:after, *:before { - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -webkit-touch-callout: none; - -webkit-user-drag: none; -} - -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-ios.x-tablet .x-landscape * { - -webkit-text-stroke: 1px transparent; -} - -/* line 33, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body { - font-size: 104%; -} - -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone { - font-size: 116%; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone.x-silk { - font-size: 130%; -} - -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-ios.x-phone { - font-size: 114%; -} - -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - font-size: 114%; -} - -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -input, textarea { - -webkit-user-select: text; -} - -/* line 57, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-visibility { - visibility: hidden !important; -} - -/* line 61, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-display, .x-field-hidden { - display: none !important; -} - -/* line 65, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-offsets { - position: absolute !important; - left: -10000em; - top: -10000em; - visibility: hidden; -} - -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-fullscreen { - position: absolute !important; -} - -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-desktop .x-body-stretcher { - margin-bottom: 0px; -} - -/* line 83, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: 100%; - z-index: 10; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - background: rgba(0, 0, 0, 0.3) center center no-repeat; -} -/* line 100, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-gray { - background-color: rgba(0, 0, 0, 0.5); -} -/* line 104, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-transparent { - background-color: transparent; -} -/* line 108, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-inner { - position: relative; - background: rgba(0, 0, 0, 0.25); - color: #fff; - text-align: center; - padding: .4em; - font-size: .95em; - font-weight: bold; - -webkit-border-radius: 0.5em; - border-radius: 0.5em; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-loading-spinner-outer { - display: -webkit-box; - display: box; - -webkit-box-orient: vertical; - box-orient: vertical; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - width: 100%; - min-width: 8.5em; - height: 8.5em; -} -/* line 130, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-inner { - padding-bottom: 0 !important; -} -/* line 133, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-loading-spinner-outer { - display: none; -} -/* line 136, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-message { - position: relative; - bottom: .25em; -} -/* line 142, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-message { - position: absolute; - bottom: 1.7em; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-flex: 0 !important; - max-width: 13em; - min-width: 8.5em; -} -/* line 152, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-mask-inner { - padding-bottom: 2em; -} -/* line 156, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-loading-spinner-outer { - height: 7.5em; -} - -/* line 162, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-draggable { - z-index: 1; -} - -/* line 166, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-dragging { - opacity: 0.7; -} - -/* line 170, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-panel-list { - background-color: white; -} - -/* line 175, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html { - -webkit-user-select: auto; - -webkit-touch-callout: inherit; - line-height: 1.5; - color: #333; - font-size: .8em; - padding: 1.2em; -} -/* line 33, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html body { - line-height: 1.5; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - color: #333333; - font-size: 75%; -} -/* line 51, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 { - font-weight: normal; - color: #222222; -} -/* line 52, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img { - margin: 0; -} -/* line 53, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 { - font-size: 3em; - line-height: 1; - margin-bottom: 0.50em; -} -/* line 54, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h2 { - font-size: 2em; - margin-bottom: 0.75em; -} -/* line 55, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h3 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; -} -/* line 56, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h4 { - font-size: 1.2em; - line-height: 1.25; - margin-bottom: 1.25em; -} -/* line 57, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h5 { - font-size: 1em; - font-weight: bold; - margin-bottom: 1.50em; -} -/* line 58, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h6 { - font-size: 1em; - font-weight: bold; -} -/* line 59, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p { - margin: 0 0 1.5em; -} -/* line 60, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .left { - display: inline; - float: left; - margin: 1.5em 1.5em 1.5em 0; - padding: 0; -} -/* line 61, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .right { - display: inline; - float: right; - margin: 1.5em 0 1.5em 1.5em; - padding: 0; -} -/* line 62, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html a { - text-decoration: underline; - color: #0066cc; -} -/* line 18, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:visited { - color: #004c99; -} -/* line 21, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:focus { - color: #0099ff; -} -/* line 24, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:hover { - color: #0099ff; -} -/* line 27, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:active { - color: #bf00ff; -} -/* line 63, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html blockquote { - margin: 1.5em; - color: #666666; - font-style: italic; -} -/* line 64, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html strong, .x-html dfn { - font-weight: bold; -} -/* line 65, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html em, .x-html dfn { - font-style: italic; -} -/* line 66, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html sup, .x-html sub { - line-height: 0; -} -/* line 67, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html abbr, .x-html acronym { - border-bottom: 1px dotted #666666; -} -/* line 68, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html address { - margin: 0 0 1.5em; - font-style: italic; -} -/* line 69, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html del { - color: #666666; -} -/* line 70, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre { - margin: 1.5em 0; - white-space: pre; -} -/* line 71, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre, .x-html code, .x-html tt { - font: 1em "andale mono", "lucida console", monospace; - line-height: 1.5; -} -/* line 72, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html li ul, .x-html li ol { - margin: 0; -} -/* line 73, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul, .x-html ol { - margin: 0 1.5em 1.5em 0; - padding-left: 1.5em; -} -/* line 74, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul { - list-style-type: disc; -} -/* line 75, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ol { - list-style-type: decimal; -} -/* line 76, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl { - margin: 0 0 1.5em 0; -} -/* line 77, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl dt { - font-weight: bold; -} -/* line 78, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dd { - margin-left: 1.5em; -} -/* line 79, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table { - margin-bottom: 1.4em; - width: 100%; -} -/* line 80, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th { - font-weight: bold; -} -/* line 81, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html thead th { - background: #c3d9ff; -} -/* line 82, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th, .x-html td, .x-html caption { - padding: 4px 10px 4px 5px; -} -/* line 85, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table.striped tr:nth-child(even) td, -.x-html table tr.even td { - background: #e5ecf9; -} -/* line 86, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html tfoot { - font-style: italic; -} -/* line 87, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html caption { - background: #eeeeee; -} -/* line 88, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .quiet { - color: #666666; -} -/* line 89, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .loud { - color: #111111; -} -/* line 185, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ul li { - list-style-type: circle; -} -/* line 188, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ol li { - list-style-type: decimal; -} - -/* line 194, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-video { - background-color: #000; -} - -/* line 198, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-sortable .x-dragging { - opacity: 1; - z-index: 5; -} - -/* line 203, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-layout-card-item { - background: #eeeeee; -} - -/* line 1, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map { - background-color: #edeae2; -} -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map * { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -/* line 9, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-mask-map { - background: transparent !important; -} - -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map-container { - position: absolute !important; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Toolbar - */ -/** - * @var {color} $toolbar-base-color - * The primary color variable from which toolbars derive their light and dark UIs. - */ -/** - * @var {measurement} $toolbar-spacing - * Space between items in a toolbar (like buttons and fields) - */ -/** - * @var {string} $toolbar-gradient - * Background gradient style for toolbars. - */ -/** - * @var {boolean} $include-toolbar-uis - * Optionally disable separate toolbar UIs (light and dark). - */ -/** - * Includes default toolbar styles. - */ -/** - * Creates a theme UI for toolbars. - * - * // SCSS - * @include sencha-toolbar-ui('sub', #58710D, 'glossy'); - * - * // JS - * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'}) - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Button - */ -/** - * @var {measurement} $button-height Default height for buttons. - */ -/** - * @var {measurement} $button-radius Default border-radius for buttons. - */ -/** - * @var {measurement} $button-stroke-weight Default border width for buttons. - */ -/** - * @var {string} $button-gradient Default gradient for buttons. - */ -/** - * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons. - */ -/** - * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline. - */ -/** - * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows. - */ -/** - * Includes default button styles. - */ -/** - * Creates a theme UI for buttons. - * Also automatically generates UIs for {ui-label}-round and {ui-label}-small. - * - * // SCSS - * @include sencha-button-ui('secondary', #99A4AE, 'glossy'); - * - * // JS - * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'}); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.tab.Bar - */ -/** - * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark). - */ -/** - * @var {boolean} $include-top-tabs - * Optionally exclude top tab styles by setting to false. - */ -/** - * @var {boolean} $include-bottom-tabs - * Optionally exclude bottom tab styles by setting to false. - */ -/** - * @var {color} $tabs-light - * Base color for "light" UI tabs. - */ -/** - * @var {color} $tabs-light-active - * Active color for "light" UI tabs. - */ -/** - * @var {color} $tabs-dark - * Base color for "dark" UI tabs. - */ -/** - * @var {color} $tabs-dark-active - * Active color for "dark" UI tabs. - */ -/** - * @var {string} $tabs-bar-gradient - * Background gradient style for tab bars. - */ -/** - * @class Ext.tab.Tab - */ -/** - * @var {string} $tabs-bottom-radius - * Border-radius for bottom tabs. - */ -/** - * @var {string} $tabs-bottom-icon-size - * Icon size for bottom tabs - */ -/** - * @var {string} $tabs-bottom-active-gradient - * Background gradient style for active bottom tabs. - */ -/** - * @var {boolean} $include-tab-highlights - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * Includes default tab styles. - * - * @member Ext.tab.Bar - */ -/** - * Creates a theme UI for tabbar/tab components. - * - * // SCSS - * @include sencha-button-ui('pink', #333, 'matte', #AE537A); - * - * // JS - * var tabs = new Ext.tab.Panel({ - * tabBar: { - * ui: 'pink', - * dock: 'bottom', - * layout: { pack: 'center' } - * }, - * ... - * }); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $bar-color Base color for the tab bar. - * @param {string} $bar-gradient Background gradient style for the tab bar. - * @param {color} $tab-active-color Background-color for active tab icons. - * - * @member Ext.tab.Bar - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.carousel.Indicator - */ -/** - * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots. - */ -/** - * @var {measurement} $carousel-indicator-spacing - * Amount of space between carousel indicator dots. - */ -/** - * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in. - */ -/** - * Creates a theme UI for carousel indicator components. - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - * @param {color} $active-color Active color for the UI. - * @param {string} $active-gradient Active gradient for the UI. - */ -/** - * @class Ext.carousel.Carousel - */ -/** - * Includes basic carousel formatting. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.IndexBar - */ -/** - * @var {measurement} $index-bar-width - * Width of the index bar. - */ -/** - * @var {color} $index-bar-bg-color - * Background-color of the index bar. - */ -/** - * @var {color} $index-bar-color - * Text color of the index bar. - */ -/** - * Includes default index bar styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.List - */ -/** - * @var {color} $list-color - * Text color for list rows. - */ -/** - * @var {color} $list-bg-color - * Background-color for list rows. - */ -/** - * @var {color} $include-list-highlights - * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $list-zebrastripe - * Optionally zebra-stripe the list (alternating background colors). - */ -/** - * @var {color} $list-pressed-color - * Background-color for pressed list rows. - */ -/** - * @var {color} $list-active-color - * Background-color for selected list rows. - */ -/** - * @var {string} $list-active-gradient - * Gradient style for selected list rows. - */ -/** - * @var {color} $list-header-bg-color - * Background-color for list header rows (in grouped lists). - */ -/** - * @var {string} $list-header-gradient - * Gradient style for list header rows (in grouped lists). - */ -/** - * @var {measurement} $list-disclosure-size - * Default size (width/height) for disclosure icons. - */ -/** - * @var {measurement} $list-disclosure-round-size - * Default size (width/height) for disclosure icons in a list with a `round` ui. - */ -/** - * @var {measurement} $list-round-padding - * Default padding for lists with a `round` ui. - */ -/** - * Includes default list styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * Includes default form slider styles. - * - * @member Ext.field.Slider - */ -/** - * @var {color} $form-bg-color - * Default background-color for forms. - * - * @member Ext.form.Panel - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $form-field-bg-color - * Default background-color for form fields. - */ -/** - * @var {color} $form-light - * Light color for form fields, mostly used on field borders. - */ -/** - * @var {color} $form-dark - * Dark color for form fields, mostly used on labels/text. - */ -/** - * @var {measurement} $form-label-width - * Default width for form labels. - */ -/** - * @var {color} $form-label-background-color - * The default background color for labels - */ -/** - * @var {measurement} $form-field-height - * Default height for form fields. - */ -/** - * @var {measurement} $form-spacing - * Default spacing for form fields, used for padding, etc. - */ -/** - * @var {measurement} $form-textarea-height - * Default height for form textareas. - * - * @member Ext.field.TextArea - */ -/** - * @var {measurement} $form-thumb-size - * Default size of "thumbs" for form sliders/toggles. - * - * @member Ext.field.Slider - */ -/** - * @var {measurement} $form-toggle-size - * Thumb size minus padding for inset thumbs like in a Toggle element. - * - * @member Ext.field.Toggle - */ -/** - * @var {measurement} $form-fieldset-radius - * Default border-radius for form fieldsets. - * - * @member Ext.form.FieldSet - */ -/** - * @var {measurement} $form-slider-size - * Height of the slider "track." - * - * @member Ext.field.Slider - */ -/** - * Includes default form styles. - * - * @member Ext.form.Panel - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Sheet - */ -/** - * @var {color} $sheet-bg-color - * Background-color for action sheets and message boxes. - */ -/** - * @var {color} $sheet-bg-gradient - * Background gradient style for action sheets and message boxes. - */ -/** - * @var {measurement} $sheet-button-spacing - * Vertical spacing between sheet buttons. - */ -/** - * @var {measurement} $sheet-padding - * Overall padding in a sheet. - */ -/** - * Includes default sheet styles (also required for message box). - */ -/** - * Includes default message box styles. - * - * @member Ext.MessageBox - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $toolbar-input-bg - * Background-color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-color - * Text color for toolbar form fields. - */ -/** - * @var {measurement} $toolbar-input-height - * Text color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-border-color - * Border color for toolbar form fields. - */ -/** - * Includes default toolbar form field styles. - * - * @member Ext.tab.Bar - */ -/** - * @class Ext.LoadMask - */ -/** - * @var {color} $loading-spinner-color - * Background-color for the bars in the loading spinner. - */ -/** - * Includes default loading spinner styles (for dataviews). - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 4, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image { - text-align: center; -} -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image img { - width: auto; - height: 100%; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-background { - background-repeat: no-repeat; - background-position: center; - background-size: auto 100%; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video { - height: 100%; - width: 100%; -} - -/* line 8, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video > * { - height: 100%; - width: 100%; - position: absolute; -} - -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video-ghost { - -webkit-background-size: 100% auto; - background: black url() center center no-repeat; -} - -/* line 19, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -audio { - width: 100%; -} - -/* line 8, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel, -.x-msgbox, -.x-panel-body { - position: relative; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating, -.x-msgbox, -.x-form.x-floating { - padding: 6px; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - background-image: none; - background-color: #656565; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating.x-floating-light, -.x-msgbox.x-floating-light, -.x-form.x-floating.x-floating-light { - background-image: none; - background-color: #cbcbcb; -} -/* line 26, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating .x-panel-inner, -.x-panel.x-floating > .x-body, -.x-msgbox .x-panel-inner, -.x-msgbox > .x-body, -.x-form.x-floating .x-panel-inner, -.x-form.x-floating > .x-body { - z-index: 1; - background-color: #fff; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 35, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock, -.x-msgbox > .x-dock, -.x-form.x-floating > .x-dock { - z-index: 1; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock.x-sized, -.x-msgbox > .x-dock.x-sized, -.x-form.x-floating > .x-dock.x-sized { - margin: 6px; -} - -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor { - position: absolute; - overflow: hidden; -} -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-top { - margin-top: -0.68em; - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-bottom { - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-left { - margin-left: -0.6655em; - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} -/* line 82, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-right { - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} - -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-floating.x-panel-light:after { - background-color: #cbcbcb; -} - -/* line 52, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - min-height: 1.8em; - padding: .3em .6em; - position: relative; - overflow: hidden; - -webkit-user-select: none; - z-index: 1; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-toolbar .x-button { - border: 1px solid #999999; - border-top-color: #a6a6a6; - color: black; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before { - background: #999999; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after { - background-image: none; - background-color: #cccccc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf)); - background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); - background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after { - background-image: none; - background-color: #c4c4c4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6)); - background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); - background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); -} -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon { - width: 2.1em; - height: 2.1em; - background-repeat: no-repeat; - background-position: center; - display: block; -} -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon.x-icon-mask { - width: 1.1em; - height: 1.1em; - -webkit-mask-size: 1.1em; -} -/* line 80, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon { - opacity: .5; -} - -/* line 86, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-round { - -webkit-border-radius: 0.9em; - border-radius: 0.9em; -} - -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left, .x-icon-align-right { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} - -/* line 95, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top, .x-iconalign-bottom { - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 98, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom, .x-iconalign-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} - -/* line 101, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-center { - -webkit-box-pack: center; - box-pack: center; -} - -/* line 104, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge { - margin-left: 0.3em; -} - -/* line 107, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge { - margin-right: 0.3em; -} - -/* line 110, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge { - margin-top: 0.3em; -} - -/* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge { - margin-bottom: 0.3em; -} - -/* line 118, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-label, .x-hasbadge .x-badge { - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-align: center; - box-align: center; - white-space: nowrap; - text-overflow: ellipsis; - text-align: center; - font-weight: bold; - line-height: 1.2em; - display: block; - overflow: hidden; -} - -/* line 131, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button { - margin: 0 .2em; - padding: .3em .6em; -} -/* line 135, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge { - font-size: .7em; -} -/* line 139, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge { - line-height: 1.6em; -} - -/* line 144, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small, .x-toolbar .x-button-small { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - padding: .2em .4em; - min-height: 0; -} -/* line 149, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge { - font-size: .6em; -} -/* line 153, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon { - width: .75em; - height: .75em; -} -/* line 157, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask { - -webkit-mask-size: .75em; -} - -/* line 175, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, .x-button-back { - position: relative; - overflow: visible; - height: 1.7em; - z-index: 1; -} -/* line 180, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after { - content: ""; - position: absolute; - width: 0.80717em; - height: 1.8em; - top: -0.1em; - left: auto; - z-index: 2; - -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat; - -webkit-mask-size: 0.80717em 1.8em; - overflow: hidden; -} - -/* line 190, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back, -.x-toolbar .x-button-back { - margin-left: 0.87217em; - padding-left: .4em; -} -/* line 193, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:before, -.x-toolbar .x-button-back:before { - left: -0.72717em; -} -/* line 196, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:after, -.x-toolbar .x-button-back:after { - left: -0.68217em; -} - -/* line 202, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, -.x-toolbar .x-button-forward { - margin-right: 0.88217em; - padding-right: .4em; -} -/* line 205, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, -.x-toolbar .x-button-forward:before, -.x-toolbar .x-button-forward:after { - -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat; -} -/* line 208, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, -.x-toolbar .x-button-forward:before { - right: -0.72717em; -} -/* line 211, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:after, -.x-toolbar .x-button-forward:after { - right: -0.68217em; -} - -/* line 219, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain, -.x-toolbar .x-button.x-button-plain { - background: none; - border: 0 none; - -webkit-border-radius: none; - border-radius: none; - min-height: 0; - text-shadow: none; - line-height: auto; - height: 1.9em; - padding: 0em 0.5em; -} -/* line 229, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain > *, -.x-toolbar .x-button.x-button-plain > * { - overflow: visible; -} -/* line 233, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain .x-button-icon, -.x-toolbar .x-button.x-button-plain .x-button-icon { - -webkit-mask-size: 1em; - width: 1em; - height: 1em; -} -/* line 239, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed, -.x-toolbar .x-button.x-button-plain.x-button-pressing, -.x-toolbar .x-button.x-button-plain.x-button-pressed { - background: none; - background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(255, 255, 255, 0.7)), color-stop(100%, rgba(255, 255, 255, 0))); - background-image: -webkit-radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); - background-image: radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); -} -/* line 244, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); - background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); -} - -/* line 251, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button { - margin: 0; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 257, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-first { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 260, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-last { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 265, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button:not(.x-first) { - border-left: 0; -} - -/* line 276, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge { - overflow: visible; -} -/* line 278, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge .x-badge { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; - padding: .1em .3em; - z-index: 2; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - overflow: hidden; - color: #ffcccc; - border: 1px solid #990000; - position: absolute; - width: auto; - min-width: 2em; - line-height: 1.2em; - font-size: .6em; - right: 0px; - top: -.2em; - max-width: 95%; - background-image: none; - background-color: #cc0000; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000)); - background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - display: inline-block; -} - -/* line 36, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar { - padding: 0 0.2em; - position: relative; -} -/* line 46, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-top { - border-bottom: .1em solid; -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-bottom { - border-top: .1em solid; -} -/* line 54, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-left { - width: 7em; - height: auto; - padding: 0.2em; - border-right: .1em solid; -} -/* line 61, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-right { - width: 7em; - height: auto; - padding: 0.2em; - border-left: .1em solid; -} - -/* line 69, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title { - line-height: 2.1em; - font-size: 1.2em; - text-align: center; - font-weight: bold; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: 0 0.3em; - padding: 0 .3em; - max-width: 100%; -} -/* line 81, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 103, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-navigation-bar .x-container { - overflow: visible; -} - -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner .x-input-el, -.x-field-select .x-input-el { - -webkit-text-fill-color: #000; - -webkit-opacity: 1; -} - -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner.x-item-disabled .x-input-el, -.x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: currentcolor; -} - -/* line 54, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-el { - -webkit-text-fill-color: #fff; -} - -/* line 58, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: rgba(255, 255, 255, 0.6); -} - -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field-container { - padding: 0 .3em; -} -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field { - width: 13em; - margin: .5em; - min-height: 0; - border-bottom: 0; - background: transparent; -} -/* line 74, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field .x-clear-icon { - background-size: 50% 50%; - right: -0.8em; - margin-top: -1.06em; -} -/* line 81, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-input { - padding-right: 1.6em !important; -} -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-textarea .x-component-outer, -.x-toolbar .x-field-text .x-component-outer, -.x-toolbar .x-field-number .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - background-color: white; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; -} -/* line 99, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-label { - background: transparent; - border: 0; - padding: 0; - line-height: 1.4em; -} -/* line 106, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field { - height: 1.6em; - color: #6e6e6e; - background: transparent; - min-height: 0; - -webkit-appearance: none; - padding: 0em .3em; - margin: 0; -} -/* line 115, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field:focus { - color: black; -} -/* line 122, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.8em; - border-radius: 0.8em; -} -/* line 128, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-search .x-field-input { - background-position: .5em 50%; -} -/* line 133, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - -webkit-box-shadow: none; -} -/* line 136, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-form-field { - height: 1.4em; -} -/* line 141, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - background: transparent; -} -/* line 145, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:after { - right: .4em; -} -/* line 151, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after { - opacity: .6; -} -/* line 157, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:before { - width: 3em; - border-left: none; - -webkit-border-top-right-radius: 0.8em; - border-top-right-radius: 0.8em; - -webkit-border-bottom-right-radius: 0.8em; - border-bottom-right-radius: 0.8em; - -webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC'); - -webkit-mask-position: right top; - -webkit-mask-repeat: repeat-y; - -webkit-mask-size: 3em 0.05em; -} -/* line 172, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-text { - color: #fff; -} - -/* line 178, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-android .x-field-search .x-field-input { - padding-left: .2em !important; - padding-right: 2.2em !important; -} - -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-wrapper { - -webkit-box-pack: end !important; - box-pack: end !important; - pointer-events: none; -} - -/* line 35, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-vertical { - width: 1.1em; - -webkit-box-orient: vertical; - box-orient: vertical; - margin-right: 8px; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-horizontal { - height: 1.1em; - -webkit-box-orient: horizontal; - box-orient: horizontal; - margin-bottom: 8px; -} - -/* line 47, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar { - pointer-events: auto; - z-index: 2; - padding: .3em 0; - min-height: 0 !important; - height: auto !important; - -webkit-box-flex: 0 !important; -} -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar > div { - color: #a5a5a5; - font-size: 0.6em; - text-align: center; - line-height: 1.1em; - font-weight: bold; - display: block; -} - -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-phone.x-landscape .x-indexbar > div { - font-size: 0.38em; - line-height: 1em; -} - -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-pressed { - -webkit-border-radius: 0.55em; - border-radius: 0.55em; - background-color: rgba(163, 143, 143, 0.8); -} - -/* line 84, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list { - position: relative; - background-color: #f7f7f7; - overflow: hidden; -} -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-inner { - width: 100% !important; -} -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-disclosure { - overflow: visible; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNCM0JGNTZFMjI2ODExQkNGQjkwMzk3MDc3MkZFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3M0MzQUU1QUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3M0MzQUU1OUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU3Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIi8+IDwvcmRmOkRlc2NyaXB0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') no-repeat; - -webkit-mask-size: 1.7em; - background-image: none; - background-color: #5e86dc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9db6ea), color-stop(3%, #7396e0), color-stop(100%, #4977d7)); - background-image: -webkit-linear-gradient(top, #9db6ea, #7396e0 3%, #4977d7); - background-image: linear-gradient(top, #9db6ea, #7396e0 3%, #4977d7); - width: 1.7em; - height: 1.7em; - margin: 0.5em 0.5em 0 0; -} -/* line 103, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list.x-list-indexed .x-list-disclosure { - margin-right: 1.8em; -} -/* line 107, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-item-selected .x-list-disclosure { - background: #fff none; -} -/* line 111, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-scrolldock-hidden { - display: none; -} -/* line 115, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item { - position: absolute !important; - left: 0; - top: 0; - color: black; - width: 100%; -} -/* line 123, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-pressed .x-dock-horizontal { - background: white none; -} -/* line 128, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-selected .x-dock-horizontal { - background-image: none; - background-color: #688ad2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a3b8e4), color-stop(3%, #7c99d8), color-stop(100%, #547bcc)); - background-image: -webkit-linear-gradient(top, #a3b8e4, #7c99d8 3%, #547bcc); - background-image: linear-gradient(top, #a3b8e4, #7c99d8 3%, #547bcc); - color: white; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 134, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item > .x-dock { - height: auto; -} - -/* line 140, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item-body { - min-height: 46px; - padding: 0.65em 0.8em; -} - -/* line 145, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-header-swap { - position: absolute; - left: 0; - width: 100%; - z-index: 2 !important; -} - -/* line 152, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-ios .x-list-header-swap { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -/* line 156, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item .x-list-header { - display: none; -} - -/* line 160, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-grouped .x-list-header-wrap .x-list-header { - position: absolute; - top: 0; - left: 0; - width: 100%; - display: block; -} - -/* line 169, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 26px; -} -/* line 174, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-header-wrap .x-item-header, -.x-list-normal .x-list-header { - background-image: none; - background-color: #fefefe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #f3f0f0)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - color: #b9aaaa; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - border-top: 1px solid #fefefe; - border-bottom: 1px solid #d0c6c6; - font-weight: bold; - font-size: 0.8em; - padding: 0.2em 1.02em; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 202, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item .x-dock-horizontal { - border-top: 1px solid #dedede; -} -/* line 206, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal { - border-bottom: 1px solid #dedede; -} -/* line 214, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal { - border-top-color: white; - background-color: white; -} -/* line 219, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal { - border-top-color: #688ad2; - border-bottom: 1px solid #3760b7; -} - -/* line 227, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal { - border-top: 0; -} - -/* line 232, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 31px; -} -/* line 236, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-scroll-view { - background-color: #eee !important; -} -/* line 241, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header-swap { - padding-right: 13px; -} -/* line 245, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-inner .x-scroll-container { - top: 13px; - left: 13px; - bottom: 13px; - right: 13px; - width: auto !important; - height: auto !important; -} -/* line 254, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-disclosure { - overflow: hidden; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.5em; - background-image: none; - background-color: #e5e5e5; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f1f1f1), color-stop(100%, #d8d8d8)); - background-image: -webkit-linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - background-image: linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - width: 1.5em; - height: 1.5em; - margin: 0.5em 0.5em 0 0; -} -/* line 264, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header { - color: #777; - font-size: 1em; - font-weight: bold; - padding-left: 26px; - line-height: 1.7em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(30%, rgba(238, 238, 238, 0.9)), color-stop(100%, rgba(238, 238, 238, 0.4))); - background-image: -webkit-linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); - background-image: linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); -} -/* line 274, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container { - padding: 13px 13px 0 13px; -} -/* line 277, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container .x-list-header { - padding-left: 13px; - background-image: none; -} -/* line 285, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal, .x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - background: #f7f7f7; -} -/* line 295, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 299, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:last-child { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - border-width: 1px; - margin-bottom: 13px; -} -/* line 310, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 314, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 321, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap { - background: transparent; -} -/* line 324, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13px; -} -/* line 329, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #dedede; - background: #f7f7f7; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 340, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item { - display: inline-block !important; -} - -/* line 346, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-nowrap .x-dataview-container { - white-space: nowrap !important; -} - -/* line 352, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-inlineblock .x-list-item { - display: inline-block !important; -} - -/* line 358, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-inner { - width: auto; -} -/* line 361, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-container { - white-space: nowrap !important; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -html, body { - width: 100%; - height: 100%; -} - -@-webkit-keyframes x-paint-monitor-helper { - /* line 47, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - from { - zoom: 1; - } - - /* line 48, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - to { - zoom: 1; - } -} - -/* line 51, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitored { - position: relative; -} - -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor { - width: 0 !important; - height: 0 !important; - visibility: hidden; -} -/* line 59, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.cssanimation { - -webkit-animation-duration: 0.0001ms; - -webkit-animation-name: x-paint-monitor-helper; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange { - overflow: hidden; -} -/* line 65, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange::after { - content: ""; - display: block; - width: 1px !important; - height: 1px !important; -} - -/* line 74, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitored { - position: relative; -} - -/* line 78, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - visibility: hidden; - z-index: -9999; - overflow: hidden; -} -/* line 87, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors > * { - width: 100%; - height: 100%; - overflow: hidden; -} -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.shrink::after { - content: ""; - display: block; - width: 200%; - height: 200%; - min-width: 1px; - min-height: 1px; -} -/* line 101, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.expand::after { - content: ""; - display: block; - width: 100000px; - height: 100000px; -} -/* line 110, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.shrink > * { - width: 100%; - height: 100%; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.expand > * { - width: 200%; - height: 200%; -} - -/* line 130, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-body { - position: relative; - z-index: 0; -} - -/* line 135, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-inner, .x-body { - width: 100%; - height: 100%; -} - -/* line 140, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock, .x-dock-body { - height: 100%; -} - -/* line 144, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-sized { - position: relative; -} - -/* line 148, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container { - display: -webkit-box; - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 151, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 158, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-innerhtml { - width: 100%; -} - -/* line 162, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card { - position: relative; - overflow: hidden; -} - -/* line 167, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item-container { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 171, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 175, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item, .x-layout-newcard-item > * { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 179, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item:not(.active) { - display: none; -} - -/* line 183, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit.x-stretched > .x-layout-fit-item { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 188, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit { - position: relative; -} - -/* line 193, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-sized { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 196, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-unsized { - width: 100%; - height: 100%; -} - -/* line 202, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center, .x-centered { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: -webkit-box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; -} -/* line 207, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > *, .x-centered > * { - position: relative; -} -/* line 210, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > .x-floating, .x-centered > .x-floating { - position: relative !important; -} - -/* line 215, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-floating { - position: absolute; -} - -/* line 219, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock { - display: -webkit-box; -} -/* line 222, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 225, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock .x-dock-body { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 229, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized > .x-dock-body { - position: relative; -} -/* line 233, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 235, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * { - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 240, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 243, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} -/* line 245, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item { - display: -webkit-box; -} -/* line 248, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 252, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 254, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 301, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box { - display: -webkit-box; -} -/* line 303, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal { - -webkit-box-orient: horizontal !important; -} -/* line 305, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed { - width: 0 !important; -} -/* line 309, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 311, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical > .x-layout-box-item.x-flexed { - height: 0 !important; -} -/* line 315, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box > .x-layout-box-item { - display: -webkit-box !important; -} -/* line 318, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-start { - -webkit-box-align: start; - box-align: start; -} -/* line 321, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-center { - -webkit-box-align: center; - box-align: center; -} -/* line 324, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-end { - -webkit-box-align: end; - box-align: end; -} -/* line 327, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-stretch { - -webkit-box-align: stretch; - box-align: stretch; -} -/* line 330, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-start { - -webkit-box-pack: start; - box-pack: start; -} -/* line 333, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-center { - -webkit-box-pack: center; - box-pack: center; -} -/* line 336, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-end { - -webkit-box-pack: end; - box-pack: end; -} -/* line 339, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-justify { - -webkit-box-pack: justify; - box-pack: justify; -} - -/* line 345, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 350, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float { - overflow: hidden; -} -/* line 352, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float > .x-layout-float-item { - float: left; -} -/* line 356, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float.x-direction-right > .x-layout-float-item { - float: right; -} - -/* line 362, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner { - display: table !important; - width: 100% !important; - height: 100% !important; -} -/* line 367, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner.x-fixed-layout { - table-layout: fixed !important; -} - -/* line 372, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-row { - display: table-row !important; -} - -/* line 376, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-cell { - display: table-cell !important; - vertical-align: middle; -} - -/* line 381, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable { - position: absolute; - top: 100% !important; - left: 100% !important; - overflow: visible !important; - z-index: 1; -} -/* line 387, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable::before { - content: ""; - display: block; - position: absolute; - top: 100%; - left: 100%; - width: 100%; - height: 100%; - visibility: hidden; -} - -/* line 399, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container { - overflow: hidden; - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 402, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container::before { - content: ""; - display: block; - width: 300%; - height: 300%; - visibility: hidden; -} - -/* line 411, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector { - visibility: hidden; - position: absolute; - left: 0; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - overflow: hidden; -} - -/* line 422, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector > * { - visibility: hidden; -} - -/* line 426, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-shrink > * { - width: 200%; - height: 200%; -} - -/* line 431, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-expand > * { - width: 100000px; - height: 100000px; -} - -/* line 436, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-view { - position: relative; - display: block; - overflow: hidden; -} - -/* line 442, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-container { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 448, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-scroller { - position: absolute; - min-width: 100%; - min-height: 100%; - width: auto !important; - height: auto !important; -} - -/* line 456, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-ios .x-scroll-scroller { - -webkit-transform: translate3d(0, 0, 0); -} - -/* line 460, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-stretcher { - position: absolute; - visibility: hidden; -} - -/* line 465, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid-wrapper { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 471, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid { - display: table; - width: 100%; - height: 100%; -} -/* line 476, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * { - display: table-row; -} -/* line 480, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * > * { - display: table-cell; -} -/* line 484, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :first-child { - width: 100%; - height: 100%; -} -/* line 489, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :nth-child(2) { - padding: 3px 3px 0 0; -} -/* line 493, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :nth-child(2) > :first-child { - padding: 0 0 3px 3px; -} - -/* line 498, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar { - position: relative; - overflow: hidden; -} - -/* line 503, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-stretcher { - position: absolute; - visibility: hidden; - width: 100%; - height: 100%; -} - -/* line 510, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x { - width: 100%; -} -/* line 513, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x > .x-scroll-bar-stretcher { - width: 300%; -} -/* line 517, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x.active { - height: 6px; -} - -/* line 522, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y { - height: 100%; -} -/* line 525, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y > .x-scroll-bar-stretcher { - height: 300%; -} -/* line 529, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y.active { - width: 6px; -} - -/* line 534, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator { - background: #333; - position: absolute; - z-index: 3; - opacity: 0.5; -} - -/* line 541, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-android-4 .x-scroll-indicator { - opacity: 1; -} - -/* line 545, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.default { - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 552, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-list-light .x-scroll-indicator, -.x-dataview-light .x-scroll-indicator { - background: #fff; - opacity: 1; -} - -/* line 558, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-x { - height: 100%; -} - -/* line 562, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-y { - width: 100%; -} - -/* line 566, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform { - background: none; -} -/* line 569, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > * { - position: absolute; - background-color: #333; -} -/* line 574, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > :nth-child(2) { - -webkit-transform-origin: 0% 0%; - background: none; - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA); -} -/* line 581, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > * { - background-color: #eee; -} -/* line 585, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) { - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA); -} -/* line 591, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > * { - width: 100%; -} -/* line 595, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child { - height: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; -} -/* line 600, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) { - height: 1px; -} -/* line 604, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child { - height: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} -/* line 611, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > * { - height: 100%; -} -/* line 615, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child { - width: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; -} -/* line 620, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) { - width: 1px; -} -/* line 623, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child { - width: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 134, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container { - background-color: #eeeeee; -} -/* line 137, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container > .x-inner { - padding: 1em; -} - -/* line 144, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label { - text-shadow: #fff 0 1px 1px; - color: #333333; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - padding: 0.6em; - display: none !important; - background-color: #f7f7f7; -} -/* line 151, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label span { - font-size: .8em; - font-weight: bold; -} -/* line 156, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label-nowrap .x-form-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 162, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field { - display: -webkit-box; - display: box; - min-height: 2.5em; - background: #fff; -} -/* line 167, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input { - position: relative; - min-width: 3.7em; -} -/* line 173, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input, -.x-field .x-input-el { - width: 100%; -} -/* line 178, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field.x-field-labeled .x-form-label { - display: block !important; -} -/* line 183, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field:last-child { - border-bottom: 0; -} - -/* line 190, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left .x-component-outer, -.x-label-align-right .x-component-outer { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 197, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 203, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} - -/* line 213, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 217, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:first-child .x-form-label { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 222, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child { - border-bottom: 0; -} -/* line 225, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child .x-form-label { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 235, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left, -.x-label-align-right { - -webkit-box-orient: horizontal !important; - box-orient: horizontal !important; -} - -/* line 240, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top, -.x-label-align-bottom { - -webkit-box-orient: vertical !important; - box-orient: vertical !important; -} - -/* line 249, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 255, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top .x-component-outer { - position: relative; -} - -/* line 260, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 264, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 270, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-input-el { - padding: .4em; - min-height: 2.5em; - display: block; - border-width: 0; - background: transparent; - -webkit-appearance: none; -} - -/* line 279, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-mask { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 286, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-required label:after, -.x-field-required .x-form-label:after { - content: "*"; - display: inline; -} - -/* line 294, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled label:after, -.x-item-disabled .x-form-label:after { - color: #666 !important; -} - -/* line 301, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-textarea textarea { - min-height: 6em; - padding-top: .5em; -} - -/* line 313, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII='); - margin-top: -.7em; -} - -/* line 322, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - margin-top: -0.7em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,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'); -} - -/* line 330, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el { - position: relative; -} -/* line 332, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:after { - background-color: #dddddd; -} -/* line 335, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:checked:after { - background-color: #688ad2; -} - -/* line 340, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el { - position: relative; -} -/* line 342, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:before { - background-color: #d0d0d0; -} -/* line 345, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:after { - background-color: #dddddd; - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 349, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:checked:before { - background-color: #688ad2; -} - -/* line 356, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:checked:before { - background: #aebbd8; -} -/* line 360, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:after { - background: #eee; -} -/* line 367, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-checkbox .x-input-el:checked:after { - background: #aebbd8; -} - -/* line 376, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer { - display: -webkit-box; - display: box; -} -/* line 379, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer > * { - width: auto; -} -/* line 384, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input { - -webkit-box-flex: 1; -} -/* line 387, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input .x-input-el { - -webkit-text-fill-color: #000; - width: 100%; - text-align: center; -} -/* line 395, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input input::-webkit-outer-spin-button, -.x-spinner .x-field-input input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} -/* line 402, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-input-el { - -webkit-text-fill-color: #B3B3B3; -} -/* line 406, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-spinner-button { - color: #aaa !important; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button { - border: 1px solid #c4c4c4; - border-top-color: #d0d0d0; - color: #1e1e1e; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before { - background: #c4c4c4; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #f7f7f7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #efefef; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0)); - background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); - background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); -} -/* line 412, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button { - margin-top: .25em; - margin-bottom: .25em; - width: 2em; - padding: .23em 0 .27em; - font-weight: bold; - text-align: center; - border: 1px solid #dddddd !important; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button { - border: 1px solid #b7b7b7; - border-top-color: #c4c4c4; - color: #111111; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before { - background: #b7b7b7; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #eaeaea; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd)); - background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); - background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3)); - background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); - background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); -} -/* line 424, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-down { - margin-left: .25em; -} -/* line 427, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-up { - margin-right: .25em; -} -/* line 432, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-input-el { - text-align: left; -} -/* line 436, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: .5em; -} - -/* line 443, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-spinner-button { - padding: .40em 0 .11em !important; -} - -/* line 450, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-item-label { - height: 2.6em; -} -/* line 454, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -/* line 460, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-label { - margin-right: 2.6em; -} -/* line 465, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:before { - background-color: rgba(0, 0, 0, 0.3); - margin-top: -.8em; -} -/* line 470, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:after { - background-color: #dddddd; -} - -/* line 11, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer { - padding: 0.6em; -} - -/* line 17, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider, -.x-toggle { - position: relative; - height: 2.2em; - min-height: 0; - min-width: 0; -} -/* line 23, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider > *, -.x-toggle > * { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 30, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider.x-item-disabled { - opacity: .6; -} - -/* line 57, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb { - position: absolute; - height: 2.2em; - width: 2.2em; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb:after { - content: ""; - position: absolute; - width: 1.85em; - height: 1.85em; - top: 0.175em; - left: 0.175em; - border: 1px solid #919191; - -webkit-border-radius: 0.925em; - border-radius: 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0)); - background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging { - opacity: 1; -} -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging:after { - background-image: none; - background-color: #d0d0d0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4)); - background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); - background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); -} - -/* line 81, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider:after { - content: ""; - position: absolute; - width: auto; - height: 0.8em; - top: 0.7375em; - left: 0; - right: 0; - margin: 0 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - border: 0.1em solid rgba(0, 0, 0, 0.1); - border-bottom: 0; - -webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} - -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle { - width: 4.4em; - -webkit-border-radius: 1.1em; - border-radius: 1.1em; - overflow: hidden; - border: 1px solid #b7b7b7; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - -webkit-box-flex: 0; -} -/* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb.x-dragging { - opacity: 1; -} -/* line 117, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb:before { - top: 0.175em; -} - -/* line 146, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle-on { - background-image: none; - background-color: #92cf00; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200)); - background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); - background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); -} - -/* line 482, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/* line 488, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-number input::-webkit-outer-spin-button, -.x-field-number input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -/* line 495, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input { - position: relative; -} -/* line 498, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input:before { - content: ""; - position: absolute; - width: 0.86em; - height: 0.86em; - top: 50%; - left: 0.5em; - -webkit-mask-image: url('data:image/png;base64,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'); - -webkit-mask-size: .86em; - background-color: #ccc; - -webkit-mask-repeat: no-repeat; - margin-top: -0.43em; -} -/* line 506, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input .x-form-field { - margin-left: 1.0em; -} - -/* line 516, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-input .x-clear-icon { - display: none; - background: url('data:image/png;base64,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') no-repeat; - background-position: center center; - background-size: 55% 55%; - width: 2.2em; - height: 2.2em; - margin: .5em; - margin-top: -1.1em; - position: absolute; - top: 50%; - right: -.5em; -} - -/* line 532, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-clear-icon { - display: block; -} -/* line 536, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-field-input { - padding-right: 2.2em; -} - -/* line 541, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-input-el { - -webkit-text-fill-color: #000; -} - -/* line 545, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-empty .x-input-el { - -webkit-text-fill-color: #A9A9A9; -} - -/* line 556, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled .x-form-label span, -.x-item-disabled input, -.x-item-disabled .x-input-el, -.x-item-disabled .x-spinner-body, -.x-item-disabled select, -.x-item-disabled textarea, -.x-item-disabled .x-field-clear-container { - color: #b3b3b3; - -webkit-text-fill-color: #b3b3b3; - pointer-events: none; -} - -/* line 563, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset { - margin: 0 0 1.5em; -} -/* line 566, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-label { - border-top: 1px solid white; -} -/* line 570, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-fieldset-inner { - border: 1px solid #dddddd; - background: #fff; - padding: 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - overflow: hidden; -} -/* line 579, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field { - border-bottom: 1px solid #dddddd; - background: transparent; -} -/* line 583, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 589, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:last-child { - border-bottom: 0; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 599, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title { - text-shadow: #fff 0 1px 1px; - color: #333333; - margin: 1em 0.7em 0.3em; - color: #333333; - font-weight: bold; -} -/* line 605, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 610, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-instructions { - text-shadow: #fff 0 1px 1px; - color: #333333; - color: gray; - margin: 1em 0.7em 0.3em; - font-size: .8em; - text-align: center; -} - -/* line 619, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-selectmark-base, .x-field-select .x-component-outer:after { - content: ""; - position: absolute; - width: 1em; - height: 1em; - top: 50%; - left: auto; - right: 0.7em; - -webkit-mask-size: 1em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC'); - margin-top: -.5em; -} - -/* line 629, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select { - position: relative; - z-index: 1; -} -/* line 634, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:after { - background-color: #dddddd; -} -/* line 639, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after { - pointer-events: none; - position: absolute; - display: block; -} -/* line 645, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before { - content: ""; - position: absolute; - width: 4em; - height: auto; - top: 0; - left: auto; - right: 0; - bottom: 0; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white)); -} - -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox { - min-width: 15em; - max-width: 20em; - max-height: 90%; - margin: .5em; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - border: 0.15em solid #cbcbcb; -} -/* line 17, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-docking-vertical { - overflow: hidden; -} -/* line 22, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-icon { - margin: 0 0.8em 0 0.5em; - background: #fff; - -webkit-mask-size: 100%; -} -/* line 28, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-info { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-warning { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAGXElEQVRoBeWa2Y8UVRSHpxEBEUYURUEdxhA2hbgQiVtgJIgbQpQQBRSi7AF88MknX30m/gP6YIiaGI34YkxcEo1xfTDikmgk7gtGAQFBHb+v6Wp6uquqq7rqtjpzkl+q6y7nnN9dzj230pXBwcGekSSjRhJZuY44wqO7NcOVSuU0bJ0PLgXnggo4CPaBr9laJ3gGl0o39jBkHdi54BawDswDEv4KPAmeAx/iyzGeYUXCIYH3kr0K7AV/AaNkM96k7GYwJqQv6g5KtmrgJNnnY0g2k36XNgNgVEjSQQnj/ETwNGgml/T+Km2nhiQcLEqzb9W9FLhvs8oNNFxJ39OzdsjbLhhhHDEiPwCc5axiJN8EZmXtkLddEMK1GbobZ5bldYj2C8A6dIzvoG/7LiH2C1bng/0gaa+2Kz9A35tC+Fb6DDMzZ+LsVtAHOpVz6LgTXZM6VZDUr1TCOGgysQiYXBSVJSi4E5Xu69KkVMJ4dRF4EJQxMxPQsw3MAaVJaYSZCY+SDWBxad719FyJrq3oHlOWztII41A/WAPOAGWJg3gHMPcuRcxzC0ttBlahKGn5GZW/aWPIYHd2TJvplG3AxsdE7aMx9bmKSrkt4Yxn5x4wM8G6jj4M/k6ot9jLw/KE+u8pXwvhVxLqsxcXPeuwdAF4ETiLSfDe25dmi/pHU/qr9y0wI01HlrpCe5iZ9RhaC24EaaIdByZWanoS62udXEUbaVsogBUijANG0Q2gXaDSjl85ksSBm5pUWSs33ji4nvMdS8eEGemxWN0IZmewrrNeJtIkS+58MQo2Y9sA15F0TBhrfsVYASTeTpzBuAgc9dOPdkvatrZz+wxAuqMMrCPCGOvF6FZgZpVFdK7dkj0viyLa2G5n7Zmxy6lmHRGm+63A2c0qzvBZKY0nU5fHl8W0X8XAqzeX5DFSVYwN9+IOkLZE45yYEldYK3M551miBsltIOncr6ltfeQiDNlxqDAqX92qqm1JGmEHL+9s+X17Ez7lCmC5CGPAQLUFSDyvjKsNWFw/93feNFffPaZc3pklM2Gc9brm7PZn1j60ocsw6dro/s47w2p3oExGMm+vTIRRqDMLgTeXPHuN5nXx5jOx/jb0h5E3ky9Du1X7DFC2qOZjU3Xra1Yjzsx60O5oabVwqsRtYDSOE/d3pwPp5yBXXpZzvP2oMnIOyu3Ao6iImAMnEc68JBMcWEL5mpqvCU1OFmeZYdM5j6G0KJtqpFYp4aQ9PC2LgpQ2xgCDqZE7VVIJM2Luu/uBN5WiYtBqyaZqs2JALCqeyVvQl5rqphJGgUTvBRIvKh47cUHLNLWTY67ZH7ncBa5vrmh8TyTMSLn8toO+xg4FfhvpW2aYMgehDMK6Zha4C98Tr6KJhOl4LbgNlDG7qKmes3HByYF1f5chrqKlwNtULLfYQho7Uu7dxJGirhPpRbeYGAEl/cD9XZYYDzaDC+MUtqRzOOJ5uBIsi+tQsGwu/XcB/wmgDAIja6582I5tZID61XDZzXeuyNbJLs0fvii9DLwHdKZsHEfnz+CnBvzGb79mlm1rHzoXtPBrLKCBS2sPCOFAROgH9L8AHgcfgD9BVFf28yV0TxrCcchLT899NPglkAMO4kdgNZgHZoDrwG5wCJRNVn2HwTZQ/f4u1/p/PCg0QL0OQs2uy9gz3VVU/eMKT+OFwWUvCGX3HXRPjya2SpgCDd8DjoAQI63Ot0FvZLjxSfl68AcIYfsYeneA6l+iomOpj4KHgKMfSn6F5MEE5Z9RfiKhrmixqeZ2MFNFowjdHk3LwRUWBJQp2Eq6ws3BbssRWaIvs9Hlv4OqCY657MsgxHJq1Ol2eQSMbVrOOvMaCLWHIx/ex0avozoeXANCi9vFpXWIkX6Dp2eygdL9tRCYa4cUE5ypGrkEfBHSUpPub3k3YhtMXF39IGTsQH1dVjjDLqVuyjSMCe1GQbNb9o9o8Hewv1sWG+x0m6yr6nONmuU81eDIcP1pOvtjlHjM4uUZEEW04fZ8Fm6Xg0pE2ExrPngMfAeGC2GX8RPAHGO0x2H9Ty0cFZL2u7OJ/QJgMuCxYYCxzkH4L0sF57z7egp4Bf0EeBv7FHwJ2eq9uE6Ywh5I28lUTKKTgcfFBOBe/z8QNvIfBkfBASDx45Ctn0RDCFM57KXbR8O/PqAjjvA/zIVqEDmIpQQAAAAASUVORK5CYII='); -} -/* line 36, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-question { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 40, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-error { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC'); -} -/* line 44, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-title { - font-size: .9em; - line-height: 1.4em; -} -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-body { - background: transparent !important; -} -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar { - background: transparent none; - -webkit-box-shadow: none; - box-shadow: none; -} -/* line 57, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-top { - border-bottom: 0; - height: 1.3em; -} -/* line 62, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom { - border-top: 0; -} -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field { - min-height: 2em; - background: #fff; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; -} -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-form-field { - min-height: 1.5em; - padding-right: 0 !important; - -webkit-appearance: none; -} -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field-input { - padding-right: 2.2em; -} - -/* line 84, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-text { - text-align: center; - padding: 6px 0; - line-height: 1.4em; -} - -/* line 90, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons { - padding: 0.4em 0; - height: auto; -} -/* line 94, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button { - min-width: 4.5em; -} -/* line 98, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button-normal span { - opacity: .7; -} - -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-text { - color: rgba(255, 255, 255, 0.9); - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-input { - background-image: none; - background-color: rgba(255, 255, 255, 0.9); - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(230, 230, 230, 0.9)), color-stop(10%, rgba(242, 242, 242, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0.9))); - background-image: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - background-image: linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - border: 0.1em solid rgba(203, 203, 203, 0.9); -} - -/* line 20, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - font-size: 250%; - height: 1em; - width: 1em; - position: relative; - -webkit-transform-origin: 0.5em 0.5em; - /* Shared Properties for all the bars */ -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after { - display: block; - position: absolute; - width: 0.1em; - height: 0.25em; - top: 0; - -webkit-transform-origin: 0.05em 0.5em; - -webkit-border-radius: 0.05em; - border-radius: 0.05em; - content: " "; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - background-color: rgba(170, 170, 170, 0.99); -} -/* line 42, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::after { - background-color: rgba(170, 170, 170, 0.9); -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::before { - background-color: rgba(170, 170, 170, 0.8); -} -/* line 44, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - background-color: rgba(170, 170, 170, 0.7); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::after { - background-color: rgba(170, 170, 170, 0.6); -} -/* line 46, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::before { - background-color: rgba(170, 170, 170, 0.5); -} -/* line 47, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - background-color: rgba(170, 170, 170, 0.4); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::after { - background-color: rgba(170, 170, 170, 0.35); -} -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::before { - background-color: rgba(170, 170, 170, 0.3); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - background-color: rgba(170, 170, 170, 0.25); -} -/* line 51, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::after { - background-color: rgba(170, 170, 170, 0.2); -} -/* line 52, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::before { - background-color: rgba(170, 170, 170, 0.15); -} - -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span { - left: 50%; - margin-left: -0.05em; -} - -/* Rotate each of the 4 Spans */ -/* line 65, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); -} - -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); -} - -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); -} - -/* line 68, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); -} - -/* These are the two lines that surround each of the 4 Span lines */ -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::before { - -webkit-transform: rotate(30deg); - -moz-transform: rotate(30deg); -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::after { - -webkit-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); -} - -/* Set Animation */ -/* line 77, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - -webkit-animation-name: x-loading-spinner-rotate; - -webkit-animation-duration: .5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} - -@-webkit-keyframes x-loading-spinner-rotate { - /* line 85, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 0% { - -webkit-transform: rotate(0deg); - } - - /* line 86, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.32% { - -webkit-transform: rotate(0deg); - } - - /* line 88, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.33% { - -webkit-transform: rotate(30deg); - } - - /* line 89, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.65% { - -webkit-transform: rotate(30deg); - } - - /* line 91, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.66% { - -webkit-transform: rotate(60deg); - } - - /* line 92, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 24.99% { - -webkit-transform: rotate(60deg); - } - - /* line 94, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 25% { - -webkit-transform: rotate(90deg); - } - - /* line 95, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.32% { - -webkit-transform: rotate(90deg); - } - - /* line 97, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.33% { - -webkit-transform: rotate(120deg); - } - - /* line 98, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.65% { - -webkit-transform: rotate(120deg); - } - - /* line 100, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.66% { - -webkit-transform: rotate(150deg); - } - - /* line 101, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 49.99% { - -webkit-transform: rotate(150deg); - } - - /* line 103, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 50% { - -webkit-transform: rotate(180deg); - } - - /* line 104, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.32% { - -webkit-transform: rotate(180deg); - } - - /* line 106, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.33% { - -webkit-transform: rotate(210deg); - } - - /* line 107, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.65% { - -webkit-transform: rotate(210deg); - } - - /* line 109, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.66% { - -webkit-transform: rotate(240deg); - } - - /* line 110, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 74.99% { - -webkit-transform: rotate(240deg); - } - - /* line 112, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 75% { - -webkit-transform: rotate(270deg); - } - - /* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.32% { - -webkit-transform: rotate(270deg); - } - - /* line 115, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.33% { - -webkit-transform: rotate(300deg); - } - - /* line 116, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.65% { - -webkit-transform: rotate(300deg); - } - - /* line 118, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.66% { - -webkit-transform: rotate(330deg); - } - - /* line 119, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 100% { - -webkit-transform: rotate(330deg); - } -} - -/* line 129, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.border-radius-10 { - -webkit-border-radius: 10px !important; - border-radius: 10px !important; -} - -/* - * Color palette - */ -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller { - width: auto !important; - height: auto !important; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container { - margin-top: 12px; - margin-left: 12px; -} -/* line 18, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item { - display: inline-block; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item.x-item-selected .item-inner { - -webkit-box-shadow: #3ba8ff 0 0 0 4px; - box-shadow: #3ba8ff 0 0 0 4px; -} -/* line 25, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item .item-inner { - display: inline-block; - width: 50px; - height: 50px; - border: 1px solid #d8d8d8; - margin: 6px; -} - -/** - * // SCSS - * @include application-toolbar-ui('edit', $base-color); - */ -/** - * // SCSS - * @include application-toolbar-iconmask('code3', '../../img/toolbar/code3.png'); - */ -/* line 1, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 5, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round .x-scroll-view { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 11, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 0; -} -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - display: none; -} -/* line 22, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal { - padding-bottom: 0; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #bcbcbc; - border-width: 1px 1px 0 1px; - background: white; -} -/* line 34, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -/* line 42, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal { - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c99d8), color-stop(100%, #416cc6)); - background-image: -webkit-linear-gradient(top, #7c99d8, #416cc6); - background-image: linear-gradient(top, #7c99d8, #416cc6); - color: white; -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure { - background-position: -24px 0; -} -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal { - color: inherit; -} -/* line 58, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body { - padding-right: 1.2em; -} -/* line 62, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after { - content: ""; - width: 24px; - height: 24px; - position: absolute; - top: 11px; - right: 11px; - background-image: url("../img/icons/list-normal.png"); - background-size: 72px 48px; - background-position: 0 -24px; -} -/* line 76, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal { - color: white; -} -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after { - background-position: -24px -24px; -} -/* line 86, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon { - width: 24px; - height: 24px; - position: absolute; -} -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset { - margin-left: 30px; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure { - right: 12px; - background-image: url("../img/icons/list-normal.png"); - background-size: 72px 48px; - background-position: 0 0; -} -/* line 106, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body { - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} -/* line 112, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13.8px; -} -/* line 117, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #bcbcbc; - background: white; -} -/* line 124, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal { - background: transparent; -} -/* line 126, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal > .x-dock-body { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c99d8), color-stop(100%, #416cc6)); - background-image: -webkit-linear-gradient(top, #7c99d8, #416cc6); - background-image: linear-gradient(top, #7c99d8, #416cc6); - color: white; -} - -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #989898), color-stop(10%, #656565), color-stop(100%, #656565)); - background-image: -webkit-linear-gradient(top, #989898, #656565 10%, #656565); - background-image: linear-gradient(top, #989898, #656565 10%, #656565); -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label, .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-hasbadge .x-badge, .x-hasbadge .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge { - font-size: .9em; - line-height: 2em; -} -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-title { - font-size: 1em; - line-height: 1.4em; - color: #ffffff; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} - -/* - * Application dataview - */ -/* line 34, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller { - width: auto !important; - height: auto !important; -} -/* line 38, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller .x-dataview-container { - margin-top: 12px; - margin-left: 12px; -} -/* line 44, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item { - display: inline-block; -} -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item.x-item-pressed .item-inner, .x-dataview.icon-view .x-dataview-item.x-item-selected .item-inner { - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c99d8), color-stop(100%, #416cc6)); - background-image: -webkit-linear-gradient(top, #7c99d8, #416cc6); - background-image: linear-gradient(top, #7c99d8, #416cc6); - color: white; -} -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner { - display: inline-block; - width: 77px; - height: 77px; - border: 1px solid #bcbcbc; - background: white; - margin: -1px; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.top-left { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.top-right { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 71, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.bottom-left { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 75, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.bottom-right { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-0 { - background-position: 0 0px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-0, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-0 { - background-position: -24px 0px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-1 { - background-position: 0 -24px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-1, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-1 { - background-position: -24px -24px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-2 { - background-position: 0 -48px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-2, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-2 { - background-position: -24px -48px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-3 { - background-position: 0 -72px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-3, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-3 { - background-position: -24px -72px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-4 { - background-position: 0 -96px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-4, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-4 { - background-position: -24px -96px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-5 { - background-position: 0 -120px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-5, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-5 { - background-position: -24px -120px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-6 { - background-position: 0 -144px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-6, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-6 { - background-position: -24px -144px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-7 { - background-position: 0 -168px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-7, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-7 { - background-position: -24px -168px; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .item-inner .text { - margin-top: 1.4em; - text-align: center; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .item-inner .icon { - width: 24px; - height: 24px; - margin: 1.4em auto; - background-image: url("../img/icons/bullets-normal.png"); - background-size: 48px 168px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-0 { - background-position: 0 0px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-0, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-0 { - background-position: -74px 0px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-1 { - background-position: 0 -74px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-1, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-1 { - background-position: -74px -74px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-2 { - background-position: 0 -148px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-2, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-2 { - background-position: -74px -148px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-3 { - background-position: 0 -222px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-3, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-3 { - background-position: -74px -222px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-4 { - background-position: 0 -296px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-4, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-4 { - background-position: -74px -296px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-5 { - background-position: 0 -370px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-5, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-5 { - background-position: -74px -370px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-6 { - background-position: 0 -444px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-6, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-6 { - background-position: -74px -444px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-7 { - background-position: 0 -518px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-7, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-7 { - background-position: -74px -518px; -} -/* line 118, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .item-inner .text { - position: relative; - top: 1.4em; - text-align: center; -} -/* line 124, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .item-inner .icon { - width: 74px; - height: 74px; - margin: 0 auto; - background-image: url("../img/icons/numbering-normal.png"); - background-size: 148px 518px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item .icon.outline-0 { - background-position: 0 0px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-0, .x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-0 { - background-position: -74px 0px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item .icon.outline-1 { - background-position: 0 -74px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-1, .x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-1 { - background-position: -74px -74px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item .icon.outline-2 { - background-position: 0 -148px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-2, .x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-2 { - background-position: -74px -148px; -} -/* line 140, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .item-inner .text { - position: relative; - top: 1.4em; - text-align: center; -} -/* line 146, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .item-inner .icon { - width: 74px; - height: 74px; - margin: 0 auto; - background-image: url("../img/icons/outline-normal.png"); - background-size: 148px 222px; -} - -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ececec, #cbcbcb); - background-image: linear-gradient(top, #ececec, #cbcbcb); - -webkit-box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - border: 1px solid #797979; -} -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top { - background-color: #797979; - margin-top: -0.62em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #ececec)); - background-image: -webkit-linear-gradient(top, #f1f1f1, #ececec); - background-image: linear-gradient(top, #f1f1f1, #ececec); - top: 1px !important; -} -/* line 27, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom { - height: 0.8em; - background-color: #797979; - margin-top: -0.15em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 36, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.8em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(100%, #bebebe)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #bebebe); - background-image: linear-gradient(top, #cbcbcb, #bebebe); - top: -1px !important; -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-panel-inner { - background: transparent; -} -/* line 52, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar { - border-bottom: none; - margin-top: -6px; - background: transparent; - overflow: hidden; -} -/* line 58, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar .x-title { - color: #323232; - text-shadow: white 0 0.08em 0; -} -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner { - background: transparent; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 69, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after { - content: none; -} -/* line 75, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner { - background-color: #efefef; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 78, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - pointer-events: none; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: inset 0 1px 2px 2px #c8c8c8; - box-shadow: inset 0 1px 2px 2px #c8c8c8; - border: 1px solid #797979; -} - -/* line 88, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-label.info .x-innerhtml { - color: #7f7f7f; - text-shadow: 0 1px 0 white; - text-align: center; -} - -/* line 94, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.btn-input-image input[type="file"] { - opacity: 0; - position: absolute; - left: 0; - top: 0; -} - -/* line 102, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-mask.transparent { - background: transparent; -} - -/* line 106, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.round { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons { - background: transparent; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons.x-field { - min-height: 0; -} -/* line 10, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - background: transparent; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span { - font-size: inherit; -} -/* line 18, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-button { - margin-top: 9px; - margin-bottom: 9px; - padding: 0 8px !important; -} -/* line 24, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - padding: 0.16em; -} -/* line 28, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input { - -webkit-box-shadow: #b2b2b2 0 3px 4px -2px inset; - box-shadow: #b2b2b2 0 3px 4px -2px inset; - background: white; - min-width: 2.3em; -} -/* line 33, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el { - text-align: center; - -webkit-border-radius: 0; - border-radius: 0; - padding: 3px 0 4px; - min-height: 0; - border-top: 1px solid #898989; - border-bottom: 1px solid #898989; -} -/* line 47, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button { - width: auto; - border: 1px solid #939393 !important; - margin: 0; -} -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: 0; - -webkit-border-top-right-radius: 0; - border-top-right-radius: 0; - -webkit-border-bottom-right-radius: 0; - border-bottom-right-radius: 0; -} -/* line 59, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up { - -webkit-border-top-left-radius: 0; - border-top-left-radius: 0; - -webkit-border-bottom-left-radius: 0; - border-bottom-left-radius: 0; -} - -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - border-color: #4c4c4c; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button, -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-back:before, .x-toolbar-edit .x-button.x-button-forward:before, .x-toolbar .x-toolbar-edit .x-button.x-button-back:before, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar-edit .x-button.x-button-forward:after, .x-toolbar .x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-edit .x-button .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-pressing, .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar-edit .x-button.x-button-active, .x-toolbar-edit .x-button.x-button-active:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-edit .x-button.x-button-active, .x-toolbar .x-toolbar-edit .x-button.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-label, -.x-toolbar-edit .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(20%, #e7e7e7), color-stop(100%, #e7e7e7)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - background-image: linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - border-color: #4c4c4c; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button, -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-back:before, .x-toolbar-search .x-button.x-button-forward:before, .x-toolbar .x-toolbar-search .x-button.x-button-back:before, .x-toolbar .x-toolbar-search .x-button.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar-search .x-button.x-button-back:after, .x-toolbar-search .x-button.x-button-forward:after, .x-toolbar .x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button.x-button-back:after, .x-toolbar .x-toolbar-search .x-button.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-search .x-button .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-pressing, .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar-search .x-button.x-button-pressed, .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar-search .x-button.x-button-active, .x-toolbar-search .x-button.x-button-active:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressing, .x-toolbar .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressed, .x-toolbar .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-search .x-button.x-button-active, .x-toolbar .x-toolbar-search .x-button.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-label, -.x-toolbar-search .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.save, -.list-icon.save { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 0px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.save, -.x-button-pressing .list-icon.save, -.x-button-pressed .x-button-icon.save, -.x-button-pressed .list-icon.save, -.x-button-active .x-button-icon.save, -.x-button-active .list-icon.save, -.x-item-pressed .x-button-icon.save, -.x-item-pressed .list-icon.save { - background-position: -24px 0px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.undo, -.list-icon.undo { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.undo, -.x-button-pressing .list-icon.undo, -.x-button-pressed .x-button-icon.undo, -.x-button-pressed .list-icon.undo, -.x-button-active .x-button-icon.undo, -.x-button-active .list-icon.undo, -.x-item-pressed .x-button-icon.undo, -.x-item-pressed .list-icon.undo { - background-position: -24px -24px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.share, -.list-icon.share { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -48px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.share, -.x-button-pressing .list-icon.share, -.x-button-pressed .x-button-icon.share, -.x-button-pressed .list-icon.share, -.x-button-active .x-button-icon.share, -.x-button-active .list-icon.share, -.x-item-pressed .x-button-icon.share, -.x-item-pressed .list-icon.share { - background-position: -24px -48px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-style, -.list-icon.font-style { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -72px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-style, -.x-button-pressing .list-icon.font-style, -.x-button-pressed .x-button-icon.font-style, -.x-button-pressed .list-icon.font-style, -.x-button-active .x-button-icon.font-style, -.x-button-active .list-icon.font-style, -.x-item-pressed .x-button-icon.font-style, -.x-item-pressed .list-icon.font-style { - background-position: -24px -72px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-color, -.list-icon.font-color { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -96px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-color, -.x-button-pressing .list-icon.font-color, -.x-button-pressed .x-button-icon.font-color, -.x-button-pressed .list-icon.font-color, -.x-button-active .x-button-icon.font-color, -.x-button-active .list-icon.font-color, -.x-item-pressed .x-button-icon.font-color, -.x-item-pressed .list-icon.font-color { - background-position: -24px -96px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.bold, -.list-icon.bold { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -120px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.bold, -.x-button-pressing .list-icon.bold, -.x-button-pressed .x-button-icon.bold, -.x-button-pressed .list-icon.bold, -.x-button-active .x-button-icon.bold, -.x-button-active .list-icon.bold, -.x-item-pressed .x-button-icon.bold, -.x-item-pressed .list-icon.bold { - background-position: -24px -120px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.italic, -.list-icon.italic { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -144px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.italic, -.x-button-pressing .list-icon.italic, -.x-button-pressed .x-button-icon.italic, -.x-button-pressed .list-icon.italic, -.x-button-active .x-button-icon.italic, -.x-button-active .list-icon.italic, -.x-item-pressed .x-button-icon.italic, -.x-item-pressed .list-icon.italic { - background-position: -24px -144px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.underline, -.list-icon.underline { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -168px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.underline, -.x-button-pressing .list-icon.underline, -.x-button-pressed .x-button-icon.underline, -.x-button-pressed .list-icon.underline, -.x-button-active .x-button-icon.underline, -.x-button-active .list-icon.underline, -.x-item-pressed .x-button-icon.underline, -.x-item-pressed .list-icon.underline { - background-position: -24px -168px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-left, -.list-icon.align-left { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -192px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-left, -.x-button-pressing .list-icon.align-left, -.x-button-pressed .x-button-icon.align-left, -.x-button-pressed .list-icon.align-left, -.x-button-active .x-button-icon.align-left, -.x-button-active .list-icon.align-left, -.x-item-pressed .x-button-icon.align-left, -.x-item-pressed .list-icon.align-left { - background-position: -24px -192px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-center, -.list-icon.align-center { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -216px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-center, -.x-button-pressing .list-icon.align-center, -.x-button-pressed .x-button-icon.align-center, -.x-button-pressed .list-icon.align-center, -.x-button-active .x-button-icon.align-center, -.x-button-active .list-icon.align-center, -.x-item-pressed .x-button-icon.align-center, -.x-item-pressed .list-icon.align-center { - background-position: -24px -216px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-right, -.list-icon.align-right { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -240px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-right, -.x-button-pressing .list-icon.align-right, -.x-button-pressed .x-button-icon.align-right, -.x-button-pressed .list-icon.align-right, -.x-button-active .x-button-icon.align-right, -.x-button-active .list-icon.align-right, -.x-item-pressed .x-button-icon.align-right, -.x-item-pressed .list-icon.align-right { - background-position: -24px -240px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-fill, -.list-icon.align-fill { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -264px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-fill, -.x-button-pressing .list-icon.align-fill, -.x-button-pressed .x-button-icon.align-fill, -.x-button-pressed .list-icon.align-fill, -.x-button-active .x-button-icon.align-fill, -.x-button-active .list-icon.align-fill, -.x-item-pressed .x-button-icon.align-fill, -.x-item-pressed .list-icon.align-fill { - background-position: -24px -264px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.bullets, -.list-icon.bullets { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -288px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.bullets, -.x-button-pressing .list-icon.bullets, -.x-button-pressed .x-button-icon.bullets, -.x-button-pressed .list-icon.bullets, -.x-button-active .x-button-icon.bullets, -.x-button-active .list-icon.bullets, -.x-item-pressed .x-button-icon.bullets, -.x-item-pressed .list-icon.bullets { - background-position: -24px -288px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spacing, -.list-icon.spacing { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -312px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spacing, -.x-button-pressing .list-icon.spacing, -.x-button-pressed .x-button-icon.spacing, -.x-button-pressed .list-icon.spacing, -.x-button-active .x-button-icon.spacing, -.x-button-active .list-icon.spacing, -.x-item-pressed .x-button-icon.spacing, -.x-item-pressed .list-icon.spacing { - background-position: -24px -312px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.page-number, -.list-icon.page-number { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -336px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.page-number, -.x-button-pressing .list-icon.page-number, -.x-button-pressed .x-button-icon.page-number, -.x-button-pressed .list-icon.page-number, -.x-button-active .x-button-icon.page-number, -.x-button-active .list-icon.page-number, -.x-item-pressed .x-button-icon.page-number, -.x-item-pressed .list-icon.page-number { - background-position: -24px -336px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert, -.list-icon.insert { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -360px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert, -.x-button-pressing .list-icon.insert, -.x-button-pressed .x-button-icon.insert, -.x-button-pressed .list-icon.insert, -.x-button-active .x-button-icon.insert, -.x-button-active .list-icon.insert, -.x-item-pressed .x-button-icon.insert, -.x-item-pressed .list-icon.insert { - background-position: -24px -360px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search, -.list-icon.search { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -384px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search, -.x-button-pressing .list-icon.search, -.x-button-pressed .x-button-icon.search, -.x-button-pressed .list-icon.search, -.x-button-active .x-button-icon.search, -.x-button-active .list-icon.search, -.x-item-pressed .x-button-icon.search, -.x-item-pressed .list-icon.search { - background-position: -24px -384px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.fullscreen, -.list-icon.fullscreen { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -408px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.fullscreen, -.x-button-pressing .list-icon.fullscreen, -.x-button-pressed .x-button-icon.fullscreen, -.x-button-pressed .list-icon.fullscreen, -.x-button-active .x-button-icon.fullscreen, -.x-button-active .list-icon.fullscreen, -.x-item-pressed .x-button-icon.fullscreen, -.x-item-pressed .list-icon.fullscreen { - background-position: -24px -408px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-down, -.list-icon.spinner-down { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -432px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-down, -.x-button-pressing .list-icon.spinner-down, -.x-button-pressed .x-button-icon.spinner-down, -.x-button-pressed .list-icon.spinner-down, -.x-button-active .x-button-icon.spinner-down, -.x-button-active .list-icon.spinner-down, -.x-item-pressed .x-button-icon.spinner-down, -.x-item-pressed .list-icon.spinner-down { - background-position: -24px -432px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-up, -.list-icon.spinner-up { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -456px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-up, -.x-button-pressing .list-icon.spinner-up, -.x-button-pressed .x-button-icon.spinner-up, -.x-button-pressed .list-icon.spinner-up, -.x-button-active .x-button-icon.spinner-up, -.x-button-active .list-icon.spinner-up, -.x-item-pressed .x-button-icon.spinner-up, -.x-item-pressed .list-icon.spinner-up { - background-position: -24px -456px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.superscript, -.list-icon.superscript { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -480px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.superscript, -.x-button-pressing .list-icon.superscript, -.x-button-pressed .x-button-icon.superscript, -.x-button-pressed .list-icon.superscript, -.x-button-active .x-button-icon.superscript, -.x-button-active .list-icon.superscript, -.x-item-pressed .x-button-icon.superscript, -.x-item-pressed .list-icon.superscript { - background-position: -24px -480px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.subscript, -.list-icon.subscript { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -504px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.subscript, -.x-button-pressing .list-icon.subscript, -.x-button-pressed .x-button-icon.subscript, -.x-button-pressed .list-icon.subscript, -.x-button-active .x-button-icon.subscript, -.x-button-active .list-icon.subscript, -.x-item-pressed .x-button-icon.subscript, -.x-item-pressed .list-icon.subscript { - background-position: -24px -504px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.table, -.list-icon.table { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -528px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.table, -.x-button-pressing .list-icon.table, -.x-button-pressed .x-button-icon.table, -.x-button-pressed .list-icon.table, -.x-button-active .x-button-icon.table, -.x-button-active .list-icon.table, -.x-item-pressed .x-button-icon.table, -.x-item-pressed .list-icon.table { - background-position: -24px -528px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.picture, -.list-icon.picture { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -552px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.picture, -.x-button-pressing .list-icon.picture, -.x-button-pressed .x-button-icon.picture, -.x-button-pressed .list-icon.picture, -.x-button-active .x-button-icon.picture, -.x-button-active .list-icon.picture, -.x-item-pressed .x-button-icon.picture, -.x-item-pressed .list-icon.picture { - background-position: -24px -552px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spacing, -.list-icon.spacing { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -576px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spacing, -.x-button-pressing .list-icon.spacing, -.x-button-pressed .x-button-icon.spacing, -.x-button-pressed .list-icon.spacing, -.x-button-active .x-button-icon.spacing, -.x-button-active .list-icon.spacing, -.x-item-pressed .x-button-icon.spacing, -.x-item-pressed .list-icon.spacing { - background-position: -24px -576px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.indent-inc, -.list-icon.indent-inc { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -600px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.indent-inc, -.x-button-pressing .list-icon.indent-inc, -.x-button-pressed .x-button-icon.indent-inc, -.x-button-pressed .list-icon.indent-inc, -.x-button-active .x-button-icon.indent-inc, -.x-button-active .list-icon.indent-inc, -.x-item-pressed .x-button-icon.indent-inc, -.x-item-pressed .list-icon.indent-inc { - background-position: -24px -600px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.indent-dec, -.list-icon.indent-dec { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -624px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.indent-dec, -.x-button-pressing .list-icon.indent-dec, -.x-button-pressed .x-button-icon.indent-dec, -.x-button-pressed .list-icon.indent-dec, -.x-button-active .x-button-icon.indent-dec, -.x-button-active .list-icon.indent-dec, -.x-item-pressed .x-button-icon.indent-dec, -.x-item-pressed .list-icon.indent-dec { - background-position: -24px -624px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.numbering, -.list-icon.numbering { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -648px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.numbering, -.x-button-pressing .list-icon.numbering, -.x-button-pressed .x-button-icon.numbering, -.x-button-pressed .list-icon.numbering, -.x-button-active .x-button-icon.numbering, -.x-button-active .list-icon.numbering, -.x-item-pressed .x-button-icon.numbering, -.x-item-pressed .list-icon.numbering { - background-position: -24px -648px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.outline, -.list-icon.outline { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -672px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.outline, -.x-button-pressing .list-icon.outline, -.x-button-pressed .x-button-icon.outline, -.x-button-pressed .list-icon.outline, -.x-button-active .x-button-icon.outline, -.x-button-active .list-icon.outline, -.x-item-pressed .x-button-icon.outline, -.x-item-pressed .list-icon.outline { - background-position: -24px -672px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-row, -.list-icon.insert-row { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -696px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-row, -.x-button-pressing .list-icon.insert-row, -.x-button-pressed .x-button-icon.insert-row, -.x-button-pressed .list-icon.insert-row, -.x-button-active .x-button-icon.insert-row, -.x-button-active .list-icon.insert-row, -.x-item-pressed .x-button-icon.insert-row, -.x-item-pressed .list-icon.insert-row { - background-position: -24px -696px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-column, -.list-icon.insert-column { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -720px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-column, -.x-button-pressing .list-icon.insert-column, -.x-button-pressed .x-button-icon.insert-column, -.x-button-pressed .list-icon.insert-column, -.x-button-active .x-button-icon.insert-column, -.x-button-active .list-icon.insert-column, -.x-item-pressed .x-button-icon.insert-column, -.x-item-pressed .list-icon.insert-column { - background-position: -24px -720px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.highlightcolor, -.list-icon.highlightcolor { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -744px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.highlightcolor, -.x-button-pressing .list-icon.highlightcolor, -.x-button-pressed .x-button-icon.highlightcolor, -.x-button-pressed .list-icon.highlightcolor, -.x-button-active .x-button-icon.highlightcolor, -.x-button-active .list-icon.highlightcolor, -.x-item-pressed .x-button-icon.highlightcolor, -.x-item-pressed .list-icon.highlightcolor { - background-position: -24px -744px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textcolor, -.list-icon.textcolor { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -768px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textcolor, -.x-button-pressing .list-icon.textcolor, -.x-button-pressed .x-button-icon.textcolor, -.x-button-pressed .list-icon.textcolor, -.x-button-active .x-button-icon.textcolor, -.x-button-active .list-icon.textcolor, -.x-item-pressed .x-button-icon.textcolor, -.x-item-pressed .list-icon.textcolor { - background-position: -24px -768px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textbigger, -.list-icon.textbigger { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -792px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textbigger, -.x-button-pressing .list-icon.textbigger, -.x-button-pressed .x-button-icon.textbigger, -.x-button-pressed .list-icon.textbigger, -.x-button-active .x-button-icon.textbigger, -.x-button-active .list-icon.textbigger, -.x-item-pressed .x-button-icon.textbigger, -.x-item-pressed .list-icon.textbigger { - background-position: -24px -792px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textless, -.list-icon.textless { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -816px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textless, -.x-button-pressing .list-icon.textless, -.x-button-pressed .x-button-icon.textless, -.x-button-pressed .list-icon.textless, -.x-button-active .x-button-icon.textless, -.x-button-active .list-icon.textless, -.x-item-pressed .x-button-icon.textless, -.x-item-pressed .list-icon.textless { - background-position: -24px -816px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-prev, -.list-icon.spinner-prev { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -840px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-prev, -.x-button-pressing .list-icon.spinner-prev, -.x-button-pressed .x-button-icon.spinner-prev, -.x-button-pressed .list-icon.spinner-prev, -.x-button-active .x-button-icon.spinner-prev, -.x-button-active .list-icon.spinner-prev, -.x-item-pressed .x-button-icon.spinner-prev, -.x-item-pressed .list-icon.spinner-prev { - background-position: -24px -840px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-next, -.list-icon.spinner-next { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -864px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-next, -.x-button-pressing .list-icon.spinner-next, -.x-button-pressed .x-button-icon.spinner-next, -.x-button-pressed .list-icon.spinner-next, -.x-button-active .x-button-icon.spinner-next, -.x-button-active .list-icon.spinner-next, -.x-item-pressed .x-button-icon.spinner-next, -.x-item-pressed .list-icon.spinner-next { - background-position: -24px -864px; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-toolbar .x-button.x-button-base { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-icon, .x-toolbar .x-button.x-button-base .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-forward:before, .x-button.x-button-base.x-button-forward:after, .x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-label, .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base .x-badge, .x-toolbar .x-button.x-button-base .x-button-label, .x-toolbar .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-forward:before { - background: #989898; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-button.x-button-base.x-button-back:after, .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base, .x-toolbar .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing, .x-button.x-button-base.x-button-pressing:after, .x-button.x-button-base.x-button-pressed, .x-button.x-button-base.x-button-pressed:after, .x-button.x-button-base.x-button-active, .x-button.x-button-base.x-button-active:after, .x-toolbar .x-button.x-button-base.x-button-pressing, .x-toolbar .x-button.x-button-base.x-button-pressing:after, .x-toolbar .x-button.x-button-base.x-button-pressed, .x-toolbar .x-button.x-button-base.x-button-pressed:after, .x-toolbar .x-button.x-button-base.x-button-active, .x-toolbar .x-button.x-button-base.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing .x-button-label, .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressing .x-badge, .x-button.x-button-base.x-button-pressed .x-button-label, .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressed .x-badge, .x-button.x-button-base.x-button-active .x-button-label, .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-active .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-toolbar .x-button.x-button-light { - border: 1px solid #c7c7c7; - border-top-color: #d9d9d9; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: #262626; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-icon, .x-toolbar .x-button.x-button-light .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-forward:before, .x-button.x-button-light.x-button-forward:after, .x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-label, .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light .x-badge, .x-toolbar .x-button.x-button-light .x-button-label, .x-toolbar .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light .x-badge { - color: #666666; - text-shadow: white 0 0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-forward:before { - background: #cccccc; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-button.x-button-light.x-button-back:after, .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light, .x-toolbar .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:after { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing, .x-button.x-button-light.x-button-pressing:after, .x-button.x-button-light.x-button-pressed, .x-button.x-button-light.x-button-pressed:after, .x-button.x-button-light.x-button-active, .x-button.x-button-light.x-button-active:after, .x-toolbar .x-button.x-button-light.x-button-pressing, .x-toolbar .x-button.x-button-light.x-button-pressing:after, .x-toolbar .x-button.x-button-light.x-button-pressed, .x-toolbar .x-button.x-button-light.x-button-pressed:after, .x-toolbar .x-button.x-button-light.x-button-active, .x-toolbar .x-button.x-button-light.x-button-active:after { - background-image: none; - background-color: #999999; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(10%, #8c8c8c), color-stop(65%, #999999), color-stop(100%, #9a9a9a)); - background-image: -webkit-linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); - background-image: linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing .x-button-label, .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressing .x-badge, .x-button.x-button-light.x-button-pressed .x-button-label, .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressed .x-badge, .x-button.x-button-light.x-button-active .x-button-label, .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-active .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-light.x-button-active .x-button-label, .x-toolbar .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-active .x-badge { - color: white; - text-shadow: gray 0 0.09em 0; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-first) { - border-left: 1px solid #c7c7c7; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue { - border: 1px solid #2e519b; - border-top-color: #3760b7; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: white; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-icon, .x-toolbar .x-button.x-button-base-blue .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-forward:before, .x-button.x-button-base-blue.x-button-forward:after, .x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-label, .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue .x-badge, .x-toolbar .x-button.x-button-base-blue .x-button-label, .x-toolbar .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue .x-badge { - color: white; - text-shadow: #2e519b 0 -0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before { - background: #3155a3; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-button.x-button-base-blue.x-button-back:after, .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after { - background-image: none; - background-color: #688ad2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #9bb2e1), color-stop(100%, #688ad2)); - background-image: -webkit-linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); - background-image: linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing, .x-button.x-button-base-blue.x-button-pressing:after, .x-button.x-button-base-blue.x-button-pressed, .x-button.x-button-base-blue.x-button-pressed:after, .x-button.x-button-base-blue.x-button-active, .x-button.x-button-base-blue.x-button-active:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressing, .x-toolbar .x-button.x-button-base-blue.x-button-pressing:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressed, .x-toolbar .x-button.x-button-base-blue.x-button-pressed:after, .x-toolbar .x-button.x-button-base-blue.x-button-active, .x-toolbar .x-button.x-button-base-blue.x-button-active:after { - background-image: none; - background-color: #416cc6; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3155a3), color-stop(10%, #3760b7), color-stop(65%, #416cc6), color-stop(100%, #436dc7)); - background-image: -webkit-linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); - background-image: linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-button.x-button-base-blue.x-button-active .x-button-label, .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-active .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge { - text-shadow: #2e519b 0 0.09em 0; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first) { - border-left: 1px solid #2e519b; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-icon, .x-toolbar .x-button.x-button-back .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-forward:before, .x-button.x-button-back.x-button-forward:after, .x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-label, .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back .x-badge, .x-toolbar .x-button.x-button-back .x-button-label, .x-toolbar .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-forward:before { - background: #989898; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-button.x-button-back.x-button-back:after, .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back, .x-toolbar .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing, .x-button.x-button-back.x-button-pressing:after, .x-button.x-button-back.x-button-pressed, .x-button.x-button-back.x-button-pressed:after, .x-button.x-button-back.x-button-active, .x-button.x-button-back.x-button-active:after, .x-toolbar .x-button.x-button-back.x-button-pressing, .x-toolbar .x-button.x-button-back.x-button-pressing:after, .x-toolbar .x-button.x-button-back.x-button-pressed, .x-toolbar .x-button.x-button-back.x-button-pressed:after, .x-toolbar .x-button.x-button-back.x-button-active, .x-toolbar .x-button.x-button-back.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing .x-button-label, .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressing .x-badge, .x-button.x-button-back.x-button-pressed .x-button-label, .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressed .x-badge, .x-button.x-button-back.x-button-active .x-button-label, .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-active .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-back.x-button-active .x-button-label, .x-toolbar .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - -webkit-border-radius: 4px; - border-radius: 4px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* - * unsupport - */ -/* line 115, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-base.scss */ -.unsuported-view { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url(../img/ios-only.png) no-repeat center #efefef; - background-attachment: fixed; - z-index: 90000; -} - -/* - * Additional styles - */ -/* line 130, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-12 { - padding-left: 12px; - padding-right: 12px; -} - -/* line 135, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-30 { - padding-left: 30px; - padding-right: 30px; -} +html,body{position:relative;width:100%;height:100%}.x-fullscreen{position:absolute !important}.x-body{position:relative;z-index:0}.x-inner,.x-body{width:100%;height:100%}.x-sized{position:relative}.x-innerhtml{width:100%}.x-layout-box{display:flex;display:-webkit-box;display:-ms-flexbox}.x-layout-box.x-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{min-width:0 !important}.x-layout-box.x-vertical{-webkit-box-orient:vertical !important;-ms-flex-direction:column !important;flex-direction:column !important}.x-layout-box.x-vertical>.x-layout-box-item.x-flexed{min-height:0 !important}.x-layout-box>.x-layout-box-item{display:flex !important;display:-webkit-box !important;display:-ms-flexbox !important}.x-layout-box.x-align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.x-layout-box.x-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-layout-box.x-align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.x-layout-box.x-align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.x-layout-box.x-pack-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.x-layout-box.x-pack-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-layout-box.x-pack-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.x-layout-box.x-pack-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-layout-box-item.x-sized>.x-inner,.x-layout-box-item.x-sized>.x-body,.x-layout-box-item.x-sized>.x-dock-outer{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-webkit .x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{width:0 !important}.x-webkit .x-layout-box.x-vertical>.x-layout-box-item.x-flexed{height:0 !important}.x-firefox .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-firefox .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px;min-height:0;min-width:0}.x-firefox .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-layout-card{position:relative;overflow:hidden}.x-layout-card-perspective{-webkit-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.x-layout-card-item-container{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-card-item{position:absolute;top:0;right:0;bottom:0;left:0;position:absolute !important}.x-dock{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock>.x-dock-body{overflow:hidden}.x-dock.x-sized,.x-dock.x-sized>.x-dock-body>*,.x-dock.x-sized>.x-dock-body>.x-body>.x-inner{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-sized>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-unsized,.x-dock.x-stretched{height:100%}.x-dock.x-unsized>.x-dock-body,.x-dock.x-stretched>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0;min-width:0}.x-dock.x-unsized>.x-dock-body>*,.x-dock.x-stretched>.x-dock-body>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-dock-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-dock.x-dock-horizontal>.x-dock-item{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-inner,.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-body{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-ie .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-ie .x-has-width>.x-dock.x-unsized.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-stretched.x-container{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-stretched.x-container>.x-inner,.x-stretched.x-container>.x-body,.x-stretched.x-container>.x-body>.x-inner{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0px}.x-layout-fit.x-stretched>.x-layout-fit-item{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-layout-fit{position:relative}.x-layout-fit-item.x-sized{position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-fit-item.x-unsized{width:100%;height:100%}.x-ie .x-stretched>.x-inner,.x-ie .x-stretched>.x-body{min-height:inherit}.x-center,.x-centered{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-center>*,.x-centered>*{position:relative}.x-center>.x-floating,.x-centered>.x-floating{position:relative !important}.x-floating{position:absolute !important}.x-layout-float{overflow:hidden}.x-layout-float>.x-layout-float-item{float:left}.x-layout-float.x-direction-right>.x-layout-float-item{float:right}@-webkit-keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}@keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}.x-paint-monitored{position:relative}.x-paint-monitor{width:0 !important;height:0 !important;visibility:hidden}.x-paint-monitor.cssanimation{-webkit-animation-duration:0.0001ms;-webkit-animation-name:x-paint-monitor-helper;animation-duration:0.0001ms;animation-name:x-paint-monitor-helper}.x-paint-monitor.overflowchange{overflow:hidden}.x-paint-monitor.overflowchange::after{content:'';display:block;width:1px !important;height:1px !important}.x-size-monitored{position:relative}.x-size-monitors{position:absolute;left:0;top:0;width:100%;height:100%;visibility:hidden;overflow:hidden}.x-size-monitors>*{width:100%;height:100%;overflow:hidden}.x-size-monitors.scroll>*.shrink::after{content:'';display:block;width:200%;height:200%;min-width:1px;min-height:1px}.x-size-monitors.scroll>*.expand::after{content:'';display:block;width:100000px;height:100000px}.x-size-monitors.overflowchanged>*.shrink>*{width:100%;height:100%}.x-size-monitors.overflowchanged>*.expand>*{width:200%;height:200%}.x-size-change-detector{visibility:hidden;position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;overflow:hidden}.x-size-change-detector>*{visibility:hidden}.x-size-change-detector-shrink>*{width:200%;height:200%}.x-size-change-detector-expand>*{width:100000px;height:100000px}.x-translatable{position:absolute !important;top:500000px !important;left:500000px !important;overflow:visible !important;z-index:1}.x-translatable-hboxfix{position:absolute;min-width:100%;top:0;left:0}.x-translatable-hboxfix>.x-translatable{position:relative !important}.x-translatable-container{overflow:hidden;width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-translatable-container::before{content:'';display:block;width:1000000px;height:1000000px;visibility:hidden}.x-button{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;border:1px solid #ccc;position:relative;overflow:hidden;z-index:1}.x-button .x-button-icon{position:relative;background-repeat:no-repeat;background-position:center}.x-button .x-button-icon.x-shown{display:block}.x-button .x-button-icon.x-hidden{display:none}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-iconalign-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-button-label,.x-badge,.x-hasbadge .x-badge{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;text-overflow:ellipsis;text-align:center;display:block;overflow:hidden}.x-badge{background-color:#ccc;border:1px solid #aaa;z-index:2;position:absolute !important;width:auto;font-size:.6em;right:0;top:0;max-width:95%;display:inline-block}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;-webkit-text-size-adjust:none;margin:0;cursor:default}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}*:focus{outline:none}body.x-desktop{overflow:hidden}@-ms-viewport{width:device-width}*,*:after,*:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;-ms-touch-action:none;-moz-user-select:-moz-none}input,textarea{-webkit-user-select:text;-ms-user-select:auto;-moz-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;-ms-user-select:auto;line-height:1.5;color:#333;font-size:.8em;padding:1.2em}.x-html body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%}.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6{font-weight:normal;color:#222}.x-html h1 img,.x-html h2 img,.x-html h3 img,.x-html h4 img,.x-html h5 img,.x-html h6 img{margin:0}.x-html h1{font-size:3em;line-height:1;margin-bottom:0.50em}.x-html h2{font-size:2em;margin-bottom:0.75em}.x-html h3{font-size:1.5em;line-height:1;margin-bottom:1.00em}.x-html h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}.x-html h5{font-size:1em;font-weight:bold;margin-bottom:1.50em}.x-html h6{font-size:1em;font-weight:bold}.x-html p{margin:0 0 1.5em}.x-html p .left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{float:right;margin:1.5em 0 1.5em 1.5em;padding:0}.x-html a{text-decoration:underline;color:#06c}.x-html a:visited{color:#004d99}.x-html a:focus{color:#09f}.x-html a:hover{color:#09f}.x-html a:active{color:#bf00ff}.x-html blockquote{margin:1.5em;color:#666;font-style:italic}.x-html strong,.x-html dfn{font-weight:bold}.x-html em,.x-html dfn{font-style:italic}.x-html sup,.x-html sub{line-height:0}.x-html abbr,.x-html acronym{border-bottom:1px dotted #666666}.x-html address{margin:0 0 1.5em;font-style:italic}.x-html del{color:#666}.x-html pre{margin:1.5em 0;white-space:pre}.x-html pre,.x-html code,.x-html tt{font:1em "andale mono","lucida console",monospace;line-height:1.5}.x-html li ul,.x-html li ol{margin:0}.x-html ul,.x-html ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}.x-html ul{list-style-type:disc}.x-html ol{list-style-type:decimal}.x-html dl{margin:0 0 1.5em 0}.x-html dl dt{font-weight:bold}.x-html dd{margin-left:1.5em}.x-html table{margin-bottom:1.4em;width:100%}.x-html th{font-weight:bold}.x-html thead th{background:#c3d9ff}.x-html th,.x-html td,.x-html caption{padding:4px 10px 4px 5px}.x-html table.striped tr:nth-child(even) td,.x-html table tr.even td{background:#e5ecf9}.x-html tfoot{font-style:italic}.x-html caption{background:#eee}.x-html .quiet{color:#666}.x-html .loud{color:#111}.x-html ul li{list-style-type:circle}.x-html ol li{list-style-type:decimal}@-webkit-keyframes x-loading-spinner-rotate{0%{-webkit-transform:rotate(0deg)}8.32%{-webkit-transform:rotate(0deg)}8.33%{-webkit-transform:rotate(30deg)}16.65%{-webkit-transform:rotate(30deg)}16.66%{-webkit-transform:rotate(60deg)}24.99%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.32%{-webkit-transform:rotate(90deg)}33.33%{-webkit-transform:rotate(120deg)}41.65%{-webkit-transform:rotate(120deg)}41.66%{-webkit-transform:rotate(150deg)}49.99%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.32%{-webkit-transform:rotate(180deg)}58.33%{-webkit-transform:rotate(210deg)}66.65%{-webkit-transform:rotate(210deg)}66.66%{-webkit-transform:rotate(240deg)}74.99%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.32%{-webkit-transform:rotate(270deg)}83.33%{-webkit-transform:rotate(300deg)}91.65%{-webkit-transform:rotate(300deg)}91.66%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(330deg)}}@keyframes x-loading-spinner-rotate{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.32%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.33%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.65%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.66%{-ms-transform:rotate(60deg);transform:rotate(60deg)}24.99%{-ms-transform:rotate(60deg);transform:rotate(60deg)}25%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.32%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.33%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.65%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.66%{-ms-transform:rotate(150deg);transform:rotate(150deg)}49.99%{-ms-transform:rotate(150deg);transform:rotate(150deg)}50%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.32%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.33%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.65%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.66%{-ms-transform:rotate(240deg);transform:rotate(240deg)}74.99%{-ms-transform:rotate(240deg);transform:rotate(240deg)}75%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.32%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.33%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.65%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.66%{-ms-transform:rotate(330deg);transform:rotate(330deg)}100%{-ms-transform:rotate(330deg);transform:rotate(330deg)}}@font-face{font-family:"Pictos";src:url('data:application/font-woff;base64,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') format('woff'),url('data:font/truetype;base64,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AQIFAw4BAQQCCAEBBAIBAQMDAgYGAgECAgEBAQICAQ0DAQICBQEMBwIFAgICBgMCBQQCBAQMAQMBAQEBBAUBAwkBAwEBAgEDAgIBBAICBgECBgMCBQIGCAUFAQUIAQMFAQELAQEGAQIDAQEBBAEBAQMCBgIEAwQGAgQHAgMDAQIGAQIBAQICAQQBBQECGwQCAQUDAQIDAgcFCAMBBgMEAwQEBAMDAQIDAwUCAgEIBgIKAQ0EBAIGAwQMAwELAQcJCAIDAgYDAQcBBwYDBAYCAgUBAwEBCwcIAgEKIceMUo4vBwIDBQUBBAIKAgEBAQMBAQMCBQIDAgJFAhkBAgEBBwQHAgoBAQUCAwMDAQIJAQUClAEFBQsCCAEDBAcBBAUBAwMBAScCBgEDAwIEAQIBBQEHAgMCAgMMBAMBAQIHARYCAgMEBQQCAgEBBAEBAwYBAwOgAQPKAgMBAQMCAQUCAQEWAgcCBQFxBgoGBQEDAgICCQEJAQ4EAgEBAQQCAgECBAECAQEBAQ8HARMPAgECAQUEAQMFAQIBAQQBBAQGBgMDCwENCgoBBwoDCQQIBAQDAwQEAgECAQIDAgEDAwQCBAEEAQIEAQMDAwUJAQgNAQMICAoQBgIICQYBAgICAQUCBQYGAQUBAgoDAQH+YwMEAgEBEQQHAgMBAggEBQUGIwICAQENAQcBBwIBCAIfBAUGAgEBJgMEAgIBARABAQF9AgICuvb+pPb2AVwzAwMFAggECwIBBAIECQIBAgECBgECAgIEBwECAQMEAgX+wFprEwkCCQIBAwgEBAMHAgQBBAEHAQMDBQoEAQMEAQIBAQIIAgEEAgYCAgMFAQcEDAUMDgIKAQsECQQBAgkBCQICAQEBAQIDAgwDAQQDBAcBAQEKAQQKAQIBBwQCBgkBBQEFAQECAwYDDAMEAgcBAgIBAQESAgMEAwEBAQQJAQgKAQICAQQDBgIEBgYBBAYFAQIBAgECAQIGBAgBAwMCAgEDAQsDAgYCAwoCAgcEAQIGBQ0IBAMCAgIBAQIIBAICCQIEAgECBQQCAQM4QFsBAwEGAgcCBgIBAQICBAEBAQIBAQECAQICAQIDBAMCBAMKBwEKAQoDAQICCwICAQQCBQEBAQEBCwIHBAECAQEBAQIPCAQBAgMEBgoCAQUDAQICAgYGAgQFAgEJAwECAQ0DAQMCBgQBCQMC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') format('truetype'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIHdlYmZvbnQgZ2VuZXJhdGVkIGJ5IEZvbnQgU3F1aXJyZWwuCkRlc2lnbmVyICAgIDogRHJldyBXaWxzb24KRm91bmRyeSAgICAgOiBEcmV3IFdpbHNvbgpGb3VuZHJ5IFVSTCA6IGh0dHBwaWN0b3NkcmV3d2lsc29uY29tCjwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0id2ViZm9udEl5Zlpic2VGIiBob3Jpei1hZHYteD0iOTIwIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSIxMDAwIiBhc2NlbnQ9Ijc1MCIgZGVzY2VudD0iLTI1MCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPGdseXBoIHVuaWNvZGU9IiAiICBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MDk7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4YTA7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iISIgaG9yaXotYWR2LXg9IjkzNiIgZD0iTTg2NSAxMDNxMzcgLTYyIDExIC0xMDYuNXQtOTggLTQ0LjVoLTYyMXEtNzIgMCAtOTcuNSA0NC41dDExLjUgMTA2LjVsMzEwIDUzNHEzNiA2MiA4Ny41IDYydDg3LjUgLTYyek00NzEgNDZxMjMgMCAzOC41IDE2dDE1LjUgMzh0LTE1LjUgMzcuNXQtMzguNSAxNS41cS0yMiAwIC0zNy41IC0xNS41dC0xNS41IC0zNy41dDE1LjUgLTM4dDM3LjUgLTE2ek01MDkgMTg3bDI2IDMwOGgtMTI3bDI2IC0zMDhoNzV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjI7IiBob3Jpei1hZHYteD0iODY1IiBkPSJNNTIgMjg5cTEgNjUgNy41IDExNXQyNi41IDEwMS41dDUzLjUgODYuNXQ5MC41IDU4LjV0MTM1IDI4LjV2LTE1N3EtNjYgMCAtOTUgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNXEtMTggMCAtMzEgMTN0LTEzIDMxdjI1OHY3ek00OTMgMjg5cTAgNjUgNyAxMTV0MjcgMTAxLjV0NTMuNSA4Ni41dDkwLjUgNTguNXQxMzUgMjguNXYtMTU3IHEtNjcgMCAtOTYgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNHEtMTkgMCAtMzIgMTN0LTEzIDMxdjI1OHEwIDUgMSA3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiMiIGhvcml6LWFkdi14PSI3NDgiIGQ9Ik03MDUgNDgycTkgLTE0IC04IC0xNGgtNDh2LTU2N3EwIC03IC01IC0xMnQtMTIgLTVoLTUxM3EtNyAwIC0xMiA1dC01IDEydjU2N2gtNTJxLTcgMCAtOS41IDR0MS41IDEwbDMxIDQ2cTkgMTQgMjcgMTRoNzV2NjZxMCAyMCAxMiAzMGw0OCA0OXExMiAxMiAzMCAxMmgyMTZxMTggMCAzMCAtMTJsNTIgLTUycTEzIC0xMyAxMyAtMzB2LTYzaDcxcTE4IDAgMjcgLTE0ek0yNDggNTQ2di00aDI1NHY0djI4cTAgMjAgLTEyIDMwbC05IDEwIHEtMTIgMTIgLTMwIDEyaC0xNTVxLTE4IDAgLTMwIC0xMmwtNiAtNnEtMTIgLTEyIC0xMiAtMzB2LTMyek01NzYgNDUwcTAgMTYgLTE2IDE4aC0yNzloLTg5cS03IDAgLTEyIC01LjV0LTUgLTEyLjV2LTQ3NnEwIC03IDUgLTEydDEyIC01aDM2N3E3IDAgMTIgNXQ1IDEydjQ3NnpNMjYzIDQxOHE3IDAgMTIuNSAtNXQ1LjUgLTEydi0zNzlxMCAtNyAtNS41IC0xMnQtMTIuNSAtNWgtMjFxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTIgdDEyLjUgNWgyMXpNMzY0IDVxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTJ0MTIuNSA1aDIxcTcgMCAxMiAtNXQ1IC0xMnYtMzc5cTAgLTcgLTUgLTEydC0xMiAtNWgtMjF6TTQ4NSA1cS03IDAgLTEyIDV0LTUgMTJ2Mzc5cTAgNyA1IDEydDEyIDVoMjJxNyAwIDEyIC01dDUgLTEydi0zNzlxMCAtNyAtNSAtMTJ0LTEyIC01aC0yMnoiIC8+CjxnbHlwaCB1bmljb2RlPSIkIiBob3Jpei1hZHYteD0iODkzIiBkPSJNNTAzIDI4M2gtMTA4bC0xNiA2OGgxMjR2LTY4ek02ODQgMzUxbC0xOCAtNjhoLTEwNGwxIDY4aDEyMXpNNDAwIDExOHEyOCAwIDQ4LjUgLTIwdDIwLjUgLTQ5dC0yMC41IC00OXQtNDguNSAtMjB0LTQ4LjUgMjB0LTIwLjUgNDl0MjAuNSA0OXQ0OC41IDIwek02NTkgMTE4cTI5IDAgNDkgLTIwdDIwIC00OXQtMjAgLTQ5dC00OSAtMjB0LTQ5IDIwdC0yMCA0OXQyMCA0OXQ0OSAyMHpNODMzIDUxNnEyNSAtNyAyNSAtMzNxMCAtMyAtMiAtOSBsLTg4IC0yOTNxLTcgLTI1IC0zMiAtMjVoLTQxN3EtMTIgMCAtMjEuNSA3LjV0LTExLjUgMTguNWwtODEgMzI3aC0xNDlxLTE0IDAgLTI0IDEwdC0xMCAyNHQxMCAyNHQyNCAxMGgxNzZxMjYgMCAzMyAtMjZsMTggLTczaDUwM2w1IDE1cTYgMjQgMzIgMjRxNyAwIDEwIC0xek03MTIgMjMxbDU0IDE3OWgtNDY2bDQ1IC0xODZoMzY1eiIgLz4KPGdseXBoIHVuaWNvZGU9IiUiIGhvcml6LWFkdi14PSI5MDMiIGQ9Ik04NjcgMjc3cTAgLTc5IC0zNy41IC0xNDl0LTEwMi41IC0xMTdsMTEgLTk2di00cTAgLTE3IC0xMSAtMzBxLTEzIC0xNSAtMzQgLTE1aC0xNDhxLTIxIDAgLTM0IDE1cS0xMSAxMyAtMTEgMzB2NWwyIDE4cS02IC0xIC0xOCAtMWgtMTBsMiAtMTd2LTVxMCAtMTcgLTExIC0zMHEtMTIgLTE1IC0zNCAtMTVoLTE0OHEtMjEgMCAtMzQgMTVxLTExIDEzIC0xMSAzMHY1bDExIDkwcS04NiA2MCAtMTI0IDE1M2wtNDQgLTRoLTRxLTE4IDAgLTMwIDEyIHEtMTUgMTIgLTE1IDMzdjE1MnEwIDIxIDE1IDMzcTEyIDEyIDMwIDEyaDRsNDMgLTRxMzQgODUgMTA3IDE0MWwtMiAxMTB2MXYxcTAgMjggMjUgNDNxMTEgNyAyNiA3cTE0IDAgMjUgLTdsMTI4IC03MnEyNSAzIDUxIDNxMTYwIDAgMjcwIC05OXExMTMgLTEwMCAxMTMgLTI0NHpNNjgxIDQ3cTYxIDQxIDk1LjUgMTAxdDM0LjUgMTI5cTAgMTE4IC05NCAyMDJxLTk2IDg1IC0yMzMgODVxLTI5IDAgLTUzIC00bC05IC0xbC0xMzYgNzdsMiAtMTMwIGwtMTIgLThxLTc5IC01NyAtMTA2IC0xNDRsLTcgLTIybC03NSA3di0xMjdsNzUgOGw3IC0yMnEzMyAtOTYgMTI0IC0xNTVsMTUgLTlsLTEzIC0xMTJoMTIzbC05IDc0bDM1IC00cTEzIC0yIDM5IC0ycTI0IDAgNDcgM2wzNiA0bC05IC03NWgxMjNsLTE1IDExNnpNNTAxIDUyMWw3IC0xcTcgMCAxOCAtMnQyNiAtNXQzMiAtOXQzNSAtMTR0MzcgLTIwLjV0MzYgLTI4LjVxOCAtNyA4IC0xOXQtOCAtMjBxLTggLTkgLTIwIC05cS0xMSAwIC0xOSA4IHEtMjQgMjMgLTU5IDM4LjV0LTU1LjUgMTkuNXQtMzUuNSA1aC00cS0xMSAxIC0xOSA5LjV0LTggMTkuNXExIDEyIDkuNSAyMHQxOS41IDh6TTIzMSAzODRxMTkgMjAgNDEgMjZ0MzQgLTVxMTEgLTExIDYuNSAtMzN0LTIzLjUgLTQydC00MC41IC0yNnQtMzMuNSA1dC03IDMzdDIzIDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDI2OyIgaG9yaXotYWR2LXg9IjczMiIgZD0iTTQ2NSA0MDVoMjUwdi0xOThoLTI1MHYtMjUwaC0xOTh2MjUwaC0yNTB2MTk4aDI1MHYyNTBoMTk4di0yNTB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJyIgaG9yaXotYWR2LXg9IjkwOCIgZD0iTTI2NSAxMzlxNzggNzggMTg4LjUgNzh0MTg4LjUgLTc4cTEgMCAxIC0xbC01NSAtNTVxLTEgMCAtMSAxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1ek0xNDAgMjY0cTg1IDg1IDE5OS41IDExNS41dDIyOC41IDB0MTk5IC0xMTUuNWwxIC0xbC01NiAtNTZxMCAxIC0xIDFxLTEwNiAxMDYgLTI1Ny41IDEwNi41dC0yNTcuNSAtMTA1LjV6TTg5MyAzOTJxMCAtMiAyIC0ybC01NiAtNTZsLTIgMnEtMTA0IDEwNCAtMjQ0IDE0MXQtMjc5LjUgMCB0LTI0My41IC0xNDFxLTEgMCAtMSAtMWwtNTYgNTZsMSAxcTEyMCAxMTkgMjgwIDE2MS41dDMxOS41IDB0Mjc5LjUgLTE2MS41ek0zOTIgMTNxMjYgMjUgNjMgMjV0NjMgLTI1bC02MyAtNjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKCIgaG9yaXotYWR2LXg9IjY3MSIgZD0iTTU1MCAzNTloNzd2LTQzN2gtNTgydjQzN2g3NXYxMjhxMCA4NyA2MiAxNDl0MTQ5IDYyaDRoNHE4OCAwIDE0OS41IC02MnQ2MS41IC0xNDl2LTEyOHpNNDAyIDJsLTMyIDE0MXEzMiAyMCAzMiA1N3EwIDI4IC0xOSA0N3QtNDcgMTlxLTI3IDAgLTQ2LjUgLTE5dC0xOS41IC00N3EwIC0zOCAzMyAtNTZsLTMzIC0xNDJoMTMyek00NDUgMzU5djEyOHEwIDQzIC0zMSA3NHQtNzUgMzFoLTNoLTVxLTQzIDAgLTc0IC0zMXQtMzEgLTc0di0xMjggaDIxOXoiIC8+CjxnbHlwaCB1bmljb2RlPSIpIiBob3Jpei1hZHYteD0iODg5IiBkPSJNNjQ1IDY5OHE4OCAwIDE1MCAtNjEuNXQ2MiAtMTQ5LjV2LTEyOGgtMTA2djI5bDM2IDM0djEzaC0zNnY1MnEwIDQ0IC0zMSA3NC41dC03NSAzMC41aC0yaC01cS00NCAwIC03NSAtMzAuNXQtMzEgLTc0LjV2LTEyOGg3N3YtNDM4aC01ODR2NDM4aDQwMXYxMjhxMCA4OCA2MiAxNDkuNXQxNTAgNjEuNWgzaDR6TTM4MiAwbC0zMyAxNDJxMzMgMjAgMzMgNTdxMCAyOCAtMTkuNSA0Ny41dC00Ni41IDE5LjVxLTI4IDAgLTQ3LjUgLTE5LjUgdC0xOS41IC00Ny41cTAgLTM3IDMzIC01N2wtMzMgLTE0MmgxMzN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKiIgaG9yaXotYWR2LXg9Ijc3NyIgZD0iTTczNyA0OTBsLTE5NSAtMTk1bDE5NSAtMTk2bC0xNTQgLTE1M2wtMTk1IDE5NWwtMTk1IC0xOTVsLTE1NCAxNTNsMTk1IDE5NmwtMTk1IDE5NWwxNTQgMTU0bDE5NSAtMTk1bDE5NSAxOTV6IiAvPgo8Z2x5cGggdW5pY29kZT0iKyIgZD0iTTQ2MCA3MDJxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTcwOSAyNjJ2NDFxMCAxNSAtMTAuNSAyNS41dC0yNS41IDEwLjVoLTEyMXEtMTUgMCAtMjUuNSAxMXQtMTAuNSAyNnYxMjFxMCAxNSAtMTEgMjUuNXQtMjYgMTAuNWgtNDFxLTE1IDAgLTI1LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTEyMXEwIC0xNSAtMTEgLTI2dC0yNiAtMTFoLTEyMCBxLTE2IDAgLTI2LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTQxcTAgLTE1IDEwLjUgLTI2dDI2LjUgLTExaDEyMHExNSAwIDI2IC0xMC41dDExIC0yNS41di0xMjFxMCAtMTUgMTAuNSAtMjUuNXQyNS41IC0xMC41aDQxcTE1IDAgMjYgMTAuNXQxMSAyNS41djEyMXEwIDE1IDEwLjUgMjUuNXQyNS41IDEwLjVoMTIxcTE1IDAgMjUuNSAxMXQxMC41IDI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiwiIGhvcml6LWFkdi14PSI5MTUiIGQ9Ik00NTggNzAxcTE3MyAwIDI5NSAtMTIyLjV0MTIyIC0yOTUuNXEwIC0xMDQgLTQ2IC0xOTFxLTU5IC0xMTUgLTE3MiAtMTc2cS05NCAtNTEgLTE5OSAtNTFxLTEwMSAwIC0xOTQgNDhxLTExNCA2MCAtMTc1IDE3M3EtNDkgOTMgLTQ5IDE5N3EwIDE3MyAxMjIuNSAyOTUuNXQyOTUuNSAxMjIuNXpNNzYwIDIwM3ExMSA0MSAxMSA4MHEwIDEzMCAtOTIgMjIydC0yMjEgOTJxLTEzMCAwIC0yMjIgLTkydC05MiAtMjIycTAgLTM5IDEyIC04NSBxMyAtOSA5IC0yNXEyMSA2IDQ1IDZxNjUgMCAxMTEuNSAtNDZ0NDYuNSAtMTExcTAgLTE3IC01IC0zN3E0IC0yIDEyIC00cTQyIC0xMSA4MyAtMTFxNDUgMCA4NyAxMnEyIDAgNS41IDJ0NS41IDJxLTUgMjIgLTUgNDBxMCA2NCA0Ni41IDExMC41dDExMC41IDQ2LjVxMjMgMCA0NCAtNnE1IDE1IDggMjZ6TTQ5OCAzMzNxMjUgLTE5IDI1IC01MHEwIC0xNCAtNSAtMjRxLTE2IC0zOSAtNTggLTM5cS0xMSAwIC0yNCA1cS0zOSAxNiAtMzkgNTggcTAgMSAwLjUgNHQwLjUgNWwtNTYgMjQ1bDIxIDl6TTQ3OCA1NjV2LTk1aC0zOXY5NWgzOXpNNjMyIDQ5MGwyNyAtMjdsLTY4IC02OGwtMjcgMjh6TTYyOSAzMDB2MzhoOTZ2LTM4aC05NnpNMTkyIDMwMHYzOGg5NXYtMzhoLTk1ek0yNDQgNDYzbDI4IDI3bDY3IC02N2wtMjcgLTI4eiIgLz4KPGdseXBoIHVuaWNvZGU9Ii0iIGhvcml6LWFkdi14PSI5MjEiIGQ9Ik00NjEgNjk4cTE3NCAwIDI5NyAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk3IC0xMjMuNXEtMTc1IDAgLTI5OCAxMjMuNXQtMTIzIDI5Ny41dDEyMyAyOTcuNXQyOTggMTIzLjV6TTY5NCAyNTh2MzlxMCAxOSAtMTQgMzN0LTMzIDE0aC0zNzZxLTE5IDAgLTMzIC0xNHQtMTQgLTMzdi0zOXEwIC0yMCAxNCAtMzMuNXQzMyAtMTMuNWgzNzZxMTkgMCAzMyAxMy41dDE0IDMzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iLiIgaG9yaXotYWR2LXg9Ijk0NSIgZD0iTTE0NyAzOTJxMzcgMCA2NCAtMjd0MjcgLTY0cTAgLTM4IC0yNi41IC02NXQtNjQuNSAtMjd0LTY1IDI3dC0yNyA2NXQyNyA2NC41dDY1IDI2LjV6TTQ3MiAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY0LjUgMjd0LTI2LjUgNjVxMCAzNyAyNi41IDY0dDY0LjUgMjd6TTc5OCAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY1IDI3dC0yNyA2NXEwIDM3IDI3IDY0dDY1IDI3eiAiIC8+CjxnbHlwaCB1bmljb2RlPSIvIiBob3Jpei1hZHYteD0iOTEyIiBkPSJNNjkzIDUzN2gxODF2LTEyN3YtMzAxaC0xODF2LTUzbC0xMzYgLTEzNmgtMzM2djE4OWgtMTgxdjMwMXYxMjdoMTgxdjE2M2g0NzJ2LTE2M3pNODE2IDQ4MGgtMTA1di01M2gxMDV2NTN6TTI3NSA2NDZ2LTEwOWgzNjR2MTA5aC0zNjR6TTUwMiAtMjZ2MTM2aDEzN3YxMzF2NTVoNTR2LTEyOWg2N3YxOTdoLTYwNHYtMTk3aDY1djExMXYxOGg1NHYtNTV2LTI2N2gyMjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iMCIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTY0MyAxNjFsMzkgLTQwbDI4IC0yN3EtNDcgLTYwIC0xMTYuNSAtOTQuNXQtMTQ4LjUgLTM0LjVxLTE0MCAwIC0yMzguNSA5OHQtOTkuNSAyMzhoLTExaC0yaC02N2wxMjYgMTI2bDEyNyAtMTI2aC01MWgtMjhxMCAtMTAwIDcxLjUgLTE3MXQxNzIuNSAtNzFxNjAgMCAxMTIuNSAyNy41dDg1LjUgNzQuNXpNODEwIDMwMWg1MmwtMTI3IC0xMjZsLTEyNiAxMjZoNTBoMzB2MnEwIDEwMSAtNzEuNSAxNzIuNXQtMTcyLjUgNzEuNSBxLTYxIDAgLTExMy41IC0yOC41dC04Ni41IC03Ni41bC0zOSAzOWwtMjggMjhxNDcgNjEgMTE2LjUgOTZ0MTUwLjUgMzVxMTM5IDAgMjM4IC05OXQ5OSAtMjM4di0yaDI4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjEiIGhvcml6LWFkdi14PSI3NDMiIGQ9Ik02ODggMjM1aDI5di0zMHEwIC0xNDMgLTEwMC41IC0yNDMuNXQtMjQzLjUgLTEwMC41dC0yNDQgMTAxdC0xMDEgMjQzcTAgMTQzIDEwMSAyNDR0MjQ0IDEwMXExNiAwIDI1IC0xdjc5djcxbDQ5IC01MGwxNTcgLTE1N2wyMSAtMjFsLTIxIC0yMGwtMTU3IC0xNTdsLTQ5IC01MHY3MHY4OHEtMTggMiAtMjUgMnEtODMgMCAtMTQxIC01OHQtNTggLTE0MXEwIC04MiA1OC41IC0xNDB0MTQwLjUgLTU4dDE0MCA1OHQ1OCAxNDB2MzBoMzBoODd6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjIiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NTkgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjNxLTE3MyAwIC0yOTYgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk2IDEyM3pNNzI4IDM5MnE2IDYgNiAxNXQtNiAxNmwtNTUgNTRxLTYgNiAtMTUgNnQtMTYgLTZsLTI0MyAtMjQ0cS0xNSAtMTYgLTMxIDBsLTg4IDg4cS0xNiAxNiAtMzEgMGwtNTUgLTU0cS02IC03IC02IC0xNnQ2IC0xNWwxMzkgLTE0MHExNSAtMTUgMzcgLTE1aDI2cTIwIDAgMzcgMTV6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjMiIGhvcml6LWFkdi14PSI4NjgiIGQ9Ik0yMiAyMzlxLTEwIDEwIC0xMCAyNHQxMCAyNGw4MyA4M3ExMCAxMCAyMy41IDEwdDIzLjUgLTEwbDEzNiAtMTM1cTEwIC0xMCAyMy41IC0xMHQyMy41IDEwbDM3MSAzNzJxMTAgMTAgMjMuNSAxMHQyMy41IC0xMGw4MyAtODJxMTAgLTEwIDEwIC0yMy41dC0xMCAtMjMuNWwtNDUwIC00NTFxLTI0IC0yNCAtNTcgLTI0aC0zOXEtMzIgMCAtNTYgMjR6IiAvPgo8Z2x5cGggdW5pY29kZT0iNCIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTU5IDcwMGw3MDIgLTM1MWwtNzAyIC0zNTB2NzAxeiIgLz4KPGdseXBoIHVuaWNvZGU9IjUiIGhvcml6LWFkdi14PSI4MTYiIGQ9Ik01OSAxdjY5OGgyNjJ2LTY5OGgtMjYyek00OTUgNjk5aDI2MnYtNjk4aC0yNjJ2Njk4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjYiIGhvcml6LWFkdi14PSI4MTciIGQ9Ik03NTggMmgtNjk5djY5OGg2OTl2LTY5OHoiIC8+CjxnbHlwaCB1bmljb2RlPSI3IiBob3Jpei1hZHYteD0iOTIyIiBkPSJNNDIzIDQxN3YxODJsNDg1IC0yNDNsLTQ4NSAtMjQydjE4MWwtMzY0IC0xODF2NDg1eiIgLz4KPGdseXBoIHVuaWNvZGU9IjgiIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik01MDAgMjk1di0xODJsLTQ4NiAyNDNsNDg2IDI0MnYtMTgybDM2MyAxODJ2LTQ4NXoiIC8+CjxnbHlwaCB1bmljb2RlPSI5IiBkPSJNNDYwIDcwMHExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzdC0yOTcgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk3IDEyM3pNMjk4IDY0bDQzMSAyMTZsLTQzMSAyMTZ2LTQzMnoiIC8+CjxnbHlwaCB1bmljb2RlPSI6IiBob3Jpei1hZHYteD0iODAxIiBkPSJNNjcxIDEwMGwxMDUgLTEwMnEwIC0xNiAtMTIgLTI4LjV0LTI5IC0xMi41aC0yNDJxMSAtNCAxIC0xMnEwIC0zOSAtMjcuNSAtNjYuNXQtNjYuNSAtMjcuNXQtNjYuNSAyNy41dC0yNy41IDY2LjVxMCAyIDAuNSA2dDAuNSA2aC0yNDFxLTE2IDAgLTI4LjUgMTIuNXQtMTIuNSAyOC41bDEwNSAxMDJxLTEgOCAtMSAyNXYyMDhxMCA4OCA1MC41IDE1OHQxMzAuNSA5OHEtNCAxMSAtNCAyNnEwIDM5IDI3LjUgNjYuNXQ2Ni41IDI3LjUgdDY2LjUgLTI3LjV0MjcuNSAtNjYuNXEwIC0xNCAtMyAtMjZxODAgLTI4IDEzMC41IC05OC41dDUwLjUgLTE1Ny41di0yMDhxMCAtMTcgLTEgLTI1ek0zNDggNjE1cTAgLTUgMiAtMTVxMjggNSA1MCA1cTIzIDAgNTAgLTVxMyA4IDMgMTVxMCAyMiAtMTUuNSAzN3QtMzcuNSAxNXQtMzcgLTE1dC0xNSAtMzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iOyIgaG9yaXotYWR2LXg9Ijg4NyIgZD0iTTI5OSA0MThsLTQyIC00NHEtNCAtNSAtMTEgLTEyLjVsLTEyLjUgLTEzLjVsLTEwLjUgLTExcS0xOCAxNiAtMjcgMjNxLTQ5IDQwIC04MSA0MGgtMTAxdjExMmgxMDFxNTkgLTEgMTE4IC00MXEzMyAtMjEgNjYgLTUzek0zOTkgMTU2bDQ0IDQ3bDMyIDM0cTE2IC0xNCAyNiAtMjJxNTIgLTQyIDg0IC00MGg4NnY5NGwxNzUgLTE0OGwtMTc1IC0xNDZ2ODhoLTg2cS01NiAwIC0xMjAgNDBxLTI3IDE3IC02NiA1M3pNNTgyIDQwMCBxLTIzIDAgLTU2IC0yMnEtMzUgLTIzIC03OCAtNjhxLTE5IC0xOSAtNTQuNSAtNTcuNWwtNjYuNSAtNjkuNXQtNjAgLTU1cS04MCAtNjQgLTE1NCAtNjVoLTk5djExMmg5OXEyNiAwIDU5IDIycTI5IDE4IDc5IDY4cTUgNSA3MyA3Ny41dDEwNyAxMDQuNXE4MSA2NCAxNTIgNjVoODh2OTJsMTc1IC0xNDdsLTE3NSAtMTQ3djkwaC04OGgtMXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gzYzsiIGhvcml6LWFkdi14PSIzOTUiIGQ9Ik0xMTUgNDEwbDIyMiAyMjN2LTY2OGwtMjIyIDIyMmgtMTEydjIyM2gxMTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iPSIgaG9yaXotYWR2LXg9Ijk0NyIgZD0iTTg5NiAzNzl2LTE3NmwtNjMgLTI1di0xMDhoLTc3M3Y0NDJoNzczdi0xMDl6TTc2MCAxNDR2Mjk0aC02MjZ2LTI5NGg2MjZ6TTM3MyAzOTBsMjIyIC0xOThoLTQxM3YxOThoMTkxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDNlOyIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTEyNiA0MDhsMjIyIDIyM3YtNjY4bC0yMjIgMjIyaC0xMTJ2MjIzaDExMnpNNDM0IDQzOHE3NSAtNTAgNzUgLTE0MHQtNzUgLTEzOWwtMzQgNjdxMzUgMjggMzUgNzJ0LTM1IDcydjJ6TTY4MCAyOThxMCAtOTIgLTQ2IC0xNjguNXQtMTIzIC0xMjAuNWwtMzQgNjZxNTkgMzQgOTQgOTMuNXQzNSAxMjkuNXQtMzUgMTI5LjV0LTk0IDkzLjV2MmwzMyA2NXE3NyAtNDQgMTIzLjUgLTEyMS41dDQ2LjUgLTE2OC41ek01ODcgNzM4IHExMTggLTY2IDE4OC41IC0xODN0NzAuNSAtMjU3dC03MC41IC0yNTd0LTE4OC41IC0xODJsLTMzIDY2cTk5IDU2IDE1OC41IDE1NS41dDU5LjUgMjE3LjV0LTU5LjUgMjE3LjV0LTE1OS41IDE1NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Ij8iIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik00NjEgNzAycTE3NSAwIDI5OCAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk4IC0xMjMuNXEtMTc0IDAgLTI5Ny41IDEyMy41dC0xMjMuNSAyOTcuNXQxMjMuNSAyOTcuNXQyOTcuNSAxMjMuNXpNNDg5IDI5cTE5IDE4IDE5IDQ3dC0xOSA0N3EtMjAgMTcgLTQ5IDE3cS0yOCAwIC00OCAtMTdxLTIwIC0yMCAtMTggLTQ3cS0yIC0yNyAxOCAtNDdxMTkgLTE3IDQ4IC0xN3EzMiAwIDQ5IDE3ek02MDIgMzUxcTEwIDI0IDEwIDYyIHEwIDU4IC00MSA5M3EtMzggMzQgLTEwOCAzNHEtNDkgMCAtODUgLTEycS0zMyAtMTEgLTYzIC0zMWwtOSAtNmw0NiAtODdsMTAgOHEyIDEgMTkgMTFxNyA0IDIzIDEwcTEwIDQgMjMgNnE3IDIgMjEgMnEzMCAwIDM4IC0xMHExMSAtMTEgMTEgLTMxcTAgLTEzIC03IC0yNXEtMTIgLTE2IC0yMSAtMjRxLTQgLTQgLTguNSAtOGwtMTAgLTl0LTkuNSAtOHEtMTcgLTE2IC0zMCAtMzRxLTEyIC0yMCAtMjAgLTQ2cS01IC0yMiAtNSAtNDEgcTAgLTQgMC41IC0xMnQwLjUgLTEybDEgLTExaDExaDg4djEycTAgMjYgOCA0MnE5IDE2IDIxIDMwcTE0IDE0IDI5IDI1dDMyIDMwcTE0IDE3IDI1IDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IkAiIGhvcml6LWFkdi14PSI1MDgiIGQ9Ik0yNTggNzAzcTkyIDAgMTU3LjUgLTY2dDY1LjUgLTE1N3EwIC0xMDcgLTIwMyAtNTQ2bC0yNCAtNTBsLTYzIDEzNXQtMTAxIDI0NC41dC02MyAyMTYuNXEwIDkyIDY1LjUgMTU3LjV0MTU3LjUgNjUuNWg0aDR6TTI1NCAzOTdxNDIgMCA3MiAzMHQzMCA3M3EwIDQyIC0zMCA3MnQtNzIgMzBxLTQzIDAgLTczIC0zMHQtMzAgLTcycTAgLTQzIDMwIC03M3Q3MyAtMzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iQSIgaG9yaXotYWR2LXg9Ijg5MyIgZD0iTTMxNSAyOTlsNzAgLTcwcS0zOCAtMzIgLTg4LjUgLTMwdC04Ni41IDM4bC0xNDQgMTQ0cS0zOCAzNyAtMzggOTF0MzggOTFsOTkgOTlxMzggMzggOTEuNSAzOHQ5MS41IC0zOGwxNDQgLTE0NHEzNiAtMzYgMzcuNSAtODYuNXQtMzAuNSAtODguNWwtNzAgNjlxMTAgMjAgLTYgMzhsLTE0NCAxNDRxLTkgOSAtMjIuNSA5dC0yMi41IC05bC05OSAtOTlxLTEwIC0xMCAtMTAgLTIzdDEwIC0yM2wxNDQgLTE0NHExNiAtMTYgMzYgLTZ6TTcyOCAtOTkgcS0zOCAtMzcgLTkxIC0zN3QtOTEgMzdsLTE0NSAxNDVxLTM1IDM1IC0zNyA4NS41dDMwIDg4LjVsNjkgLTcwcS05IC0yMCA3IC0zNmwxNDQgLTE0NHE5IC0xMCAyMi41IC0xMHQyMi41IDEwbDk5IDk5cTEwIDkgMTAgMjIuNXQtMTAgMjIuNWwtMTQ0IDE0NXEtMTYgMTYgLTM3IDVsLTY5IDcwcTM4IDMyIDg4LjUgMzAuNXQ4Ni41IC0zNy41bDE0NCAtMTQ0cTM3IC0zOCAzNyAtOTEuNXQtMzcgLTkxLjV6TTI2MyA0NjVxMTQgMTQgMzQgMTQgdDM0IC0xNGwyOTUgLTI5NXExNCAtMTQgMTQgLTM0dC0xNCAtMzR0LTM0IC0xNHQtMzQgMTRsLTI5NSAyOTRxLTE0IDE0IC0xNCAzNC41dDE0IDM0LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQiIgaG9yaXotYWR2LXg9Ijg4MSIgZD0iTTczNCAzMTFxLTE0IC0yNyAtNDIgLTUwcS0xMiAtMzAgLTMxLjUgLTU4dC01NC41IC02MHQtOTIuNSAtNTEuNXQtMTI5LjUgLTE5LjVxLTc3IDAgLTE0My41IDIxdC0xMDUuNSA1MXQtNjcgNjB0LTM5IDUxbC0xMSAyMXE1IC0zIDE0LjUgLTYuNXQzOC41IC0xMS41dDU4IC0xMnQ3MCAtMC41dDc4IDE3LjVxLTY0IDI3IC05NiA5MXEtMjEgNDMgLTggNTRxNyA3IDI1IC0xMHE1MyAtNTAgMjEyIC00MXE3IDggMjEgMjZ2NXEwIDY3IDQ3IDExNCB0MTE0IDQ3cTY0IDAgMTEwIC00My41dDUxIC0xMDYuNWwxMDIgLTQ5ek02MjYgNDY5cS0xOSAwIC0zMiAtMTMuNXQtMTMgLTMyLjV0MTMgLTMydDMyIC0xM3QzMi41IDEzdDEzLjUgMzJ0LTEzIDMyLjV0LTMzIDEzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQyIgaG9yaXotYWR2LXg9IjkxMyIgZD0iTTc3MSAzMTdxNDYgLTE4IDc0IC01OS41dDI4IC05Mi41cTAgLTY4IC00OC41IC0xMTYuNXQtMTE2LjUgLTQ4LjVxLTIgMCAtNSAwLjV0LTQgMC41aC00OTRoLTFoLTJxLTY5IDEgLTExNy41IDUwdC00OC41IDExOXEwIDQ1IDIyLjUgODMuNXQ2MC41IDYwLjVxLTYgMTYgLTYgMzVxMCA0NyAzNCA4MXQ4MSAzNHEzOCAwIDcxIC0yNXEzMSA2NCA5MSAxMDN0MTMzIDM5cTEwMyAwIDE3NiAtNzIuNXQ3MyAtMTc2LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkQiIGhvcml6LWFkdi14PSI5MTciIGQ9Ik00NTkgNjk4cTE3MyAwIDI5NS41IC0xMjN0MTIyLjUgLTI5NnQtMTIyLjUgLTI5NS41dC0yOTUuNSAtMTIyLjV0LTI5NiAxMjIuNXQtMTIzIDI5NS41dDEyMyAyOTZ0Mjk2IDEyM3pNNTc0IDI1MnEtMTEgMTIgLTExIDI4dDExIDI4bDEwOSAxMDhxMTEgMTIgMTEgMjguNXQtMTEgMjcuNWwtMzEgMzFxLTEyIDExIC0yOC41IDExdC0yNy41IC0xMWwtMTA4IC0xMDlxLTEyIC0xMSAtMjguNSAtMTF0LTI3LjUgMTFsLTEwOSAxMDkgcS0xMSAxMSAtMjcuNSAxMXQtMjcuNSAtMTFsLTMxIC0zMXEtMTEgLTExIC0xMSAtMjcuNXQxMSAtMjguNWwxMDkgLTEwOHExMSAtMTIgMTEgLTI4dC0xMSAtMjhsLTEwOSAtMTA4cS0xMSAtMTIgLTExIC0yOC41dDExIC0yNy41bDMxIC0zMXExMSAtMTEgMjcuNSAtMTF0MjcuNSAxMWwxMDkgMTA5cTExIDExIDI3LjUgMTF0MjguNSAtMTFsMTA4IC0xMDlxMTEgLTExIDI3LjUgLTExdDI4LjUgMTFsMzEgMzFxMTEgMTEgMTEgMjcuNXQtMTEgMjguNXogIiAvPgo8Z2x5cGggdW5pY29kZT0iRSIgaG9yaXotYWR2LXg9Ijg5NSIgZD0iTTQ0OCA1MzFxNjMgMCAxMjkuNSAtMjMuNXQxMTUuNSAtNTd0ODkuNSAtNjd0NjEuNSAtNTcuNWwyMSAtMjN2LThsLTIyIC0yNC41dC01OS41IC01NC41dC05MiAtNjl0LTExNCAtNTQuNXQtMTMwLjUgLTI0LjV0LTEyOS41IDIzLjV0LTExNS41IDU3dC04OS41IDY3dC02MS41IDU2LjVsLTIxIDI0djlsMjIgMjQuNXQ1OS41IDU0LjV0OTIgNjguNXQxMTQgNTR0MTMwLjUgMjQuNXpNNDQ2IDE1OHE1OCAwIDk4LjUgNDAuNXQ0MC41IDk4LjUgcTAgNTcgLTQwLjUgOTcuNXQtOTguNSA0MC41cS01NyAwIC05Ny41IC00MC41dC00MC41IC05Ny41cTAgLTU4IDQwLjUgLTk4LjV0OTcuNSAtNDAuNXpNNDQ2IDM2MXEyNiAwIDQ1IC0xOXQxOSAtNDV0LTE5IC00NC41dC00NSAtMTguNXQtNDQuNSAxOC41dC0xOC41IDQ0LjV0MTguNSA0NXQ0NC41IDE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IkYiIGhvcml6LWFkdi14PSI3MDQiIGQ9Ik0yMjQgNzAwaDQyMnYtODE4aC01OTN2NjQ2bDE3MSAxNzF2MXpNNTc4IC01MHY2ODJoLTI4NXYtMTcyaC0xNzJ2LTUxMGg0NTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iRyIgZD0iTTQ2MCA2OThxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTczOCA0MDFsLTEgLTNxLTEgLTMgLTEgLTUuNXQyIC0yLjVxMCAtMiAzIC02dDMgLTh2LTExcTEgLTIgNSAtM3ExIC00IDYgLTV0NiAzcS0zIDAgLTIuNSA0LjV0LTAuNSA0LjVxMCAyIC0xIDNxLTIgMiAtMiAzaDdxMCAyIC0yIDV0LTIgNHEtMSAwIC0yLjUgLTF0LTIgLTF0LTAuNSAyIHQtNCA2bC0yIDdxMyAwIDYgMXEtMSAwIDQgMnEtMSAxIC0yIDRxLTIgNCAtNyAycS0yIDAgLTUgLTIuNXQtNSAtMi41ek03MzUgODFxNjMgOTAgNjMgMTk3cTAgMTkgLTEgMjhxLTkgMCAtMTMgMnEtNCAwIC0xNC41IDQuNXQtMTYuNSAyLjVxMCAxIC0xIDFxMiAzIC01IDExcS01IDQgLTcgMHEtMiAtMyA1IC0xMHEwIC0yIDIgLTZxMiAtMSAxIC0zdC0xIC0zcTQgMCA1IDdxMCAtMSAxIC0xcS0yIC0zIDEgLTZ2LTVxMTAgMCAxNCAxMCBxMSAwIDEgLTJ0MSAtM3EzIC0zIDIgLTV0MiAtMnEyIC0xIDIgMXYycTQgLTIgNCAtNnQtNCAtNnEwIC0xIC0xIC0zdC0xIC00cTAgLTYgLTQgLThsLTQgLTJxLTQgLTMgLTggLTUuNXQtNCAtMy41cS0xMiAwIC0xNSAtN3EtNyAwIC0xMSAtNHEtNiAwIC04LjUgNnQtNC41IDZsLTIgNXExIDAgLTEuNSA2bC01LjUgMTN0LTMgOWwtNSAxMHEtMiAxIC03IDEycS04IDQgLTEwIDEzcTEwIDAgMTAgNHEtMSAwIC0yIDFxLTIgMiAxIDJsMyA5IHEwIDEgMSA1LjV0MSA2LjVxLTIgMCAtOCAtMnEwIC0xIC0xLjUgLTAuNXQtMy41IDAuNWwtMyAxcTAgMSAtNi41IDB0LTguNSAycS0yIDIgLTQgMTRxLTEgMyAtOCAzcS0zIDEgLTMuNSAtMXQwLjUgLTVsMSAtNHEyIDAgLTIgLTdxLTEgLTEgLTEgLTJxLTQgMSAtNiA2dC00IDZxLTEgNCAtMyA0cTAgMTAgLTEgMTBsLTMgMXEtNCAyIC01IDNxLTIgMCAtNS41IDMuNXQtNi41IDUuNXQtNCAwbDMgLTZxMiAwIDUgLTQuNXQ3IC0zLjV2LTUgcTMgMSA0LjUgLTEuNXQyLjUgLTIuNXEwIC0xIC0zIDBxLTQgMiAtMyAtMXEyIC02IC00IC05cTAgMTIgLTMgMTJxLTIgMyAtNyA1dC02IDRxLTEgMCAtMy41IDMuNXQtNC41IDQuNXEtMiAtMiAtNSAtMnEtMSAtMiAtNC41IC0yLjV0LTcuNSAwLjVsLTMgMXEtNyAtMTggLTggLTIwcS0xIC0zIC0zIC01dC0zIC01cTAgLTEgLTcuNSAtMS41dC03LjUgLTEuNXEtMTEgNCAtMTEgMTN2NXQxIDl0MSA2bDIgLTJoMy41aDQuNXQzLjUgMXQxLjUgMiBxNCAwIDMgLTRxOSAtMyA5IDNxLTIgMCAtMiAycTMgNCAyIDd0LTQgNnQtMyA0bC00IDRxOSAtNiAxMSAtMXEwIDEgLTEgM3YxcTIgLTIgMy41IC0yLjV0Mi41IDEuNXEyIDEgMyAzdjZxMyAtNCA0LjUgMHQyLjUgNXEwIC0zIDMgMHEyIDIgMyAycTEgMiA1IDIuNXQ1IDMuNXEtMyAxIC0zIDEycTIgMCA0LjUgMS41dDMuNSAxLjV0MiAtMnEwIC02IDEgLTZxNCAyIDQgNXEtMiAwIC01IDEwcS0zIDAgLTUgLTJxLTMgMCAtNy41IDF0LTYuNSAxIHEtNyA3IC02IDdxLTIgNCAyIDVoMnEwIDIgMTEuNSA1dDEyLjUgOHEtNiAwIDggMTNxMTAgOCAxNCA4cTEgMCA5LjUgMmwxNC41IDMuNXQ4IC0wLjVxMjIgMCAyMiAtMnExIDAgMy41IC0xdDQgLTEuNXQzLjUgMC41cTMgMiAxMSAtMnQ4IC04cS0zIDAgLTEyIC0xdC0xNCAtMXYtMnEyIDAgNS41IC00LjV0Mi41IC02LjVxMyAwIDYgMnQ0IDJxMCAtMiAxIC0zcTMgLTIgNCAzbC0xIDRxMSAyIDQuNSAyLjV0NC41IDMuNXEtNDcgNTYgLTExNC41IDg4IHQtMTQzLjUgMzJxLTEzNCAwIC0yMzEgLTkxcTEgLTEgNSAybDIgMXEwIC02IDEgLThsMyAtN3E4IDAgOSAtMmgtNXExIC02IC0zIC00cS0zIDEgLTQgMXEwIDEgLTMgMnQtNSAwdDAgLTVxMSAwIDIgLTF0MyAtMnEyIDAgNi41IC0xdDYuNSAtMnEyIDAgNSAwLjV0NCAwLjVxMiAxIDMgMnQtMSAycTEgMiAtNCA0cTAgMSAxMSAxcTIgMiAxLjUgMy41dDAuNSAzLjV0NCAydDQgM3E0IC0yIDUgLTZxMSAwIDMgLTNxOSAtMTAgOSAtM3E2IC0xIDYgLTExIHE3IDEgNyAxMXEtMSAwIC0xIDNoNHEyIC0xIDIgMXExIDAgMSAtMmg4di0xMXEwIC0yIC0yIC0zdC0zIC0xbC0yIC0xcS0zIC00IC0xLjUgLTV0Ni41IC0zLjV0NiAtMy41bC04IDFxLTEgMCAtNC41IC0wLjV0LTYgLTF0LTQuNSAwLjVxNSAwIDcgMTFxLTggMiAtMTEgLTVxLTEgLTQgLTQgLTMuNXQtNCAtMS41bC0yIC0xcS0zIC0xIC01IC0xLjV0LTIgMC41cS03IC0yIC03IC0xN3ExMSAtOCAxMSAtMTJxNCAtMSA5LjUgLTJ0OC41IC0xIHExIC0zIDQgLTNxMCAtNCA5IC00cTAgNiA2IC00cTEgLTIgMSAtM3EtMSAwIDAgLTIuNXQzIC01LjVxLTIgMCAtMSAtMXEyIC0yIDUuNSAtMXQzLjUgM3EtMiAwIC0yIDZxLTYgNiAxIDhxMCAtNCA2IDFxMiAyIC0xIDNxMiA5IDAgMTJxLTEgMSAtMi41IDF0LTIuNSAycTQgMSAxIDE0aDVxMiAwIDUuNSAtMS41dDUuNSAtMXQzIDMuNXEzIC0yIDQuNSAtNXQ0LjUgMXEwIC0xIDQgLTUuNXQ1IC00LjVxMCAtMyAyIC0zbC0xIC0ycTcgMCA3IDEgcTYgMCA2IDhxMSAwIDIuNSAtM2wzIC02dDIuNSAtM2wyLjUgLTIuNWwzIC0zdDIuNSAtM3QxIC0yLjVxMiAtMiAyIC01cTEgMCAyIDJxMyAzIDMgLTFxMiAwIDQuNSAtMi41dDIuNSAtMy41cS0yIDAgLTEuNSAtMnQtMC41IC0ycTAgLTEgLTExIC0xcS0xIC01IC02IC02dC0xMSAwLjV0LTExIC0wLjVxLTQgLTIgLTkuNSAtOC41dC01LjUgLTEwLjVxMyAwIDcuNSAzLjV0Ni41IDQuNXEyIDAgMTAgNHEwIC0xIDEgLTF2LTFxLTYgMCAtMiAtNyBxMSAtMSAxIC0ycTMgLTUgOCAtNXEwIC0xIC0yLjUgLTF0LTIuNSAtMmwtNSAtM2gtNmwxIDFsMSAxaDN2NHEtMyAwIC02IC0xLjV0LTUgLTEuNXEtNCAtNCAtNiAtNHEtMiAtMTAgLTYgLTEybC0yIC0xbC00IC0ybC0yIC0ybC0yIC0ycS0xIC0yIC0yIC01cS0zIC03IC0zIC05cS0xIDAgLTMuNSAtNS41dC02LjUgLTUuNXEtMSAtMiAtNS41IC02dC00LjUgLTEwcTEgLTEgMS41IC00dDEuNSAtNi41dDEgLTQuNXEwIC04IC00IC04bC0yIDN0LTEgMyBxMCA0IC00IDEycTAgMiAtNC41IDEuNXQtNS41IC0wLjVxLTEgMyAtMTMgM3EwIC0xIDEgLTJ0MSAtM3EtNiAtMiAtNyAtMnEtMiAwIC00LjUgMi41dC01LjUgMS41cS0xNCAtMiAtMTQgLTE2cS0xIDAgLTEgLTguNXQxIC04LjVxMCAtMiAyIC02dDIgLTVxMiAwIDYgLTR0NSAtNHExIC00IDUgLTRsMiAxbDIgNHEtMyAxIC0xLjUgMy41dDMuNSAzLjVxMCAtMiA2IDJsNiAybDIgMnExIC0zIC0xIC00cS0yIDAgLTMgLTNsLTEgLTIgcS0xIC0yIC0yIC01dC0xIC01dDEgLTQuNXQwIC00LjVoMTN2M3EzIDAgMi41IC02LjV0MS41IC02LjVxMCAtMiAxIC02dDEgLTVxNSAtMyA0IC04cTEyIDAgMTIgM3E3IDAgNSAtN3E1IDAgNiAzdDEgNS41dDIgMi41cTAgMyAyIDFsNiAzbDMgMnEyIC0xIDIgLTJxNSAwIDkgNHEyIDAgNCAtNXQ2IC01cTEyIDAgMTMgMXEzIC0yIDMgLTNxMSAwIDIgLTFsMSAtMWgxbDQgLTRxMCAtMiAyLjUgLTN0Mi41IC0ybDEgLTFsMyAtMmw5IC0zcTEgMyA0IDAgcTEgLTEgMiAtMWwyIC0ycTEgLTEgNCAtN3EyIC0yIDQgLTExcS0xIDAgLTEgLThsNCAtMXEyIDAgMiAycTIgMCA1IC0ydDQgLTJxLTIgLTIgMSAtMy41dDMgMi41cTMgMCAzIC0xMXEyIDAgNC41IDEuNXQ0LjUgMS41cTYgMCA2IDFxOCAtMiAxMyAtOHE1IC01IDUuNSAtMTR0LTQuNSAtMTRsLTggLTEwcTAgLTEyIC0xIC0xMnEwIC0xNCAtMyAtMTRxMCAtMyAtMi41IC03dC0zLjUgLTZxLTEgLTEgLTYuNSAtNC41dC02LjUgLTUuNSBxLTEgMCAtNCAtMXQtNCAtMWwtMiAtM3EtMyAtMyAtMiAtM3EwIC0xIC0wLjUgLTcuNXQtMS41IC04LjVxLTQgLTIgLTMgLTRxLTEgMCAtMS41IC0xdC0zLjUgLTFxLTIgMCAtNSAtMi41dC0zIC01LjVxLTIgLTggLTYgLTExbC0zIC0ycS00IC0yIC00IC00di04cS02IDAgLTggLTRxLTQgMCAtMTEgLTRxMCAtNCAtMiAtNHEwIC00IC0zIC0zdC00IDBxMiAwIDIgLTZxMCAtMSAtNiAtOWwtMSAtMnEtMiAtMyAtMyAtM3EwIC0xIC0wLjUgLTQgdC0wLjUgLTV2LTNsMiAycTAgMSAyIC0xcS0xIC0yIC0zIC00dC0zIC01cS01IDAgLTUgLThxMCAtMiAxIC0ycTAgLTEgMiAtNWwtMjcgOXEwIDM3IDQgMzdxMCA5IDIgOXYxNHEtMSAyIDEuNSA2LjV0Mi41IDYuNXEzIDEgMy41IDEwdDAuNSAxN3QyIDhxMCA0IDEuNSAyMC41dC0wLjUgMjAuNWwtNyA4cS01IDAgLTkgNi41dC00IDEyLjVxLTMgOSAtMyAxMHExIDAgLTIgNC41dC02IDkuNWwtNCA1cS0zIDMgLTMgNC41dDIgNXQyIDYuNSBxLTQgMiAtMiAxMC41dDUgOC41cTAgMyAzIDRxMSAtMyAzIC0ycTMgMyAwIDV2MTNxMCAxMCAtNSAxMHEtMiAwIC00IC01cS0xIDEgLTUgMS41dC03IDJ0LTMgNC41cTIgNiAtOCAxMXExIDQgLTUuNSA4LjV0LTEwLjUgNC41cTAgMSAtMiAxLjV0LTIgMS41cS0yIDAgLTUgM3QtNiAzcS00IDAgLTEwIDIuNXQtOSAyLjVxLTEgMiAtNi41IDN0LTYuNSAzcS03IDAgLTcgMTNxMCAxOCAtOSAxOHEwIDMgLTQgNi41dC02IDMuNXEtMyA3IC01IDcgcTAgNCAtNiA5cS0zIDIgLTMgMHEtMSAtMiAyLjUgLTUuNXQzLjUgLTUuNXExIDAgOCAtMTNxNiAtMTAgMyAtMTFxLTQgLTEgLTEwIDhxLTIgNCAtMiA2cS0yIDEgLTQuNSA2LjV0LTIuNSA3LjVxLTEgMSAtMi41IDR0LTIuNSA2bC0xIDJxMCAxMCAtMTEgMTBsLTcgOXEwIDEwIC04IDEzcTAgMiAtMSA5dDAgMTBxMCAyMyAtMTAgMzFxLTMzIC02OCAtMzMgLTE0NHEwIC0xNDAgOTkuNSAtMjM5dDIzOS41IC05OXE4MiAwIDE1MyAzN3QxMTggMTAwIHEtNyAtMiAtOSA5cS0zIDE3IDIgMzJxNSAtMiA2IDBxLTQgMSAtMiA2cTEwIC03IDEwIDJsLTIgMnEwIDIgMSAzdDEuNSAwLjV0MC41IC0yLjVxMyAwIDMuNSA0LjV0MS41IDUuNXEwIC0xMSAzIC0xMnEyIC0yIC0wLjUgLTQuNXQtMi41IC0zLjVxLTIgLTEgLTIgLTZoLTNxMCAtMyAtMSAtOC41dC0xIC03LjVxLTIgMCAtMiAtMTZ6TTY2NiAzODNxMiAtMSAyIC00cTI1IDAgMjUgM3ExIC0yIDIgLTN0MiAycTEgMCA0LjUgLTN0Ny41IC0ybDcgNCBsLTIgMXEwIDYgLTUgOS41dC02IDQuNXEtMSAwIC0zLjUgMXQtNC41IDFxLTMgMiAtNiAtMXEtMyAtMiAtMyAwcS0xIDIgLTMgMnEwIDggLTkgN3EtMSAtMyAtMy41IC03dC0zLjUgLTcuNXQtMSAtNy41ek01MTggNDkxcTAgLTUgLTEgLTVxLTUgLTMgLTEwIC0zaC0xMXEtMiAwIC0xMCAycTAgMSAxIDJxMyA0IC0xIDRxNyAzIDggM3YtMXYtNHEwIC0xIDIgLTAuNXQ0LjUgMXQzLjUgMS41cTMgMCA2IDFxMSAxIDEuNSAwLjV0MC41IC0zLjV6IE01NTEgNDQ0cTAgMiAtMSA0dC0xIDRxMCAzIDMgMi41dDQgMy41cTMgLTEgMCAtM3YtNHEyIDAgNCAydDMgMnEtMiAtNyAtMSAtOHE1IC01IDQgLTZxNyAwIDUgLTExcTMgMCAzIDNxMiAtMSAyIC0yLjV0LTIgLTEuNXEtMyAtNSAtMTUgLTVxMCA2IC00IDNxLTMgLTEgLTIgNHExIDIgMSAzcS0yIDEgNSAycS0xIDggLTggOHpNNTM2IDQyOHEtMiAyIDAgOHEtMyAxIDEgMmw1IDJxLTQgMCAtMiA0aDJxMSAtMiAyIC0xaDRxMSAtMSAwIC0zIHEtMyAtMTIgLTEyIC0xMnpNNTUxIDQyMnExIDAgMSAxaDNxMCAtMiAtMS41IC0ydC0yLjUgMXpNMzkyIDQwMXExIDEgNCAzcTAgLTMgLTQgLTN6TTU5OCAzODhxMiAwIC0xIC02cS0xIDIgLTIgNXEzIDAgMyAxek01OTggMzgwcTIgMCAxLjUgLTQuNXQtNS41IC0zLjVxMCA3IDIgN2wxIC0ycTEgMSAxIDN6TTYyMCAzNjVxMCAtNCAtMSAtNC41dC00LjUgMS41dC01LjUgMmg1cTEgLTEgNiAxek03MjggMjQwcTYgMCA2IDFxMTAgMCAxNiAzIHEwIC00IC0yLjUgLTkuNXQtMS41IC05LjVxLTMgMCAtMyAtNWwtMiAtMnEtMiAtMyAtNCAtNHEwIC0yIC05IC0xMXEtMSAtMiAtNS41IC02LjV0LTUuNSAtNi41cS0xNCAtMTQgLTEwIC0xNHEwIC0yNCAyIC0yNGwxIC02cTEgLTYgMSAtMTB0LTEgLTVxMCAtMyAtMiAtNy41dC0yIC02LjVsLTIgLTFsLTMgLTNxLTIgMCAtNCAtMy41dC0zIC0zLjVxMCAtNCAtMSAtMTF0LTEgLTExbC0xIC00bC0yIC02bC0xIC00cS0xNSAtOCAtMTUgLTE3IHEtNyAtMTAgLTggLTEycS0xOSAwIC0xOSAtNGgtMTVxMCAyIC0xIDZ0LTEgN3EtMSAwIC0yIDMuNXQtMiAzLjVxMCAxIC0yLjUgNi41dC00LjUgMTF0LTEgNS41cTAgOSAtMyA5cTAgNCAtMi41IDExdC0yLjUgMTBxLTEgMCAtMiA0dC0xLjUgNy41dDAuNSA0LjVxMCA0IDQgMjJxMSA5IC0zIDIzcS00IDAgLTQgNnEtNiA0IC02IDE1cTYgNiAzIDIwcS0zIDEgLTE0IDFxLTEgMyAtNy41IDR0LTE2LjUgMGwtMTAgLTFxLTEgLTIgLTQuNSAtMS41IHQtOC41IDIuNXQtNSAzcS0zIDAgLTcuNSA0LjV0LTQuNSA4LjVxLTQgMSAtOCA5LjV0LTQgMTIuNXEtNCA0IDAgOXEwIDMgLTMgMTJxMCAyIDEuNSA0dDEuNSA0cTAgMTEgNCAxOXEwIDEgMiA0dDIgNHEyIDMgMyAzcTIgMSAzIDNxMiAxIDUgNXEyIDMgMyA0cTMgMSAwIDRxNCAwIDQgMTBxMiAzIDYgM2wxIDFxNCA1IDUgNXEyIDMgNiAzcTEgLTEgMi41IC0xdDQuNSAxbDMgMXE1IDcgMTQgN3ExIDIgNSAxLjV0MTAuNSAtMS41dDcuNSAtMXYyIHEzIC0xIDcgLTEwdDQgLTEyaDhxMCAtNCAxMCAtNHExNiAwIDE2IDZxNiAwIDYgLTZoNnQ4LjUgLTAuNXQ3LjUgLTJ0MiAtMi41cTIgMCA0IC0zdDMgLTNxMCAtMyAyLjUgLTguNXQ0LjUgLTUuNXEwIC04IDUgLTExcTYgLTE0IDEyIC0xOHEtMSAtMiAxLjUgLTZ0Mi41IC01cTEgLTYgMyAtN3EwIC00IDUgLTExLjV0OCAtNy41cTAgLTEgLTEgLTJ0MiAtMnpNMzEyIDI5NnEwIC0zIDMgMHEwIC00IC00IC0ycS0yIDAgLTEgM3ExIDAgMiAtMXogTTMyOCAyOTdxNCAtMSA3LjUgLTMuNXQ1LjUgLTIuNXEzIC0zIDMuNSAtNHQtMS41IC0ycS04IC0yIC0xMiA1cS01IDAgLTEwIDVxNiAwIDcgMnpNMzYyIDI4M2wyIC0xcTIgLTIgMyAtNGwxIC0xaC0xM3EtMSAtMSAtNC41IC0xdC00LjUgMmg3bC0yIDRxMSAwIDUgLTF0NiAtMXYzek0zMzEgMjc4cTQgMCA0IC0zcS01IDAgLTQgM3pNMzM2IDI3NWwyIDNxMSAwIDEgLTJxLTEgLTEgLTMgLTF6TTM3NiAyNzhxMyAwIDMgLTFxLTQgMiAtMyAxeiBNMzczIDI3OGwyIC0xcS0xIDAgLTEgLTAuNXQtMSAtMC41djJ6TTM1NyAyNTBxMSAxIDEgMmwxIC0xcTAgLTEgLTIgLTF6TTc0MCAxMzRxMCAyIDIgM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJIIiBob3Jpei1hZHYteD0iODY1IiBkPSJNNjg2IDI3OXYtMzc4aC0xNzd2MjM1aC0xNTJ2LTIzNWgtMTgzdjM3OGgtMTUzbDQxMiA0MTFsNDExIC00MTFoLTE1OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJJIiBob3Jpei1hZHYteD0iOTMyIiBkPSJNODg0IDIzNHYtMzE0aC04MzZ2MzE0bDE1NyA0MThoNTIyek01ODIgMjM0aDE5OGwtMTA1IDMyMmwtNDE4IDFsLTEwNCAtMzIzaDE5N2w0OSAtOTZoMTMweiIgLz4KPGdseXBoIHVuaWNvZGU9IkoiIGhvcml6LWFkdi14PSI4NjIiIGQ9Ik04NDggNTM0bC0xMjIgLTEyMmw4MiAtODJsLTM3MCAtNDJsNDMgMzY5bDgxIC04MWwxMjIgMTIyek0xMzYgMTQ4bC04MiA4MmwzNjkgNDNsLTQzIC0zNzBsLTgxIDgybC0xMjIgLTEyMmwtMTYzIDE2M3pNMTgyIDM4OGwxOTcgLTY4bC0yMjEgMTh6TTM5MyA0MTd2LTg1bC0yOCA4MHpNNjgyIDE3NGwtMTk3IDY5bDIyMSAtMTl6TTQ3MSAxNDZ2ODVsMjggLTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IksiIGhvcml6LWFkdi14PSI4NjkiIGQ9Ik01MzAgMzUxbDMxOCAtMzE4di0xNjh2MGgtMTY4aC0xdjEyOWgtMTI4djEyOGgtMTI4bC02MSA2MXEtNDAgLTE0IC04MyAtMTRxLTEwOSAwIC0xODcgNzcuNXQtNzggMTg3LjV0NzggMTg3LjV0MTg3IDc3LjV0MTg3IC03Ny41dDc4IC0xODcuNXEwIC00MyAtMTQgLTgzek0yMjQgNDAycTM3IDAgNjMgMjZ0MjYgNjN0LTI2IDYzdC02MyAyNnQtNjMuNSAtMjZ0LTI2LjUgLTYzdDI2LjUgLTYzdDYzLjUgLTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkwiIGQ9Ik00NjAgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjN0LTI5NyAxMjN0LTEyMyAyOTd0MTIzIDI5N3QyOTcgMTIzek00NjAgLTM0cTEzMCAwIDIyMi41IDkydDkyLjUgMjIzdC05Mi41IDIyM3QtMjIyLjUgOTJ0LTIyMi41IC05MnQtOTIuNSAtMjIzdDkyLjUgLTIyM3QyMjIuNSAtOTJ6TTQ2NCA1MjlxMTAzIDAgMTc2LjUgLTczLjV0NzMuNSAtMTc3LjV0LTczIC0xNzcuNXQtMTc3IC03My41IHQtMTc3LjUgNzMuNXQtNzMuNSAxNzcuNXQ3My41IDE3Ny41dDE3Ny41IDczLjV6TTM5NiAzNTlxMzMgMzMgMTAyIDcwbC0zMCA0MHEtNCAxIC0xMiAxcS02MSAwIC0xMTYuNSAtNTV0LTU1LjUgLTExNnEwIC02IDEgLTlsNDIgLTMycTM4IDcwIDY5IDEwMXpNNTQwIDE1NXExNiAwIDI4IDEydDEyIDI5dC0xMS41IDI5dC0yOC41IDEydC0yOSAtMTJ0LTEyIC0yOXQxMiAtMjl0MjkgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9Ik0iIGhvcml6LWFkdi14PSI5NTIiIGQ9Ik04OTIgMzJsLTI3MyAyNjJsMjczIDIzNHEzIC04IDMgLTE1di00NjVxMCAtOCAtMyAtMTZ6TTQ3NiAyMzhsLTcyIDU4bC0zNiAzMGwtMjc1IDIzNXExMCAyIDE0IDJoNzM4cTQgMCAxNCAtMmwtMjc1IC0yMzVsLTM2IC0zMHpNODQ1IC0yaC03MzhxLTUgMCAtMTMgMmwyNzYgMjY1bDEwNiAtODdsMTA3IDg3bDI3NSAtMjY1cS04IC0yIC0xMyAtMnpNNjAgNTI4bDI3MyAtMjM0bC0yNzMgLTI2MnEtMyA4IC0zIDE2djQ2NXEwIDcgMyAxNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJOIiBob3Jpei1hZHYteD0iOTQzIiBkPSJNODU3IDY3MHExNyAwIDIzIC02dDYgLTIzdi02NTVxMCAtMTcgLTYgLTIzdC0yMyAtNmgtMTA4aC01NDZoLTcxcS0yOCAwIC01My41IDI2LjV0LTI1LjUgNTIuNXY0ODFxMCAxNyA2IDIzdDIzIDZoOTJ2OTVxMCAxNyA2IDIzdDIzIDZoNjU0ek04MzcgN3Y2MTNoLTYxNHYtNzR2LTUwdi00NDVoLTQ5djQ0NWgtNzF2LTQ2MHEwIC03IDExIC0xOHQxOCAtMTFoNzFoNTQ2aDg4ek01MTEgNTU2di0yMjNoLTIyM3YyMjNoMjIzek03NjUgNTI1di0zNyBoLTE4NXYzN2gxODV6TTc2NSA0MTF2LTM3aC0xODV2MzdoMTg1ek03NjUgMjU5di0zN2gtNDc3djM3aDQ3N3pNNzY1IDE0NHYtMzdoLTQ3N3YzN2g0Nzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjkzMCIgZD0iTTg4MiA1MTB2LTUxMWgtNzB2NTExaDcwek02OTUgNTEwaDQ3di01MTFoLTU1NnY1MTFoNTJxNjggMTMzIDEyMiAxMzNoMjA3cTMyIDAgNjYuNSAtNDAuNXQ2MS41IC05Mi41ek01MTQgNTIycTEzIDAgMjIgOXQ5IDIydC05IDIxLjV0LTIyIDguNWgtMTA0cS0xMyAwIC0yMS41IC04LjV0LTguNSAtMjEuNXQ4LjUgLTIydDIxLjUgLTloMTA0ek00OCA1MTBoNjl2LTUxMWgtNjl2NTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IlAiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik03MTkgNDk2aDE0M3YtNDk1aC02NTl2MWwtMTc3IDQ2MWw2MTUgMjM3ek02NjAgNDk2bC01MSAxMzNsLTM0NSAtMTMzaDM5NnpNOTcgNDMybDEwNiAtMjc3djMxOHpNMjU4IDU2aDU0OXYzODVoLTU0OXYtMzg1ek02OTkgMjkybDU4IC0xOTBoLTQzMmwxMDMgMTEybDY2IC00MmwxMjMgMTc3bDM4IC03MXpNMzc5IDI3NXEtMjIgMCAtMzcgMTV0LTE1IDM3dDE1IDM3dDM3IDE1dDM3IC0xNXQxNSAtMzd0LTE1IC0zN3QtMzcgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IlEiIGhvcml6LWFkdi14PSI4NDQiIGQ9Ik02ODEgNTIxcTYxIC01NCA5NS41IC0xMjkuNXQzNC41IC0xNjAuNXEwIC0xNjEgLTExNCAtMjc1LjV0LTI3NSAtMTE0LjV0LTI3NSAxMTQuNXQtMTE0IDI3NS41cTAgODUgMzUgMTYxdDk2IDEzMHEyMCAxNyA0Ni41IDE1LjV0NDMuNSAtMjEuNXExNyAtMTkgMTUuNSAtNDUuNXQtMjEuNSAtNDMuNXEtODggLTc4IC04OCAtMTk2cTAgLTEwOSA3Ni41IC0xODZ0MTg1LjUgLTc3dDE4NS41IDc3dDc3LjUgMTg2cTAgMTE3IC04OCAxOTUgcS0yMCAxOCAtMjEuNSA0NHQxNi41IDQ2cTE3IDE5IDQzLjUgMjAuNXQ0NS41IC0xNS41ek00MjMgMTY2cS0yNiAwIC00NC41IDE5dC0xOC41IDQ1djQwN3EwIDI2IDE4LjUgNDV0NDQuNSAxOXQ0NSAtMTl0MTkgLTQ1di00MDdxMCAtMjYgLTE5IC00NXQtNDUgLTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik02NjggMTA1djg3bDEwNCA3MHYtMjYyaC03MzF2NTIzaDMyN3EtMiAtMSAtNi41IC0zdC02LjUgLTNxLTg3IC0zOSAtMTQxIC05OWgtNjl2LTMxM2g1MjN6TTg3NyA0MTdsLTMxMyAtMjExdjEzN3EtOTAgMCAtMTQxIC03cS00OSAtNiAtODkuNSAtMjF0LTYzLjUgLTMzLjV0LTM5IC0zNS41dC0yMiAtMjhsLTYgLTEycTAgNTQgMjAgMTAwdDUxLjUgNzUuNXQ3MC41IDUyLjV0NzcuNSAzNXQ3MCAyMHQ1MS41IDEwbDIwIDJ2MTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSI4NTMiIGQ9Ik04MjYgMzg5cTEwIC0xMSA4IC0yNHEwIC0xMyAtMTAgLTI4cS0zIC00IC0xNiAtMTRsLTE4NCAtMTIxcS0yIC0xIC01LjUgLTd0LTIuNSAtMTB2LTRsODEgLTIzN3E0IC0xMSA0IC0yM3EwIC0xNSAtNyAtMjVxLTExIC0xNiAtMzAgLTE2aC0xcS0xNiAxIC0zNiAxNWwtMTkwIDE1NXEtMyAzIC0xMCAzdC05IC0zbC0xODEgLTE1NHEtMTggLTE0IC0zNiAtMTVxLTIxIC0yIC0zMSAxNXEtOCAxMSAtOCAyNnEwIDcgNCAyMWw3MiAyMzZ2NCBxMSA1IC0yIDExdC02IDdsLTE4NSAxMjJxLTEwIDcgLTE2IDE0cS0xMSAxMyAtMTEgMjhxMCAxNCA4IDI0cTkgOSAxNiAxMnExMiA1IDI3IDVoMjMwcTYgMCAxMSA0cTcgNSA3IDEwbDY3IDIzOXE0IDE0IDkgMjFxMTMgMTggMzMgMTlxMjAgLTEgMzMgLTE5cTMgLTQgMTAgLTIxbDY2IC0yMzlxMCAtNSA3IC0xMHE1IC00IDExIC00aDIzMHE5IDAgMjAgLTNxMTQgLTQgMjMgLTE0eiIgLz4KPGdseXBoIHVuaWNvZGU9IlQiIGhvcml6LWFkdi14PSI4OTkiIGQ9Ik04MTcgMTg1bDYzIC02NGwtMTYyIC05MWwtOTIgLTE2M2wtNjMgNjRsMTQgMTQ4bC0xNjkgMTY5bC0yMjQgLTM3MWwtNjMgNjNsMTIwIDQ3NWwtMTc2IDE3NXEtMTkgMjAgLTE5IDQ2LjV0MTkgNDUuNXQ0NiAxOXQ0NiAtMTlsMTc2IC0xNzVsNDc1IDEyMGw2MyAtNjNsLTM3MSAtMjI1bDE2OCAtMTY4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSI4OTQiIGQ9Ik03NjAgMTU0cTQ2IC0yMCA3Mi41IC00NC41dDI5LjUgLTM4LjVsMyAtMTR2LTg2aC04MzZ2ODZxMCAyIDAuNSA2dDYgMTV0MTUuNSAyMnQzMS41IDI2dDUwLjUgMjhxMTIgNSA1NCAyOXQ4NyA0M3Q5NCAyOHEtMzMgMzQgLTcyIDEzNHEtMTEgMjggLTExIDEwMHEwIDcgLTEgMzF0LTAuNSA0MS41dDMuNSAyOS41cTMxIDExMSAxNTkgMTExcTEyNyAwIDE1OCAtMTExcTQgLTEyIDQuNSAtMjkuNXQtMSAtNDF0LTEuNSAtMzEuNSBxMCAtNzIgLTEwIC0xMDBxLTM4IC05NiAtNzIgLTEzNHE1MCAtOCA5NC41IC0yN3Q4NyAtNDMuNXQ1NC41IC0yOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IlYiIGhvcml6LWFkdi14PSI5NDkiIGQ9Ik02NTkgNDE2bDIzNSAxMTF2LTQ0OWwtMjM1IDExMXYxdi0xMDNxMCAtMTkgLTEzIC0zMnQtMzIgLTEzaC01MTBxLTE5IDAgLTMyIDEzdC0xMyAzMnY0MzNxMCAxOSAxMyAzMnQzMiAxM2g1MTBxMTkgMCAzMiAtMTN0MTMgLTMydi0xMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0iVyIgaG9yaXotYWR2LXg9Ijk1NCIgZD0iTTcwNCA1NHYxODFsOTIgOTN2LTI3NHEwIC01MSAtMzYgLTg3dC04NyAtMzZoLTQ5MnEtNTEgMCAtODcgMzZ0LTM2IDg3djQ5M3EwIDUxIDM2IDg3dDg3IDM2aDQ5MnExNyAwIDI0IC0ybC04OSAtOTBoLTQyN3EtMTMgMCAtMjIgLTl0LTkgLTIydi00OTNxMCAtMTMgOSAtMjJ0MjIgLTloNDkycTEzIDAgMjIgOXQ5IDIyek00MzEgMzE0bDM1NCAzNTRsMTMyIC0xMzJsLTM1NCAtMzU0djBsLTE5NSAtNjNsNjMgMTk1djB6TTU0NyAyMDggbC04OSA4OWwtNDMgLTEzMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iOTIxIiBkPSJNODY4IDU0MnYtNDIzaC02NnEtMTMgMjkgLTQwIDQ2LjV0LTYwIDE3LjV0LTU5LjUgLTE3LjV0LTQwLjUgLTQ2LjVoLTIyMHY0MjNoNDg2ek0yNDAgMTgzcS0zMyAwIC02MCAtMTcuNXQtNDAgLTQ2LjVoLTEwN3YxODBsMTExIDEyM2gxODR2LTI4NHEtMzMgNDUgLTg4IDQ1ek0xMDEgMjg4di01OGgxNjF2MTMyaC05OXpNMjQwIDE0NnEzMCAwIDUxLjUgLTIxdDIxLjUgLTUycTAgLTMwIC0yMS41IC01MS41dC01MS41IC0yMS41IHEtMzEgMCAtNTIgMjEuNXQtMjEgNTEuNXEwIDMxIDIxIDUydDUyIDIxek03MDIgMTQ2cTMxIDAgNTIgLTIxdDIxIC01MnEwIC0zMCAtMjEgLTUxLjV0LTUyIC0yMS41cS0zMCAwIC01MS41IDIxLjV0LTIxLjUgNTEuNXEwIDMxIDIxLjUgNTJ0NTEuNSAyMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iODYxIiBkPSJNNDI1IDQ4OGwtMTQ1IC00MDlsLTEyNiAxOTNsLTgxIC03NmwtMjIgLTIwbC00NiAzOWwxNjIgMTUxbDk2IC0xNDdsMTcxIDQ4M2wxNTcgLTYwNWwxMzEgNDEzbDExNiAtMzcxbC02MSAtMTZsLTU1IDE3OGwtMTM3IC00MzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9Ijg5NyIgZD0iTTQwMiA2MDd2LTM2OWgzNzFxMCAtMTUzIC0xMDggLTI2MXQtMjYxIC0xMDh0LTI2MSAxMDh0LTEwOCAyNjFxMCAxNTIgMTA3LjUgMjYwdDI1OS41IDEwOXpNNDk2IDcwMHExNTMgMCAyNjEuNSAtMTA4LjV0MTA4LjUgLTI2MS41aC0zNzF2MzcwaDF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWyIgaG9yaXotYWR2LXg9Ijg2MSIgZD0iTTQ0NSA2NzF2LTI3OGg0MDl2LTE4NWgtNDA5di0yNzdsLTQyNyAzNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iXCIgaG9yaXotYWR2LXg9Ijg1NCIgZD0iTTcxMCA1NzloODd2LTczOWgtNzQwdjczOWg4OXY0NnEwIDM1IDIwIDU0dDU2IDE5dDU2LjUgLTE5LjV0MjAuNSAtNTMuNXYtNDZoNTJ2NDZxMCAzNCAyMC41IDUzLjV0NTYuNSAxOS41dDU2IC0xOXQyMCAtNTR2LTQ2aDUydjQ2cTAgMzQgMjAuNSA1My41dDU2LjUgMTkuNXQ1Ni41IC0xOS41dDIwLjUgLTUzLjV2LTQ2ek01OTggNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41IHQtMjcuNSA3LjVxLTM1IDAgLTM1IC0zMnpNMzkyIDYyNXYtMTIzcTAgLTE3IDguNSAtMjQuNXQyNy41IC03LjVxMzUgMCAzNSAzMnYxMjNxMCAzMiAtMzUgMzJxLTE5IDAgLTI3LjUgLTcuNXQtOC41IC0yNC41ek0xODcgNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41dC0yNy41IDcuNXEtMzUgMCAtMzUgLTMyek03MzUgLTk5djUxNGgtNjE2di01MTRoNjE2ek00MjkgOTkgcTAgLTQ1IC0zNSAtNzB0LTkwIC0yNXEtMzYgMCAtNzMgMTRsNyA1MnEzNSAtMTQgNzMgLTE0cTI0IDAgMzggMTF0MTQgMjhxMCAyMiAtMTYuNSAzMi41dC01OS41IDEyLjV2NTJxNjMgNSA2MyAzOHEwIDI4IC00MiAyOHEtMjkgMCAtNjEgLTE1bC03IDUycTM0IDE1IDg0IDE1cTQ1IDAgNzEgLTE4dDI2IC00NnEwIC01MCAtNjUgLTcydi0xcTczIC0yMCA3MyAtNzR6TTUzNyAyMjlsLTUyIC0yMGwtNyA1Mmw5MSA0NGgzMXYtMjk2aC02M3YyMjB6ICIgLz4KPGdseXBoIHVuaWNvZGU9Il0iIGhvcml6LWFkdi14PSI4NjEiIGQ9Ik00MTUgLTY5djI3N2gtNDA4djE4NWg0MDh2Mjc4bDQyOCAtMzcweiIgLz4KPGdseXBoIHVuaWNvZGU9Il4iIGhvcml6LWFkdi14PSI3NzUiIGQ9Ik03NDkgNTcycTIyIC00NiAtMyAtMTMycS0yNCAtODUgLTUgLTIzNHEtOCAtMiAtMjEgLTR0LTQ5IC04dC02NiAtOHQtNjEgLTJ0LTQ2LjUgOXQtMTAuNSAyNnExNSA0OCAtNDggNDZxLTYxIC0yIC0xODIgLTQ4cS0zNyAtMTQgLTYzIC0zdjM5OXEyMiA2IDU4IDE1dDExMiAyNXQxMjYuNSAxNC41dDUwLjUgLTI0LjVxMCAtMyAtMiAtMTQuNXQtMy41IC0yM3QtMS41IC0yM3Q1IC0xOHQxNiAtNS41cTMwIDQgNzguNSA3dDgyLjUgNHogTTE0NSA2NTh2LTgxN2gtODV2ODE3cTAgMTcgMTIuNSAyOS41dDMwLjUgMTIuNXExNyAwIDI5LjUgLTEyLjV0MTIuNSAtMjkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJfIiBob3Jpei1hZHYteD0iODIwIiBkPSJNNTkgMTk4djE5OWg3MDJ2LTE5OWgtNzAyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImAiIGhvcml6LWFkdi14PSI5MzYiIGQ9Ik0zMDYgMzc4bC0xNTIgMTUzbC05NSAtOTZ2Mjc3aDI3N2wtOTUgLTk1bDE1MiAtMTUyek03ODMgNzVsOTUgOTV2LTI3NmgtMjc3bDk1IDk1bC0xNTIgMTUxbDg3IDg3ek02MzEgMzc4bC04NyA4N2wxNTIgMTUybC05NSA5NWgyNzZ2LTI3N2wtOTQgOTV6TTMwNiAyMjdsODcgLTg3bC0xNTIgLTE1Mmw5NSAtOTVsLTI3NyAxdjI3N2w5NSAtOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iYSIgaG9yaXotYWR2LXg9IjgxMCIgZD0iTTc0NSAxNDRxMjEgMCAzNS41IC0xNC41dDE0LjUgLTM1LjV0LTE0LjUgLTM2dC0zNS41IC0xNXEtMiAwIC02IDAuNXQtNiAwLjVxLTQyIC0zNiAtNzkgLTU5cS04MyAtNTUgLTE1NyAtNzZxLTcxIC00NCAtOTAgLTQ0cS0xNCAwIC05NSA0NXEtNzYgMjIgLTE1NiA3NXEtNDAgMjcgLTc5IDU5cS0yIDAgLTUuNSAtMC41dC01LjUgLTAuNXEtMjEgMCAtMzYgMTV0LTE1IDM2dDE1IDM1LjV0MzYgMTQuNXQzNS41IC0xNC41dDE0LjUgLTM1LjV2LTggcTkgLTggMzQgLTIydDM4IC0yM3E0NyAtMzEgMTQ0IC0zM2wzMiAxNTFxNCA5OCA3IDE5MmgtMTM2bC01MiAxMnEtMTQgLTE3IC0zMyAtMTdxLTE3IDAgLTI5IDExLjV0LTEyIDI4LjV0MTIgMjguNXQyOSAxMS41cTIyIDAgMzMgLTE4aDE5MHEyIDcyIDMgOTZxLTMyIDEwIC01MiAzNi41dC0yMCA2MC41cTAgNDIgMjkuNSA3MS41dDcwLjUgMjkuNXE0MiAwIDcxLjUgLTI5LjV0MjkuNSAtNzEuNXEwIC0zMyAtMjAgLTU5LjV0LTUxIC0zNi41IHEwIC03IDEuNSAtNDAuNWwyLjUgLTU2LjVoMTg5cTExIDE4IDMzIDE4cTE3IDAgMjkgLTExLjV0MTIgLTI4LjV0LTEyIC0yOC41dC0yOSAtMTEuNXEtMjEgMCAtMzIgMTdsLTUzIC0xMmgtMTM1bDYgLTE5MmwzMyAtMTU0cTc5IC00IDEyMCAyMXE1MCAzMCA5NiA2MnEtMSAyIC0xIDZxMCAyMSAxNSAzNS41dDM2IDE0LjV6TTM1MSA2MDFxMCAtMjIgMTUuNSAtMzcuNXQzNy41IC0xNS41cTIzIDAgMzguNSAxNS41dDE1LjUgMzcuNXQtMTYgMzcuNSB0LTM4IDE1LjV0LTM3LjUgLTE1LjV0LTE1LjUgLTM3LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjkxOSIgZD0iTTQ2MSA2OTlsNDA4IC0xMTN2LTU5MWwtNDA4IC0xMTRsLTQxMCAxMTR2NTkxek00MjYgLTM4djQzOWwtMzA2IDg2di00NDF6TTQ2MCA0NjJsMzAwIDg0bC0yOTkgODJsLTMwMCAtODJ6TTgwMSA0NnY0NDBsLTMwNyAtODV2LTQ0MHoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iOTA4IiBkPSJNNzY3IDMxOHE0NiAtMTkgNzMuNSAtNjB0MjcuNSAtOTJxMCAtNjggLTQ4IC0xMTZ0LTExNiAtNDhoLTloLTE5OHYxNjJoMzBoNzZxMTIgMCAxNSA2LjV0LTQgMTYuNWwtMTQ1IDE3M3EtOCAxMCAtMTkuNSAxMHQtMTkuNSAtMTBsLTE0NSAtMTczcS04IC0xMCAtNSAtMTYuNXQxNiAtNi41aDc2aDMwdi0xNjJoLTE5OGgtMWgtMWgtMnYxcS02OCAxIC0xMTYuNSA1MHQtNDguNSAxMTdxMCA0NiAyMiA4NHQ2MCA2MXEtNSAxOCAtNSAzNCBxMCA0NyAzMy41IDgwLjV0ODEuNSAzMy41cTM5IDAgNjkgLTI0cTMxIDY0IDkxIDEwM3QxMzMgMzlxMTAzIDAgMTc1LjUgLTcyLjV0NzIuNSAtMTc1LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSI5MTgiIGQ9Ik00NTkgNjk5cTE3NCAwIDI5Ni41IC0xMjN0MTIyLjUgLTI5NnEwIC0xNzQgLTEyMi41IC0yOTYuNXQtMjk2LjUgLTEyMi41cS0xNzMgMCAtMjk2IDEyMi41dC0xMjMgMjk2LjVxMCAxNzMgMTIzIDI5NnQyOTYgMTIzek03NzQgMjgwcTAgMTMwIC05Mi41IDIyMnQtMjIyLjUgOTJxLTEwMCAwIC0xODIgLTU4bDQzOCAtNDM4cTU5IDgxIDU5IDE4MnpNMTQ1IDI4MHEwIC0xMzAgOTIgLTIyMnQyMjIgLTkycTEwMyAwIDE4MyA1OGwtNDM4IDQzOSBxLTU5IC04MyAtNTkgLTE4M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJlIiBob3Jpei1hZHYteD0iNTU2IiBkPSJNNTUwIDY5OWwtMTkzIC0zNDJoMTU4bC01MTAgLTQ3NmwyMzkgMzg2aC0xNjB6IiAvPgo8Z2x5cGggdW5pY29kZT0iZiIgaG9yaXotYWR2LXg9IjkxMiIgZD0iTTU2IDQxNXExNDkgMCAyNzUgLTczLjV0MjAwIC0xOTkuNXQ3NSAtMjc1aC0xNjBxLTIgMTYxIC0xMTUgMjc0cS0xMTQgMTE0IC0yNzUgMTE0djE2MHpNNTYgNzAwcTE2OSAwIDMyMi41IC02NnQyNjUuNSAtMTc3LjV0MTc4IC0yNjZ0NjcgLTMyMy41aC0xNjBxLTEgMTgzIC05MS41IDMzNy41dC0yNDUgMjQ0LjV0LTMzNi41IDkwdjE2MXpNMTY3IDkwcTQ2IDAgNzguNSAtMzIuNXQzMi41IC03OC41dC0zMi41IC03OC41dC03OC41IC0zMi41IHQtNzguNSAzMi41dC0zMi41IDc4LjV0MzIuNSA3OC41dDc4LjUgMzIuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJnIiBob3Jpei1hZHYteD0iODk0IiBkPSJNODY1IDM2di0zNWgtMTUxdjQ3djFxLTQgNDMgLTU1IDczcS0xMCAxNiAtMjIgNDdxLTUgMTEgLTUgNDBxMCAzNyAxIDQxcTEzIDQ0IDY0IDQ0dDY0IC00NHYtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzkgLTI5IC01NHEyMCAtNCAzOCAtMTEuNXQzNS41IC0xN3QyMS41IC0xMS41cTE5IC04IDI5LjUgLTE4dDExLjUgLTE1ek0xODAgNDl2LTF2LTQ3aC0xNTF2MzVxMCAyIDEgNnQxMS41IDE0dDI5LjUgMThxNSAyIDIxLjUgMTJ0MzQuNSAxNy41IHQzOCAxMS41cS0xNCAxNSAtMjkgNTRxLTQgMTAgLTQgNDBxMCAzNyAxIDQxcTExIDQ0IDYzIDQ0cTUxIDAgNjQgLTQ0cTEgLTQgMSAtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzYgLTI0IC00OHEtNTMgLTMyIC01MyAtNzJ6TTYyMCAxMDJxMjUgLTExIDM5LjUgLTI0LjV0MTYuNSAtMjEuNWwyIC04di00N2gtNDYydjQ3cTAgMyAxLjUgOC41dDE2IDE5LjV0NDAuNSAyNnE2IDMgMjkgMTZ0NDggMjMuNXQ1MiAxNS41cS0xOCAyMSAtMzkgNzQgcS02IDEzIC02IDU2cTAgNTMgMSA1NnExNyA2MSA4NyA2MXQ4OCAtNjFxMSAtMyAxIC01NnEwIC00MSAtNiAtNTZxLTIxIC01NCAtNDAgLTc0cTI4IC01IDUyLjUgLTE1dDQ5IC0yNHQyOS41IC0xNnoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iOTA2IiBkPSJNODQ4IDQyNXEyNSAtNjggMjUgLTE0NHQtMjUgLTE0NHEtMTAgLTI4IC00MCAtMjhxLTYgMCAtMTAgMWwtNyAycS01NSAtMTExIC0xNjkgLTE2OWwyIC03cTQgLTE2IC0zLjUgLTMwdC0yMi41IC0yMHEtNzIgLTI1IC0xNDQgLTI1cS03MyAwIC0xNDUgMjVxLTE1IDYgLTIyLjUgMjB0LTMuNSAzMGwyIDdxLTExMiA1NSAtMTcwIDE2OWwtNyAtMnEtMyAtMSAtMTAgLTFxLTI5IDAgLTM5IDI4cS0yNiA3MCAtMjYgMTQ0dDI2IDE0NCBxMTAgMjggMzkgMjhxMyAwIDExIC0ybDYgLTFxNTggMTE1IDE3MCAxNjlsLTIgN3EtNCAxNiAzLjUgMzB0MjIuNSAyMHE3MiAyNSAxNDQgMjVxNzUgMCAxNDUgLTI2cTE1IC01IDIyLjUgLTE5dDMuNSAtMzBsLTIgLTdxMTEzIC01NiAxNzAgLTE2OWw2IDFxOCAyIDExIDJxMjkgMCAzOSAtMjh6TTgwOCAxNTFxMjMgNjMgMjMgMTMwcTAgNjYgLTIyIDEzMGwtMTY2IC00MXEyMCAtNDIgMjAgLTg5dC0yMCAtODl6TTU4MyAtNzRsLTQwIDE2NSBxLTQyIC0yMCAtODkgLTIwdC05MCAyMGwtNDAgLTE2NXE2MSAtMjMgMTMwIC0yM3E2OCAwIDEyOSAyM3pNNTYxIDEyOXExMiAtNyAxNyAtMTZxMjQgMTcgNDQgNDNxLTExIDYgLTE3IDE4cS04IDE3IDAgMzZxMTYgMzIgMTYgNzFxMCAzOCAtMTYgNzFxLTggMTggMCAzNnE3IDEyIDE3IDE4cS0xOSAyNSAtNDQgNDNxLTcgLTEyIC0xNyAtMTZxLTggLTQgLTE4IC00cS0xMSAwIC0xOCA0cS0zMyAxNiAtNzIgMTZxLTM4IDAgLTcxIC0xNiBxLTcgLTQgLTE4IC00cS0xMCAwIC0xOCA0cS0xMiA3IC0xNyAxNnEtMjUgLTE4IC00NCAtNDNxMTEgLTYgMTcgLTE4cTggLTE4IDAgLTM2cS0xNyAtMzYgLTE3IC03MXEwIC0zNiAxNiAtNzFxOSAtMTkgMCAtMzZxLTQgLTExIC0xNiAtMThxMTYgLTIyIDQ0IC00NHE1IDEwIDE3IDE3cTggNCAxOCA0cTExIDAgMTggLTRxMzMgLTE2IDcyIC0xNnEzOCAwIDcxIDE2cTcgNCAxOCA0cTEwIDAgMTggLTR6TTc1IDI4MXEwIC02NCAyMyAtMTMwbDE2NSA0MSBxLTIwIDQ1IC0yMCA4OXEwIDQ1IDIxIDg5bC0xNjYgNDFxLTIzIC02NyAtMjMgLTEzMHpNNDUzIDY1OXEtNjggMCAtMTI5IC0yM2w0MCAtMTY1cTQzIDIwIDg5IDIwcTQ3IDAgOTAgLTIwbDQwIDE2NXEtNjEgMjMgLTEzMCAyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJpIiBkPSJNNDYwIDY5OXExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzcS0xNzMgMCAtMjk2LjUgMTIzdC0xMjMuNSAyOTd0MTIzLjUgMjk3dDI5Ni41IDEyM3pNNTE0IDU2OXEtMzEgLTEgLTQ5IC0yMnQtMTggLTQ1cTAgLTI1IDEzLjUgLTQwLjV0MzYuNSAtMTUuNWgxcTI5IDAgNDguNSAyMC41dDE5LjUgNDguNXEwIDIzIC0xMyAzN3EtMTUgMTcgLTM5IDE3ek01NjUgOThsMyAzbC0yIDRsLTE4IDM4bC01IC00IHEtMTQgLTE0IC0zNC41IC0yOHQtMjQuNSAtMTV2NXEwIDcgMyAyMGw0NiAxODhxNiAyNSA2IDU3cTAgMTggLTYgMzBxLTcgMTIgLTIyIDEycS0yNSAwIC03MS41IC0yOC41dC05MS41IC03MC41bC0zIC0zbDE2IC00NWw2IDRxMzUgMzEgNTUgMzlxMCAtNiAtMyAtMjFsLTQzIC0xODJxLTYgLTMwIC02IC02MHEwIC0yNSAxMCAtMzZxOSAtMTAgMjYgLTEwcTIzIDAgNzAuNSAyOXQ4OC41IDc0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI4NzciIGQ9Ik04MzUgMjMydi0xbDEgLTF2LTFxMTkgLTM1IDE5IC03OXEwIC0xOCAtNSAtNDNxLTEyIC00NiAtNDUgLTgwbC02NCAtNjNxLTUxIC01MSAtMTIzIC01MXQtMTIyIDUxbC03NyA3NmwtNDcgNDhsLTMzIDMzcS0zNyAzNyAtNDggOTFxLTIgMjAgLTIgMzFxMCAxNyAzIDM1bDMgMTJxNCAxNSAxNCAzNHYxcTEgMSAyLjUgNGwyLjUgNWwxIDJsMSAxcTEgMSAyLjUgMy41dDIuNSAzLjV2MWwyIDJxMSAxIDMgMy41dDMgMy41djFsMiAybDQgNHQ0IDUgbDI4IDI4bDQgLTVsNTcgLTU2cTAgLTEgMiAtM3QyIC0zdDEgLTMuNXQxIC0zLjVsLTI1IC0yNXEtMSAtMSAtMyAtMy41dC00IC00LjVxMCAtMSAtMSAtMnYtMXEtMiAtMiAtNCAtNnEtMSAwIC0xIC0xdC0xIC0ydC0xLjUgLTMuNXQtMC41IC0zLjVsLTEgLTF2LTJxLTQgLTkgLTQgLTIycTAgLTE1IDcgLTMycTQgLTggMTQgLTIwbDU3IC01N2w0MCAtMzlsNjAgLTYxcTIxIC0yMSA1MiAtMjFxMzIgMCA1MiAyMWw2NCA2NHExMiAxMiAxOCAyOSBxMyAxMSAzIDIzcTAgMTAgLTMgMjFxLTUgMTkgLTE4IDMxbC05OCA5OHExIDYgMSAxN3EwIDIxIC0zIDQwcS0xMiA2OCAtNTkgMTE2cTM5IC0xMiA3MSAtNDJsMiAtMmwxNTcgLTE1N3ExOCAtMTggMjkgLTM5cTAgLTEgMSAtMXpNNTM4IDQ0MXEzOSAtMzkgNDggLTkxcTMgLTE1IDMgLTMxcTAgLTExIC00IC0zNWwtMyAtMTJxLTMgLTEyIC0xMyAtMzRsLTEgLTFxLTEgLTEgLTIuNSAtNGwtMi41IC01bC0xIC0ybC0xIC0xcS0yIC00IC01IC03IGwtMSAtMXEtMSAtMSAtMSAtMnEtMyAtMyAtNSAtN2wtMSAtMWwtMiAtMnEtMiAtMyAtOCAtOWwtMjggLTI4bC00IDVsLTU3IDU2cS0xIDEgLTIgM3QtMiAzdC0xIDMuNXQtMSAzLjVsMjUgMjVxMSAxIDMgMy41dDQgNC41cTAgMSAwLjUgMXQwLjUgMXYxcTIgMiA0IDZsMSAxcTEgMSAxIDJxMiA0IDMgN3YxcTAgMSAxIDJxMyAxMSAzIDIycTAgMTUgLTcgMzJxLTQgOCAtMTQgMjBsLTU3IDU3bC0zOSAzOWwtNjEgNjFxLTIxIDIxIC01MiAyMSB0LTUyIC0yMWwtNjQgLTY0cS0xMiAtMTIgLTE4IC0yOXEtMyAtMTEgLTMgLTIzcTAgLTEwIDMgLTIxcTUgLTE5IDE4IC0zMWw5OCAtOThxLTEgLTYgLTEgLTE3cTAgLTIzIDQgLTQwcTEwIC02NSA1OCAtMTE2cS00MCAxMiAtNzEgNDJsLTIgMmwtMTU3IDE1N3EtMTggMTggLTI5IDM5cTAgMSAtMSAxdjFsLTEgMXYxcS0xOSAzOCAtMTkgNzlxMCAxOCA1IDQzcTEyIDQ2IDQ1IDgwbDY0IDYzcTUxIDUxIDEyMyA1MXQxMjIgLTUxbDc3IC03NiBsNDcgLTQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9ImsiIGhvcml6LWFkdi14PSI4OTYiIGQ9Ik02NTcgNjEwcTg5IDAgMTQ4LjUgLTUwLjV0NTkuNSAtMTU5LjVxMCAtNDkgLTI2IC0xMDF0LTUyIC03OWwtMjYgLTI4bC0zMTMgLTMxMmwtMzEzIDMxMmwtMTEgMTF0LTI1IDMwdC0zMiA0NnQtMjUgNTYuNXQtMTEgNjQuNXEwIDEwOSA1OSAxNTkuNXQxNDggNTAuNXE5MCAwIDE5MSAtMTA3bDE5IC0yMXE0IDUgMTEuNSAxMy41dDMxIDMxdDQ3IDM5dDU2LjUgMzAuNXQ2MyAxNHoiIC8+CjxnbHlwaCB1bmljb2RlPSJsIiBob3Jpei1hZHYteD0iOTQyIiBkPSJNMjc5IDcwMGg2MDV2LTEzM2gtNjA1djEzM3pNMjc5IDI4NHYxMzNoNjA1di0xMzNoLTYwNXpNMjc5IDB2MTMzaDYwNXYtMTMzaC02MDV6TTEyMiA3MDBxMjggMCA0Ny41IC0xOS41dDE5LjUgLTQ2LjVxMCAtMjggLTE5LjUgLTQ3LjV0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ny41cTAgMjcgMTkuNSA0Ni41dDQ2LjUgMTkuNXpNMTIyIDQxOHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDcuNXEwIC0yNyAtMTkuNSAtNDYuNSB0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ni41cTAgMjggMTkuNSA0Ny41dDQ2LjUgMTkuNXpNMTIyIDEzNHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDYuNXEwIC0yOCAtMTkuNSAtNDcuNXQtNDcuNSAtMTkuNXEtMjcgMCAtNDYuNSAxOS41dC0xOS41IDQ3LjVxMCAyNyAxOS41IDQ2LjV0NDYuNSAxOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Im0iIGhvcml6LWFkdi14PSI4MDgiIGQ9Ik03NzEgNjk4di04M3YtNTE0cS0xIC01MiAtNDYuNSAtODh0LTExMC41IC0zNnQtMTExIDM3dC00NiA4OXQ0NiA4OXQxMTEgMzdxMzYgMCA3MCAtMTN2MzA4bC0zNTIgLTg0di00OTVxLTEgLTUyIC00NyAtODguNXQtMTEwIC0zNi41cS02NSAwIC0xMTEgMzd0LTQ2IDkwcTAgNTIgNDYgODl0MTExIDM3cTM1IDAgNjkgLTEzdjUxM2gybDQzOCAxMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0ibiIgaG9yaXotYWR2LXg9Ijk1NiIgZD0iTTc1OSA3MDBxNTggMCA5OSAtNDF0NDEgLTk5di01NjFxMCAtNTggLTQxIC05OXQtOTkgLTQxaC01NjFxLTU4IDAgLTk5IDQxdC00MSA5OXY1NjFxMCA1OCA0MSA5OXQ5OSA0MWg1NjF6TTc5NCA0OTBoLTUxM3YtMTE3aDUxM3YxMTd6TTI1OSAyMTdoLTk2di0xMTRoOTZ2MTE0ek0xNjMgMjM4aDk2djExNGgtOTZ2LTExNHpNMjgxIDIxN3YtMTE0aDUxM3YxMTRoLTUxM3pNMjgxIDIzOGg1MTN2MTE0aC01MTN2LTExNHpNMjU5IDQ5MGgtOTYgdi0xMTdoOTZ2MTE3ek0xNjMgLTFxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDYxdjExN2gtOTZ2LTgyek03NTkgLTM2cTE0IDAgMjQuNSAxMC41dDEwLjUgMjQuNXY4MmgtNTEzdi0xMTdoNDc4eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSI5NDEiIGQ9Ik04NjcgNTQ1cTExIDAgMTggLTcuNXQ3IC0xNy41di01MjVxMCAtMTEgLTcgLTE4dC0xOCAtN2gtNzg0cS0xMSAwIC0xOCA3dC03IDE4djUyNXEwIDEwIDcgMTcuNXQxOCA3LjVoMzhsMjkgNTlxMTEgMjIgMzYgMjJoMTU4cTI1IDAgMzYgLTIybDI4IC01OWg0NTl6IiAvPgo8Z2x5cGggdW5pY29kZT0icCIgaG9yaXotYWR2LXg9Ijg1NSIgZD0iTTU0MiA1NDlsMTUzIC0xNTNsLTQ2MCAtNDYwdjB2MGwtMjI2IC03NGw3MyAyMjd2MHYwek0xODggNjVsMzc5IDM3OWwtMjUgMjZsLTM4MCAtMzgwek02OTQgNzAxbDE1NCAtMTUzbC0xMDEgLTEwMGwtMTUzIDE1M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJxIiBob3Jpei1hZHYteD0iOTEwIiBkPSJNODY1IDE2MHEwIC00MiAtMjYgLTc1dC02NiAtNDRxMTUgLTQzIDY2IC04MnExMiAtOCAtOSAtMTRxLTQ1IC0xMSAtMTE0IDIxcS01MiAyNSAtOTcgNzFoLTI5OXEtNDIgMCAtNzcgMjdxMzAgMTggNTYgNDNoMjc2cTc0IDAgMTI2LjUgNTIuNXQ1Mi41IDEyNi41djIzNXE0NyAtNSA3OSAtNDB0MzIgLTgzdi0yMzh6TTY5OCAyODZxMCAtNTIgLTM2IC04OHQtODcgLTM2aC0yOThxLTQ5IC01MCAtMTAwIC03MnQtOTAgLTIycS0zNCAwIC0zNCAxMSBxMCAzIDMgNXE1MCAzOCA2NiA4MnEtNDAgMTEgLTY2IDQ0dC0yNiA3NnYyMzdxMCA1MSAzNiA4Ny41dDg4IDM2LjVoNDIxcTUxIDAgODcgLTM2LjV0MzYgLTg3LjV2LTIzN3oiIC8+CjxnbHlwaCB1bmljb2RlPSJyIiBob3Jpei1hZHYteD0iOTAwIiBkPSJNNzI2IDI3OGwyNCAyNGw5MSA5MXYtMjYwcTAgLTEyOCAtMTI4IC0xMjhoLTUwOXYtMTA4bC0xNzEgMTcybDE3MSAxNzJ2LTExNXYtNmg0ODRxMTYgMCAyNyAxMXQxMSAyN3YxMjB6TTE3NCAzMTlsLTI0IC0yNGwtOTEgLTkxdjI2MHEwIDEyNyAxMjggMTI3aDUwOXYxMDhsMTcxIC0xNzFsLTE3MSAtMTcydjExNXY2aC00ODRxLTE2IDAgLTI3IC0xMS41dC0xMSAtMjcuNXYtMTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSI4NjQiIGQ9Ik04MTYgNHEyMyAtMjMgMjMgLTU0cTAgLTI5IC0yMCAtNDhxLTE5IC0xOSAtNDcgLTE5cS0zMiAwIC01NSAyM2wtMjE5IDIxOXEtNzQgLTQ4IC0xNjYgLTQ4cS0xMjkgMCAtMjIwLjUgOTEuNXQtOTEuNSAyMjAuNXQ5MS41IDIyMC41dDIyMC41IDkxLjV0MjIwLjUgLTkxLjV0OTEuNSAtMjIwLjVxMCAtOTAgLTQ3IC0xNjV6TTUwNiAzODlxMCA3MiAtNTEgMTIzdC0xMjMgNTF0LTEyMyAtNTF0LTUxIC0xMjN0NTEgLTEyM3QxMjMgLTUxIHQxMjMgNTF0NTEgMTIzeiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NjAgNjk5cTE3MyAwIDI5NiAtMTIzdDEyMyAtMjk2cTAgLTE3NCAtMTIzIC0yOTd0LTI5NiAtMTIzcS0xNzQgMCAtMjk3IDEyM3QtMTIzIDI5N3EwIDE3MyAxMjMgMjk2dDI5NyAxMjN6TTQ2MCAtMzVxMTMwIDAgMjIyIDkyLjV0OTIgMjIyLjV0LTkyIDIyMnQtMjIyIDkydC0yMjIuNSAtOTJ0LTkyLjUgLTIyMnQ5Mi41IC0yMjIuNXQyMjIuNSAtOTIuNXpNNjYzIDE4NnExNCAtMTAgNSAtMjRsLTI0IC0zOXEtNSAtNiAtMTEgLThoLTQgcS01IDAgLTEwIDNsLTE5MyAxMjlxLTEgMSAtMi41IDJ0LTIuNSAxcS01IDcgLTUgMTN2MjI4cTAgNyA1IDEycTcgNSAxMyA1aDQ2cTcgMCAxMiAtNXQ1IC0xMnYtMTkzeiIgLz4KPGdseXBoIHVuaWNvZGU9InUiIGhvcml6LWFkdi14PSI5NTUiIGQ9Ik02MCA2MzFoODM1di02NzNoLTgzNXY2NzN6TTgyNSAyOHY1MzRoLTY5NXYtNTM0aDY5NXpNMjI1IDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNNzMxIDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNMjI1IDE1OXExOCAwIDMwLjUgLTEzIHQxMi41IC0zMXQtMTIuNSAtMzAuNXQtMzAuNSAtMTIuNXQtMzEgMTIuNXQtMTMgMzAuNXQxMyAzMXQzMSAxM3pNNzMxIDE1OXExOCAwIDMwLjUgLTEzdDEyLjUgLTMxdC0xMi41IC0zMC41dC0zMC41IC0xMi41dC0zMSAxMi41dC0xMyAzMC41dDEzIDMxdDMxIDEzek01OTMgNDU3di0zMjVoLTIyOHYzMjVoMjI4ek01MzMgMTgxdjExOGgtMTA5di0xMThoMTA5eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSI5NDUiIGQ9Ik04NjYgNTU3cTEwIDAgMTcuNSAtN3Q3LjUgLTE3di00NzJxMCAtMTEgLTcuNSAtMTh0LTE3LjUgLTdoLTc4NnEtMTAgMCAtMTcuNSA3dC03LjUgMTh2NDcycTAgMTAgNy41IDE3dDE3LjUgN2gxNzNxMCAxIDEgMWwyMyA0OHE0IDkgMTUgMTUuNXQyMSA2LjVoMzE5cTI1IDAgMzYgLTIybDI0IC00OHYtMWgxNzR6TTQ3MiAxMjBxNzUgMCAxMjggNTIuNXQ1MyAxMjcuNXQtNTMgMTI4dC0xMjggNTNxLTc0IDAgLTEyNyAtNTN0LTUzIC0xMjggdDUzIC0xMjcuNXQxMjcgLTUyLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjkyNyIgZD0iTTg4NSAzOTdxMTYgLTEzNyAtOTQuNSAtMjQ3dC0yODIuNSAtMTI5cS02MiAtNyAtMTIwIDBxLTkyIC05NSAtMTk3IC0xMDZxLTQ3IC01IC01NiA4cS0zIDQgMyA4cTg4IDY2IDgwIDE0NXEtNjkgMzkgLTExMiA5OHQtNTEgMTMwcS0xNiAxMzYgOTQgMjQ2LjV0MjgyIDEzMC41cTE3MiAxOSAzMDQuNSAtNjR0MTQ5LjUgLTIyMHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ4IiBob3Jpei1hZHYteD0iOTQ5IiBkPSJNNTI2IDEwMHEyIDEwIDIgMTZsOTggOThsMTM5IC0xMzlsOTQgLTY5bDEwIC0zOGwtMTA0IC0xMDRsLTM3IDEwbC03MCA5NHpNNzU1IDIycS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMS41cTAgLTE4IDEyLjUgLTMwLjV0MzAuNSAtMTIuNXExOSAwIDMxLjUgMTIuNXQxMi41IDMwLjVxMCAxOSAtMTIuNSAzMS41dC0zMS41IDEyLjV6TTQ2OSAzNzFsLTk4IC05OHEtNiAwIC0xNiAtMmwtNzEgNzBxLTMyIC0xNSAtNTYgLTE1IHEtNzQgMCAtMTMzLjUgNjB0LTYwLjUgMTM0cTAgMSAxNyAxOHE2MyAtNjMgNzEgLTY4dDQ1IC01cTI5IDAgNjUuNSAzNnQzNi41IDY2cTAgMzYgLTYgNDUuNXQtNjcgNjkuNXExNSAxOCAxOCAxOHE3NCAxIDEzNCAtNTkuNXQ2MCAtMTM0LjVxMCAtMjcgLTE2IC01N3pNNzg2IDIwMnEwIDMgMC41IDcuNXQwLjUgMTguNXQtMS41IDI4dC01LjUgMzJ0LTEwLjUgMzMuNXQtMTkgMzAuNXQtMjguNSAyNGgtM3EtMTAgMCAtMzQgLTIybC0yMTggLTIxNyBxOCAtMjkgLTggLTQ3cS0yIC0xIC03IC02bC0yMDEgLTIwMXEtNSAtNSAtNiAtN3EtMTEgLTExIC0yOSAtMTFxLTQxIDAgLTc3IDQ4dC04IDc3cTMgMiA2IDZsMjAyIDIwMnE1IDMgNiA2cTExIDExIDI4IDExcTkgMCAxOSAtM2wxOTQgMTk0bDQgNnE0IDYgNS41IDh0NSA4LjV0NC41IDExdDEuNSAxMXQtMSAxMy41dC00LjUgMTRxLTE2IDI5IC02MCAzOGgtMXEtMTYgMCAtNTUgMzdsLTYgNnEtMTkgMTkgLTIwIDI1dDE4IDI3bDcyIDczIHExNyAxNyAyNiAxN3E2IDAgMjYgLTIwbDYgLTZxMzMgLTMzIDM3IC00OXE0IC0yMCAyNCAtNDZxMyAtNCAxOCAtNHQxOSAtNGwxMTkgLTExOXE3MyAtNzMgMzAgLTI1MmwtMTUgLTUweiIgLz4KPGdseXBoIHVuaWNvZGU9InkiIGhvcml6LWFkdi14PSI4OTciIGQ9Ik04NDMgMzU5cTkgLTEgMTUuNSAtOXQ2LjUgLTE3di05N3EwIC05IC02LjUgLTE3dC0xNS41IC05bC0xMjQgLTIzcS05IC0yIC0xMiAtOHQyIC0xNGw3MiAtMTA2cTEyIC0xOSAtNCAtMzVsLTY4IC02OHEtMTYgLTE2IC0zNCAtM2wtMTA2IDcxcS03IDUgLTE0LjUgMi41dC04LjUgLTExLjVsLTIzIC0xMjVxLTEgLTkgLTkgLTE1LjV0LTE3IC02LjVoLTk3cS05IDAgLTE3IDYuNXQtOSAxNS41bC0yMyAxMjVxLTEgOSAtOC41IDExLjUgdC0xNC41IC0yLjVsLTEwNSAtNzFxLTIwIC0xMiAtMzUgM2wtNjggNjhxLTE2IDE2IC00IDM1bDcyIDEwNnE1IDggMiAxNHQtMTIgOGwtMTI0IDIzcS05IDEgLTE1LjUgOXQtNi41IDE3djk3cTAgOSA2LjUgMTd0MTUuNSA5bDEyNCAyM3EyMiA2IDEwIDIzbC03MiAxMDZxLTExIDE5IDQgMzRsNjggNjhxMTYgMTYgMzUgNGwxMDUgLTcycTcgLTUgMTQuNSAtMnQ4LjUgMTJsMjMgMTI0cTEgOSA5IDE1LjV0MTcgNi41aDk3cTkgMCAxNyAtNi41IHQ5IC0xNS41bDIzIC0xMjRxMSAtOSA4LjUgLTEydDE0LjUgMmwxMDYgNzJxMTggMTIgMzQgLTRsNjggLTY4cTE1IC0xNSA0IC0zNGwtNzIgLTEwNnEtMTIgLTE3IDEwIC0yM3pNNDQ4IDEzNHE2MyAwIDEwNyA0NHQ0NCAxMDZ0LTQ0IDEwNi41dC0xMDcgNDQuNXEtNjIgMCAtMTA2IC00NC41dC00NCAtMTA2LjV0NDQgLTEwNnQxMDYgLTQ0eiIgLz4KPGdseXBoIHVuaWNvZGU9InoiIGhvcml6LWFkdi14PSI3MzYiIGQ9Ik00MzMgLTMzcTM0IDAgNTUgMjNsMTc2IDE3NmwzOSAtMzlxMTUgLTE1IDAgLTMxbC0yNTQgLTI1NHEtMTUgLTE2IC0zMSAwbC0zNTAgMzUwcS0xNSAxNSAtMTcgMzZsLTggOTdsMzM1IC0zMzVxMjMgLTIzIDU1IC0yM3pNMzUzIDY2NGwzNTAgLTM0OXExNiAtMTYgMCAtMzFsLTI1NCAtMjU1cS03IC02IC0xNiAtNnQtMTUgNmwtMzUwIDM1MHEtMTUgMTcgLTE3IDM3bC0xNyAxOTBxLTIgMjIgMTQgMzZsNDMgNDRxMTUgMTMgMzQgMTNoMyBsMTg5IC0xN3EyMiAtMiAzNiAtMTh6TTExNSA2MTdxLTE0IC0xMyAtMTQgLTMzdDE0IC0zM3ExMyAtMTMgMzMgLTEzdDMzIDEzdDEzIDMzdC0xMyAzM3EtMTQgMTQgLTMzIDE0dC0zMyAtMTR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieyIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTc1MSAyOTloLTI3OHYtNDA4aC0xODV2NDA4aC0yNzdsMzcwIDQyOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ8IiBob3Jpei1hZHYteD0iOTE1IiBkPSJNMTgyIDI4MHEtMyAtMTYgLTMgLTM1di02OXEtNTggMCAtOTguNSA0MC41dC00MC41IDk4LjV2MjQ0cTAgNTggNDAuNSA5OC41dDk4LjUgNDAuNWgzNDhxNTggMCA5OC41IC00MC41dDQwLjUgLTk4LjV2LTEwNWgtMTA0djEwNXEwIDE0IC0xMC41IDI0LjV0LTI0LjUgMTAuNWgtMzQ4cS0xNCAwIC0yNC41IC0xMC41dC0xMC41IC0yNC41di0yNDRxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDN6TTczNiAzODVxNTcgMCA5OCAtNDEgdDQxIC05OXYtMjQzcTAgLTU4IC00MSAtOTl0LTk4IC00MWgtMzQ4cS01OCAwIC05OC41IDQxdC00MC41IDk5djI0M3EwIDU4IDQwLjUgOTl0OTguNSA0MWgzNDh6TTc3MCAydjI0M3EwIDE1IC0xMCAyNXQtMjQgMTBoLTM0OHEtMTQgMCAtMjQuNSAtMTB0LTEwLjUgLTI1di0yNDNxMCAtMTUgMTAuNSAtMjV0MjQuNSAtMTBoMzQ4cTE0IDAgMjQgMTB0MTAgMjV6IiAvPgo8Z2x5cGggdW5pY29kZT0ifSIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTExIDMwMWgyNzd2NDA5aDE4NXYtNDA5aDI3OGwtMzcwIC00Mjd6IiAvPgo8Z2x5cGggdW5pY29kZT0ifiIgZD0iTTQ2MCA2OTlxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTYyOCAzNHYyMzJoLTE2NmwxNDUgMTY3aC0xMTJ2MTM1aC03NXYtMTM1aC0xMTJsMTQ0IC0xNjdoLTE2MnYtMjMyaDE0NWwtMzkgLTM5aDEyNmwtMzkgMzloMTQ1ek0zMzMgNzZ2MTQ4aDI1M3YtMTQ4aC0yNTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZmY7IiBob3Jpei1hZHYteD0iODMzIiAvPgo8Z2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+IA==') format('svg')}.x-tab .x-button-icon:before,.x-button .x-button-icon:before{font-family:"Pictos"}.x-img.x-img-image{text-align:center}.x-img.x-img-image img{width:auto;height:100%}.x-img.x-img-background{background-repeat:no-repeat;background-position:center;background-size:auto 100%}.x-map{background-color:#edeae2}.x-map *{-webkit-box-sizing:content-box;box-sizing:content-box}.x-mask-map{background:transparent !important}.x-map-container{position:absolute !important;top:0;left:0;right:0;bottom:0}.x-mask{min-width:8.5em;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;z-index:10;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0,0,0,0.3) center center no-repeat}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask.x-mask-transparent{background-color:transparent}.x-mask .x-mask-inner{position:relative;background:rgba(0,0,0,0.25);color:#fff;text-align:center;padding:.4em;font-size:.95em;font-weight:bold}.x-mask .x-loading-spinner-outer{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;min-width:8em;height:8em}.x-mask.x-indicator-hidden .x-mask-inner{padding-bottom:0 !important}.x-mask.x-indicator-hidden .x-loading-spinner-outer{display:none}.x-mask.x-indicator-hidden .x-mask-message{position:relative;bottom:.25em}.x-mask .x-mask-message{position:absolute;bottom:5px;color:#333;left:0;right:0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-mask.x-has-message .x-mask-inner{padding-bottom:2em}.x-mask.x-has-message .x-loading-spinner-outer{height:168px}.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el{visibility:collapse}.x-video{height:100%;width:100%;background-color:#000}.x-video>*{height:100%;width:100%;position:absolute}.x-video-ghost{-webkit-background-size:100% auto;background:#000 url() center center no-repeat}audio{width:100%}.x-msgbox{min-width:15em;max-width:20em;max-height:90%;margin:6px;border:1px solid #ccc}.x-msgbox .x-docking-vertical{overflow:hidden}.x-msgbox .x-toolbar.x-docked-top{border-bottom:0}.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-msgbox-text{text-align:center}.x-msgbox-buttons .x-button{min-width:4.5em}.x-progressindicator{width:50%;height:1.3em}.x-progressindicator .x-progressindicator-inner{background:#222222;padding:10px;height:100%;border-radius:20px;box-shadow:0px 5px 17px rgba(40,40,40,0.5);box-sizing:content-box;position:relative}.x-progressindicator .x-progressindicator-text{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;position:absolute;top:0px;left:0px;color:white;text-shadow:1px 1px 2px black}.x-progressindicator .x-progressindicator-bar{height:100%;width:0%;border-radius:10px}.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill{height:100%;width:100%;background-color:gray;border-radius:10px;-webkit-animation-name:progressIndicator;-moz-animation-name:progressIndicator;-ms-animation-name:progressIndicator;-o-animation-name:progressIndicator;animation-name:progressIndicator;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background-repeat:repeat-x;background-size:30px 30px;background-image:-webkit-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-moz-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-o-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-ms-linear-gradient(-45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}@-webkit-keyframes progressIndicator{to{background-position:30px}}@-moz-keyframes progressIndicator{to{background-position:30px}}@keyframes progressIndicator{to{background-position:30px}}.x-panel,.x-msgbox{position:relative}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{padding:6px;background-color:#ccc}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{z-index:1;background-color:#fff}.x-panel.x-floating>.x-dock,.x-msgbox>.x-dock,.x-form.x-floating>.x-dock{z-index:1}.x-panel.x-floating>.x-dock.x-sized,.x-msgbox>.x-dock.x-sized,.x-form.x-floating>.x-dock.x-sized{margin:6px}.x-sheet,.x-sheet-action{height:auto}.x-toolbar{position:relative;background-color:#eee;min-height:2.6em;overflow:hidden}.x-toolbar.x-docked-top{border-bottom:1px solid}.x-toolbar.x-docked-bottom{border-top:1px solid}.x-toolbar.x-docked-left{width:50px;height:auto;border-right:1px solid}.x-toolbar.x-docked-right{width:50px;height:auto;border-left:1px solid}.x-title{font-size:1.2em;text-align:center;font-weight:bold;max-width:100%}.x-title.x-title-align-left{padding-left:10px}.x-title.x-title-align-right{padding-right:10px}.x-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-navigation-bar .x-container{overflow:visible}.x-toolbar-inner .x-field .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-ie .x-toolbar-inner{height:100% !important}.x-toast{min-width:15em;max-width:20em;max-height:90%;margin:6px}.x-toast .x-toast-text{text-align:center}.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-menu{background:#eee}.x-carousel-inner{position:relative;overflow:hidden}.x-carousel-item,.x-carousel-item>*{position:absolute !important;width:100%;height:100%}.x-carousel-indicator{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-carousel-indicator span{display:block;width:10px;height:10px;margin:3px;background-color:#eee}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#ccc}.x-carousel-indicator-horizontal{width:100%}.x-carousel-indicator-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.x-android-3 .x-surface-wrap,.x-android-3 .x-surface-wrap>*{-webkit-perspective:1}.x-draw-component{position:relative}.x-draw-component .x-inner{overflow:hidden}.x-surface{position:absolute}.x-chart-watermark{opacity:0.5;z-index:9;right:0;bottom:0;background:rgba(0,0,0,0.5);color:white;padding:4px 6px;font-family:"Helvetica";font-size:12px;position:absolute;border-top-left-radius:4px;white-space:nowrap;-webkit-border-top-left-radius:4px}.x-legend .x-legend-inner .x-legend-container{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #ccc;background:#fff}.x-legend .x-legend-inner .x-legend-container .x-legend-item{padding:0.8em 1em 0.8em 1.8em;color:#333;background:rgba(255,255,255,0);max-width:20em;min-width:0;font-size:14px;line-height:14px;font-weight:bold;white-space:nowrap;position:relative}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);opacity:.3}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker{position:absolute;width:.8em;height:.8em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;-webkit-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;left:.7em;top:1em}.x-legend.x-docked-top .x-legend-item,.x-legend.x-docked-bottom .x-legend-item{border-right:1px solid rgba(204,204,204,0.5)}.x-legend.x-docked-top .x-legend-item:last-child,.x-legend.x-docked-bottom .x-legend-item:last-child{border-right:0}.x-legend.x-docked-left .x-legend-inner,.x-legend.x-docked-right .x-legend-inner{display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center}.x-chart-toolbar{position:absolute;z-index:9;display:-webkit-box;display:-moz-box;display:-ms-box;display:box;padding:.6em}.x-chart-toolbar .x-button{margin:.2em}.x-chart-toolbar[data-side=left],.x-chart-toolbar[data-side=right]{top:0;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}.x-chart-toolbar[data-side=left]{left:0}.x-chart-toolbar[data-side=right]{right:0}.x-chart-toolbar[data-side=top],.x-chart-toolbar[data-side=bottom]{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal;right:0}.x-chart-toolbar[data-side=top]{top:0}.x-chart-toolbar[data-side=bottom]{bottom:0;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}.x-tab .x-button-icon.list:before,.x-button .x-button-icon.list:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"l"}.x-tab .x-button-icon.expand:before,.x-button .x-button-icon.expand:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"`"}.x-dataview-inlineblock .x-dataview-item,.x-dataview-inlineblock .x-data-item{display:inline-block !important}.x-dataview-nowrap .x-dataview-container{white-space:nowrap !important}.x-dataview-nowrap .x-container.x-dataview{white-space:nowrap !important}.x-list{overflow:hidden}.x-list .x-scroll-scroller{max-width:100%}.x-list .x-list-inner{width:100% !important}.x-list.x-list-indexed .x-list-disclosure{margin-right:50px}.x-list .x-item-selected .x-list-disclosure{background-color:#fff}.x-list .x-list-scrolldock-hidden{display:none}.x-list .x-list-item{position:absolute !important;left:0;top:0;width:100%}.x-list .x-list-item>.x-dock{height:auto}.x-list .x-list-item .x-dock-horizontal{border-top:1px solid #ccc}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-color:#ccc}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background-color:#ddd}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:5px}.x-list .x-list-item.x-list-item-relative{position:relative !important}.x-list .x-list-header{background-color:#eee;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-weight:bold}.x-list .x-list-header.x-list-item-relative{position:relative !important}.x-list .x-list-disclosure{margin:5px 15px 5px 0;overflow:visible;width:20px;height:20px;border:1px solid #ccc;background-color:#eee}.x-list .x-list-item-tpl .x-list-disclosure{position:absolute;right:0px;top:0px}.x-list .x-list-emptytext{text-align:center;pointer-events:none;font-color:#333333;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-list.x-list-indexed .x-list-disclosure{margin-right:35px}.x-list .x-list-scrolldockitem{position:absolute !important;left:0;top:0;width:100%}.x-ie .x-list-grouped .x-translatable-container .x-list-item:before,.x-ie .x-list-grouped .x-translatable-container .x-list-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-list-header{position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-list-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,.x-list-grouped .x-list-item-tpl.x-list-header-wrap{border-top:0}.x-list-inlineblock .x-list-item{display:inline-block !important}.x-list-nowrap .x-list-inner{width:auto}.x-list-nowrap .x-list-container{white-space:nowrap !important}.x-list-item-dragging{border-bottom:1px solid #ccc;background:#fff !important;z-index:1}.x-indexbar-wrapper{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;pointer-events:none}.x-indexbar{pointer-events:auto;z-index:2;min-height:0 !important;height:auto !important;-webkit-box-flex:0 !important;-ms-flex:0 0 auto !important;flex:0 0 auto !important}.x-indexbar>div{font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-indexbar-vertical{width:15px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px}.x-indexbar-horizontal{height:15px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-phone.x-landscape .x-indexbar>div{font-size:0.38em;line-height:1em}.x-indexbar-pressed{background-color:#ccc}.x-form-label{display:none !important}.x-form-label span{font-weight:bold}.x-form-label-nowrap .x-form-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-field{display:flex;display:-webkit-box;display:-ms-flexbox}.x-field .x-field-input{position:relative;min-width:3.7em}.x-field .x-field-input,.x-field .x-input-el{width:100%}.x-field.x-field-labeled .x-form-label{display:block !important}.x-field .x-component-outer{position:relative}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-label-align-left .x-component-outer,.x-label-align-right .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-label-align-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-label-align-bottom{-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.x-input-el{display:block}.x-field-mask{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-ie .x-field.x-field-text .x-field-mask,.x-ie .x-field.x-field-textarea .x-field-mask,.x-ie .x-field.x-field-search .x-field-mask{z-index:-1}.x-field-required .x-form-label:after{content:"*";display:inline}.x-spinner .x-component-outer{display:flex;display:-webkit-box;display:-ms-flexbox}.x-spinner .x-component-outer>*{width:auto}.x-spinner .x-field-input{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-spinner .x-field-input .x-input-el{width:100%;text-align:center}.x-spinner .x-field-input input::-webkit-outer-spin-button,.x-spinner .x-field-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-spinner .x-spinner-button{text-align:center;border:1px solid #ccc !important;background-color:#eee}.x-spinner.x-field-grouped-buttons .x-input-el{text-align:left}.x-select-overlay .x-list-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.x-field-number input::-webkit-outer-spin-button,.x-field-number input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-field-input .x-clear-icon,.x-field-input .x-reveal-icon{display:none;width:10px;height:10px;background-color:#ccc;position:absolute;top:50%;right:0}.x-field-clearable .x-clear-icon{display:block}.x-field-clearable .x-field-input{padding-right:10px}.x-field-revealable .x-reveal-icon{display:block}.x-field-revealable .x-field-input{padding-right:10px}.x-field-clearable.x-field-revealable .x-reveal-icon{right:20px}.x-android .x-input-el{-webkit-text-fill-color:#000}.x-android .x-empty .x-input-el{-webkit-text-fill-color:#A9A9A9}.x-android .x-item-disabled .x-input-el{-webkit-text-fill-color:#b3b3b3}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ccc;overflow:hidden}.x-form-fieldset .x-dock .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-form-fieldset-title{font-weight:bold}.x-form-fieldset-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-form-fieldset-instructions{text-align:center}.x-ie .x-field-select .x-field-mask{z-index:3}.x-sheet.x-picker{padding:0}.x-sheet.x-picker .x-sheet-inner{background-color:#fff;overflow:hidden}.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body{border-left:1px solid #999999;border-right:1px solid #ACACAC}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body{border-left:0}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body{border-left:0;border-right:0}.x-picker-slot .x-scroll-view{z-index:2;position:relative}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none}.x-picker-slot-title{position:relative;z-index:2}.x-picker-slot-title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold}.x-picker-slot .x-dataview-inner{width:100% !important}.x-picker-slot .x-dataview-item{vertical-align:middle;height:30px;line-height:30px}.x-picker-slot .x-dataview-item.x-item-selected{font-weight:bold}.x-picker-slot .x-picker-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-ie .x-picker-item{cursor:default}.x-ie .x-picker-item::before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;clear:both}.x-list-paging.x-loading .x-loading-spinner{display:block}.x-list-paging.x-loading .x-list-paging-msg{display:none}.x-list-pullrefresh{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;top:-5em;left:0;width:100%;height:4.5em}.x-list-pullrefresh .x-loading-spinner{display:none}.x-list-pullrefresh-arrow{width:2.5em;height:4.5em;background-color:#bbb}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;text-align:center}.x-list-pullrefresh-updated{text-align:center}.x-list-pullrefresh-loading *.x-loading-spinner{display:block}.x-list-pullrefresh-loading .x-list-pullrefresh-arrow{display:none}.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner{display:none}.x-slider,.x-toggle{position:relative;height:16px;min-height:0;min-width:0}.x-slider>*,.x-toggle>*{position:absolute;width:100%;height:100%}.x-thumb{position:absolute;height:16px;width:10px;border:1px solid #ccc;background-color:#ddd}.x-slider:before{content:'';position:absolute;width:auto;height:8px;top:4px;left:0;right:0;margin:0 5px;background-color:#eee}.x-toggle{border:1px solid #ccc;width:30px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-toggle-on{background-color:#eee}.x-tab{z-index:1;overflow:visible !important;background-color:#eee;border:1px solid #ccc}.x-tabbar{border-color:#ccc;border-style:solid;border-width:0;background-color:#eee}.x-tabbar.x-docked-top{border-bottom-width:1px}.x-tabbar.x-docked-top .x-tab .x-button-icon{position:relative}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown{display:inline-block}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden{display:none}.x-tabbar.x-docked-bottom{border-top-width:1px}.x-tabbar.x-docked-bottom .x-tab .x-button-icon{display:block;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown{visibility:visible}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden{visibility:hidden}.x-tab{position:relative;min-width:3.3em}.x-table-inner{display:table !important;width:100% !important;height:100% !important}.x-table-inner.x-fixed-layout{table-layout:fixed !important}.x-table-row{display:table-row !important}.x-table-cell{display:table-cell !important;vertical-align:middle}.x-orientation-inspector{display:none;content:"landscape"}@media (orientation: portrait){.x-orientation-inspector{content:"portrait"}}.x-grid .x-grid-header-container{border-width:0 1px 1px 0;border-style:solid;height:65px;font-weight:bold;overflow:hidden}.x-grid .x-grid-header-container .x-grid-column{display:inline-block}.x-grid .x-grid-header-container .x-grid-header-container-inner{width:100000px;position:absolute;top:0;left:0}.x-grid .x-grid-column{height:64px;border-width:1px 1px 0 1px;border-style:solid;line-height:64px;vertical-align:middle;padding:0 8px}.x-grid .x-grid-column .x-innerhtml{display:inline-block;width:auto;position:relative}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{position:absolute;width:12px;line-height:64px;top:0;height:64px;font-family:'Pictos';font-size:12px}.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after,.x-grid .x-grid-column.x-column-align-center .x-innerhtml:after{right:-16px}.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after{left:-16px}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after{content:"{"}.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{content:"}"}.x-grid .x-grid-headergroup{display:inline-block;position:relative;vertical-align:bottom;height:64px;padding-top:32px}.x-grid .x-grid-headergroup .x-inner>.x-innerhtml{height:32px;line-height:28px;vertical-align:middle;display:block;position:absolute;width:100%;top:0;left:0;text-align:center;border-style:solid;border-width:1px;overflow:hidden;text-overflow:ellipsis}.x-grid .x-grid-headergroup .x-grid-column{height:32px !important;line-height:27px !important;font-size:0.7em}.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after{line-height:27px;height:27px}.x-grid .x-grid-row{position:absolute;left:0;top:0;border-width:0 0 1px 0;border-style:solid}.x-grid .x-grid-cell{display:inline-block;vertical-align:middle;line-height:60px;padding:0 8px;height:60px;overflow:hidden;border-width:0 1px 0 0}.x-grid .x-grid-cell-align-center,.x-grid .x-grid-column-align-center{text-align:center}.x-grid .x-grid-cell-align-right,.x-grid .x-grid-column-align-right{text-align:right}.x-grid .x-grid-viewoptions{border-width:0 0 0 1px;border-style:solid}.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml{padding:0px !important}.x-grid .x-grid-viewoptions .x-column-options-header{height:32px;line-height:28px;vertical-align:middle;border-style:solid;border-width:1px;overflow:hidden;padding-left:10px}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,.x-grid .x-grid-viewoptions .x-column-options-groupindicator,.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:40px;height:48px;position:absolute;bottom:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{position:absolute;top:0;left:0;height:100%;width:100%;text-align:center;font-size:24px;font-family:'Pictos';line-height:48px;content:"l";vertical-align:middle}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle{left:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after{line-height:54px}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator{right:0}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after{font-size:30px;line-height:54px;content:"E"}.x-grid .x-grid-viewoptions .x-column-options-groupindicator{right:40px}.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after{font-size:30px;line-height:54px;content:"g"}.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:30px;left:40px}.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{line-height:52px;content:"o"}.x-grid .x-grid-viewoptions .x-column-options-leaf:after{content:"F"}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl{background:transparent}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml{background:transparent}.x-grid .x-grid-viewoptions .x-column-options-text{display:block;height:30px;margin:10px 50px 5px 80px;position:relative;vertical-align:middle;line-height:28px}.x-grid .x-grid-columnoptions{border-width:0 0 1px}.x-grid .x-grid-multiselection-column{position:relative;padding:0}.x-grid .x-grid-multiselection-column:after{position:absolute;top:0;left:0;width:60px;height:64px;line-height:64px;font-family:'Pictos';font-size:26px;text-align:center;content:"2"}.x-grid .x-grid-multiselection-cell{position:relative;padding:0}.x-grid .x-grid-multiselection-cell:after{position:absolute;top:0;left:0;width:60px;height:60px;line-height:60px;font-family:'Pictos';font-size:20px;text-align:center;content:"_"}.x-grid .x-item-selected .x-grid-multiselection-cell:after{content:"3"}.x-grid .x-grid-pagingtoolbar>.x-body{padding:0 30px 0 50px}.x-grid .x-grid-pagingtoolbar-currentpage{position:relative;height:22px}.x-grid .x-grid-pagingtoolbar-currentpage span{position:absolute;right:0;top:0;line-height:22px;height:22px}.x-grid .x-grid-summaryrow{height:32px;font-size:0.8em;position:relative}.x-grid .x-grid-summaryrow .x-grid-cell{height:32px;line-height:30px;border-width:0 0 1px;border-style:solid}.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after{content:''}.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before,.x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-grid-header{line-height:44px;font-weight:bold;position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-grid-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap{border-top:0}.x-scroll-view{position:relative;display:block;overflow:hidden}.x-scroll-container{position:absolute;width:100%;height:100%}.x-scroll-scroller{position:absolute;min-width:100%;min-height:100%;height:auto !important;width:auto !important}.x-scroll-stretcher{position:absolute;visibility:hidden}.x-scroll-bar-grid-wrapper{position:absolute;width:100%;height:100%}.x-scroll-bar-grid{display:table;width:100%;height:100%}.x-scroll-bar-grid>*{display:table-row}.x-scroll-bar-grid>*>*{display:table-cell}.x-scroll-bar-grid>:first-child>:first-child{width:100%;height:100%}.x-scroll-bar-grid>:first-child>:nth-child(2){padding:3px 3px 0 0}.x-scroll-bar-grid>:nth-child(2)>:first-child{padding:0 0 3px 3px}.x-scroll-bar{position:relative;overflow:hidden}.x-scroll-bar-stretcher{position:absolute;visibility:hidden;width:100%;height:100%}.x-scroll-bar-x{width:100%}.x-scroll-bar-x>.x-scroll-bar-stretcher{width:300%}.x-scroll-bar-x.active{height:6px}.x-scroll-bar-y{height:100%}.x-scroll-bar-y>.x-scroll-bar-stretcher{height:300%}.x-scroll-bar-y.active{width:6px}.x-scroll-indicator{background:#333;position:absolute;z-index:3}.x-scroll-indicator-x{height:100%}.x-scroll-indicator-y{width:100%}.x-scroll-indicator.rounded{background:none}.x-scroll-indicator.rounded>*{position:absolute;background-color:#333}.x-scroll-indicator.rounded>:nth-child(2){-webkit-transform-origin:0% 0%;background:none;content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-light>*{background-color:#eee}.x-scroll-indicator.rounded.x-scroll-indicator-light>:nth-child(2){content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-y>*{width:100%}.x-scroll-indicator.rounded.x-scroll-indicator-y>:first-child{height:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:nth-child(2){height:1px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:last-child{height:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>*{height:100%}.x-scroll-indicator.rounded.x-scroll-indicator-x>:first-child{width:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:nth-child(2){width:1px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:last-child{width:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-list-light .x-scroll-indicator,.x-dataview-light .x-scroll-indicator{background:#fff}.x-ios .x-scroll-scroller{-webkit-transform:translate3d(0, 0, 0)}.x-ie .x-scroll-bar-y{position:absolute;margin-left:-5px}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:.5em .5em;transform-origin:.5em .5em}.x-loading-spinner>span,.x-loading-spinner>span:before,.x-loading-spinner>span:after{display:block;position:absolute;width:.1em;height:.25em;top:0;-webkit-transform-origin:.05em .5em;transform-origin:.05em .5em;content:" "}.x-loading-spinner>span{left:50%;margin-left:-0.05em}.x-loading-spinner>span.x-loading-top{background-color:rgba(170,170,170,0.99)}.x-loading-spinner>span.x-loading-top::after{background-color:rgba(170,170,170,0.9)}.x-loading-spinner>span.x-loading-left::before{background-color:rgba(170,170,170,0.8)}.x-loading-spinner>span.x-loading-left{background-color:rgba(170,170,170,0.7)}.x-loading-spinner>span.x-loading-left::after{background-color:rgba(170,170,170,0.6)}.x-loading-spinner>span.x-loading-bottom::before{background-color:rgba(170,170,170,0.5)}.x-loading-spinner>span.x-loading-bottom{background-color:rgba(170,170,170,0.4)}.x-loading-spinner>span.x-loading-bottom::after{background-color:rgba(170,170,170,0.35)}.x-loading-spinner>span.x-loading-right::before{background-color:rgba(170,170,170,0.3)}.x-loading-spinner>span.x-loading-right{background-color:rgba(170,170,170,0.25)}.x-loading-spinner>span.x-loading-right::after{background-color:rgba(170,170,170,0.2)}.x-loading-spinner>span.x-loading-top::before{background-color:rgba(170,170,170,0.15)}.x-loading-spinner>span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg)}.x-loading-spinner>span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg)}.x-loading-spinner>span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg)}.x-loading-spinner>span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg)}.x-loading-spinner>span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg)}.x-loading-spinner>span::after{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);-ms-transform:rotate(-30deg)}.x-loading-spinner{-webkit-animation-name:x-loading-spinner-rotate;-webkit-animation-duration:.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-name:x-loading-spinner-rotate;animation-duration:.5s;animation-timing-function:linear;animation-iteration-count:infinite}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-button{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;min-height:1.8em;padding:.3em .6em}.x-button,.x-toolbar .x-button{border:1px solid #999;border-top-color:#a6a6a6;background-color:#ccc;color:#000}.x-button.x-button-back:before,.x-button.x-button-forward:before,.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#999}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after,.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:none;background-color:#ccc;background-image:-webkit-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-moz-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-o-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-ms-linear-gradient(to bottom, #f2f2f2,#d9d9d9 3%,#bfbfbf)}.x-button.x-button-pressing,.x-button.x-button-pressing:after,.x-button.x-button-pressed,.x-button.x-button-pressed:after,.x-button.x-button-active,.x-button.x-button-active:after,.x-toolbar .x-button.x-button-pressing,.x-toolbar .x-button.x-button-pressing:after,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-pressed:after,.x-toolbar .x-button.x-button-active,.x-toolbar .x-button.x-button-active:after{background-image:none;background-color:#c4c4c4;background-image:-webkit-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-moz-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-o-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-ms-linear-gradient(to bottom, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6)}.x-button .x-button-icon{width:1.5em;height:1.5em}.x-button .x-button-icon:before{font-size:1.6em;line-height:1em}.x-button.x-item-disabled .x-button-label,.x-button.x-item-disabled .x-badge,.x-button.x-item-disabled .x-button-icon{opacity:.5}.x-button-round{-moz-border-radius:.9em;-webkit-border-radius:.9em;border-radius:.9em}.x-ie .x-button{height:0px}.x-ie .x-button .x-button-label,.x-ie .x-button .x-badge{overflow:visible}.x-iconalign-left .x-button-label,.x-iconalign-left .x-badge{margin-left:.6em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-badge{margin-right:.6em}.x-iconalign-top,.x-iconalign-bottom{padding-top:.2em !important;padding-bottom:.2em !important}.x-button-label,.x-badge,.x-hasbadge .x-badge{font-weight:bold;line-height:1.2em;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;font-size:1em}.x-toolbar .x-button{margin:6px .2em;padding:0 .6em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge{font-size:.7em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge,.x-toolbar .x-button .x-hasbadge .x-badge{line-height:1.6em}.x-toolbar .x-button .x-button-icon:before{font-size:1.3em;line-height:1.3em}.x-ie .x-toolbar .x-button .x-button-icon::before{font-size:.6em;line-height:1em}.x-button-small,.x-toolbar .x-button-small{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button-small .x-badge{font-size:.6em}.x-button-small .x-button-icon,.x-toolbar .x-button-small .x-button-icon{width:.75em;height:.75em}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.7em;z-index:1}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-button-back:before,.x-webkit .x-button-back:after{content:'';position:absolute;width:15px;height:auto;top:-2px;left:auto;bottom:-2px;z-index:2;-webkit-mask:4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:15px 100%;overflow:hidden}.x-webkit .x-button-back,.x-webkit .x-toolbar .x-button-back{margin-left:.77217em;padding-left:.4em}.x-webkit .x-button-back:before,.x-webkit .x-toolbar .x-button-back:before{left:-15px}.x-webkit .x-button-back:after,.x-webkit .x-toolbar .x-button-back:after{left:-14px}.x-webkit .x-button-forward,.x-webkit .x-toolbar .x-button-forward{margin-right:.78217em;padding-right:.4em}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:after{-webkit-mask:-4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:15px 100%}.x-webkit .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:before{right:-15px}.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:after{right:-14px}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;min-height:0;text-shadow:none;line-height:auto;height:1.9em;padding:0 0.5em;-moz-border-radius:none;-webkit-border-radius:none;border-radius:none}.x-button.x-button-plain>*,.x-toolbar .x-button.x-button-plain>*{overflow:visible}.x-button.x-button-plain.x-button-pressing,.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressing,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;background-image:-webkit-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-moz-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-ms-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px)}.x-segmentedbutton .x-button{margin:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-segmentedbutton .x-button.x-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-segmentedbutton .x-button.x-last{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-segmentedbutton .x-button:not(.x-first){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{border-color:#900;min-width:2em;line-height:1.2em;top:-.2em;padding:.1em .3em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;color:#fcc;background-image:none;background-color:#c00;background-image:-webkit-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-moz-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-o-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-ms-linear-gradient(to bottom, #ff1a1a,#e60000 3%,#b30000);-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;-webkit-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;background-image:none;background-color:#656565}.x-panel.x-floating.x-floating-light,.x-msgbox.x-floating-light,.x-form.x-floating.x-floating-light{background-image:none;background-color:#cbcbcb}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-webkit .x-anchor{position:absolute;overflow:hidden}.x-webkit .x-anchor.x-anchor-top{margin-top:-.68em;margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-bottom{margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAY9JREFUSA3FVbFKA0EQfbOXuzMgpLLyG2wVBEHSBSRFSvMNltZi5x9Y2kmqFKLY+QFpBStbK6uAJJe92xt3DkM2yV1yOYg5WG7nzcybx+wOS1GUtElRD+A6dvqRJmZGHMfHKbxnAh/sRg8NU0o7Sor7vj9Aqk4B+vh/MfQJVmd7tdpb1hlHQGMSmz4BTQfb5nagfe9iH/iWIllnnGrD0Pda1n50sO1sGU+B751PhUiRRTGCaRvUBdOdGFv5LHcQeB3LPXb5F4/J9UFrcwmiBztpwZyjskGGgavQV/d5FCvFSEKUJE3Fqm8FNfIIymM05JS7Yei9FOWsFSOJWuOIkb4S8WER0Sqcmb4IqhUEeF8Vl3dnluKFJDXqxDoGS861AGW564QITanOOPXq9h71QGg7WPFWJiawwwD8FAfNPKU6MwvHWKaAQbkX0ImDxPxNTCkhWa48B1VWFJvriTbJRCc8v0wiviqclYRMC8kjawWNZmLMSLCpf9P/pnfGPYlsL48ss7oVgyi9yd65pahywC+kjlEYVbHNjwAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-left{margin-left:-.6655em;margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-webkit .x-anchor.x-anchor-right{margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-floating.x-panel-light:after{background-color:#cbcbcb}.x-sheet,.x-picker,.x-sheet-action{padding:.7em;border-top:1px solid #7f7f7f;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-sheet-inner>.x-button,.x-sheet-action-inner>.x-button{margin-bottom:.5em}.x-sheet-inner>.x-button:last-child,.x-sheet-action-inner>.x-button:last-child{margin-bottom:0}.x-msgbox{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-msgbox .x-icon{margin:0 0.8em 0 0.5em;background:#fff;-webkit-mask-size:100%}.x-msgbox .x-msgbox-info{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-warning{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-question{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-error{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC')}.x-msgbox .x-title{font-size:.9em;line-height:1.4em}.x-msgbox .x-body{background:transparent !important}.x-msgbox .x-toolbar{background:transparent none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-msgbox .x-toolbar.x-docked-top{height:1.3em}.x-msgbox .x-field{min-height:2em;background:#fff;-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em}.x-msgbox .x-form-field{min-height:1.5em;padding-right:0 !important;-webkit-appearance:none}.x-msgbox .x-field-input{padding-right:2.2em}.x-msgbox-text{padding:6px 0;line-height:1.4em}.x-msgbox-buttons{padding:0.4em 0;height:auto}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-toolbar{padding:0 .2em}.x-toolbar.x-docked-left{width:7em;padding:.2em}.x-toolbar.x-docked-right{width:7em;padding:.2em}.x-title{line-height:2.1em;font-size:1.2em;margin:0 0.3em;padding:0 .3em}.x-spinner .x-input-el,.x-field-select .x-input-el{-webkit-text-fill-color:#000;-webkit-opacity:1}.x-spinner.x-item-disabled .x-input-el,.x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:currentcolor}.x-toolbar .x-field-select .x-input-el{-webkit-text-fill-color:#fff}.x-toolbar .x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:rgba(255,255,255,0.6)}.x-toolbar .x-form-field-container{padding:0 .3em}.x-toolbar .x-slider-field .x-component-outer,.x-toolbar .x-toggle-field .x-component-outer{padding:0em .3em}.x-toolbar .x-field{width:13em;padding:.5em;min-height:0;border-bottom:0;background:transparent}.x-toolbar .x-field .x-clear-icon{background-size:50% 50%;right:-0.8em;margin-top:-1.06em}.x-toolbar .x-field-input{padding-right:1.6em !important}.x-toolbar .x-field-textarea .x-component-outer,.x-toolbar .x-field-text .x-component-outer,.x-toolbar .x-field-number .x-component-outer,.x-toolbar .x-field-search .x-component-outer{background-color:#fff;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset}.x-toolbar .x-form-label{background:transparent;border:0;padding:0;line-height:1.4em}.x-toolbar .x-form-field{height:1.6em;color:#6e6e6e;background:transparent;min-height:0;-webkit-appearance:none;padding:0em .3em;margin:0}.x-toolbar .x-form-field:focus{color:#000}.x-toolbar .x-field-select .x-component-outer,.x-toolbar .x-field-search .x-component-outer{-moz-border-radius:.8em;-webkit-border-radius:.8em;border-radius:.8em}.x-toolbar .x-field-search .x-field-input{background-position:.5em 50%}.x-toolbar .x-field-select{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-form-field{height:1.4em}.x-toolbar .x-field-select{background:transparent}.x-toolbar .x-field-select .x-component-outer:after{right:.4em}.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after{opacity:.6}.x-toolbar .x-field-select .x-component-outer:before{width:3em;border-left:none;-moz-border-radius-topright:.8em;-webkit-border-top-right-radius:.8em;border-top-right-radius:.8em;-moz-border-radius-bottomright:.8em;-webkit-border-bottom-right-radius:.8em;border-bottom-right-radius:.8em;-webkit-mask:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');-webkit-mask-position:right top;-webkit-mask-repeat:repeat-y;-webkit-mask-size:3em 0.05em}.x-toolbar .x-field-select .x-input-text{color:#fff}.x-android .x-field-search .x-field-input{padding-left:.2em !important;padding-right:2.2em !important}.x-toast{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-toast .x-toast-text{padding:6px 0;line-height:1.4em}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-menu{padding:.7em;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9))}.x-menu .x-button{margin-bottom:.7em}.x-menu .x-button:last-child{margin-bottom:0}.x-form .x-scroll-container{background-color:#eee}.x-form .x-toolbar .x-scroll-container{background-color:transparent}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;padding:.6em;background-color:#f7f7f7;color:#080808}.x-form-label span{font-size:.8em}.x-form-fieldset{margin:.5em .5em 1.5em}.x-form-fieldset .x-form-label{border-top:1px solid #fff}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ddd;background:#fff;padding:0;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-form-fieldset .x-field{border-bottom:1px solid #ddd;background:transparent}.x-form-fieldset .x-field:first-child{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-form-fieldset .x-field:last-child{border-bottom:0;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#333;margin:1em .7em 0.3em;color:#333}.x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#333;color:gray;margin:1em .7em 0.3em;font-size:.8em}.x-label-align-left:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em}.x-label-align-left:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-label-align-right:first-child .x-form-label{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-right:last-child{border-bottom:0}.x-label-align-right:last-child .x-form-label{-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-label-align-top:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-bottom:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-field{min-height:2.5em;background:#fff}.x-field:last-child{border-bottom:0}.x-field-label{background-color:#f7f7f7;color:#080808}.x-field-input .x-clear-icon{background:url('data:image/png;base64,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') no-repeat;background-position:center center;background-size:55% 55%;width:2.2em;height:2.2em;margin:.5em;margin-top:-1.1em;right:-.5em}.x-field-clearable .x-field-input{padding-right:2.2em}.x-input-el{padding:.4em;min-height:2.5em;border-width:0;-webkit-appearance:none}.x-ie .x-input-el{background:transparent}.x-item-disabled .x-form-label,.x-item-disabled input,.x-item-disabled .x-input-el,.x-item-disabled .x-spinner-body,.x-item-disabled select,.x-item-disabled textarea,.x-item-disabled .x-field-clear-container{color:#b3b3b3;pointer-events:none}.x-item-disabled .x-form-label{color:#aaa}.x-item-disabled .x-form-label:after{color:#666 !important}.x-checkmark-base,.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after,.x-select-overlay .x-item-selected.x-list-item::after{position:absolute;top:0;right:10px;bottom:0;content:'3';font-family:'Pictos';font-size:1.6em;text-align:right;line-height:1.6em}.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after{color:#ddd}.x-input-checkbox,.x-input-radio{visibility:hidden}.x-input-el:checked+.x-field-mask::after{color:#688AD2}.x-item-disabled.x-field-checkbox .x-input-checkbox:checked+.x-field-mask::after{color:#aebcd9}.x-field-radio .x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0}.x-field-radio .x-field-mask::after{content:'';position:absolute;width:16px;height:16px;top:16px;left:auto;right:16px;background-color:#d0d0d0;-moz-border-radius:16px;-webkit-border-radius:16px;border-radius:16px}.x-field-radio .x-field-mask::before{content:'';position:absolute;width:26px;height:26px;top:11px;left:auto;right:11px;background-color:#ddd;-moz-border-radius:26px;-webkit-border-radius:26px;border-radius:26px}.x-input-radio:checked+.x-field-mask::after{background:#688AD2}.x-item-disabled.x-field-radio .x-input-radio:checked+.x-field-mask::after{background:#aebcd9}.x-field-search .x-field-input{position:relative}.x-field-search .x-field-input:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"s"}.x-field-search .x-field-input:before{color:#ccc;top:.7em;left:.5em;font-size:1.1em;right:auto}.x-toolbar .x-field-search .x-field-input:before{top:.3em}.x-field-search .x-field-input .x-form-field{margin-left:1em}.x-webkit .x-selectmark-base,.x-webkit .x-field-select .x-component-outer:after,.x-field-select .x-webkit .x-component-outer:after{content:'';position:absolute;width:1em;height:1em;top:50%;left:auto;right:.7em;-webkit-mask-size:1em;-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');margin-top:-.5em}.x-field-select{position:relative;z-index:1}.x-field-select .x-component-outer:after{z-index:2;background-color:#ddd}.x-field-select .x-component-outer:before,.x-field-select .x-component-outer:after{pointer-events:none;position:absolute;display:block}.x-select-overlay .x-list-item-label{height:2.6em}.x-select-overlay .x-item-selected .x-list-label{margin-right:2.6em}.x-select-overlay .x-item-selected.x-list-item::after{color:#ddd}.x-spinner .x-field-input .x-input-el{-webkit-text-fill-color:#000}.x-spinner.x-item-disabled .x-input-el{-webkit-text-fill-color:#B3B3B3}.x-spinner.x-item-disabled .x-spinner-button{color:#aaa !important}.x-spinner.x-item-disabled .x-spinner-button,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button{border:1px solid #c4c4c4;border-top-color:#d0d0d0;background-color:#f7f7f7;color:#1e1e1e}.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before,.x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before{background:#c4c4c4}.x-spinner.x-item-disabled .x-spinner-button,.x-spinner.x-item-disabled .x-spinner-button.x-button-back:after,.x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after{background-image:none;background-color:#f7f7f7;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#eaeaea);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#eaeaea);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#eaeaea);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#eaeaea)}.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing,.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after,.x-spinner.x-item-disabled .x-spinner-button.x-button-pressed,.x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after,.x-spinner.x-item-disabled .x-spinner-button.x-button-active,.x-spinner.x-item-disabled .x-spinner-button.x-button-active:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after{background-image:none;background-color:#efefef;background-image:-webkit-linear-gradient(top, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0);background-image:-moz-linear-gradient(top, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0);background-image:-o-linear-gradient(top, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0);background-image:-ms-linear-gradient(to bottom, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0)}.x-spinner .x-spinner-button{margin-top:.25em;margin-bottom:.25em;width:2em;padding:.23em 0 .27em;font-weight:bold;text-align:center;border:1px solid #ddd !important;-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em}.x-spinner .x-spinner-button,.x-toolbar .x-spinner .x-spinner-button{border:1px solid #b7b7b7;border-top-color:#c4c4c4;background-color:#eaeaea;color:#111}.x-spinner .x-spinner-button.x-button-back:before,.x-spinner .x-spinner-button.x-button-forward:before,.x-toolbar .x-spinner .x-spinner-button.x-button-back:before,.x-toolbar .x-spinner .x-spinner-button.x-button-forward:before{background:#b7b7b7}.x-spinner .x-spinner-button,.x-spinner .x-spinner-button.x-button-back:after,.x-spinner .x-spinner-button.x-button-forward:after,.x-toolbar .x-spinner .x-spinner-button,.x-toolbar .x-spinner .x-spinner-button.x-button-back:after,.x-toolbar .x-spinner .x-spinner-button.x-button-forward:after{background-image:none;background-color:#eaeaea;background-image:-webkit-linear-gradient(top, #ffffff,#f7f7f7 3%,#dddddd);background-image:-moz-linear-gradient(top, #ffffff,#f7f7f7 3%,#dddddd);background-image:-o-linear-gradient(top, #ffffff,#f7f7f7 3%,#dddddd);background-image:-ms-linear-gradient(to bottom, #ffffff,#f7f7f7 3%,#dddddd)}.x-spinner .x-spinner-button.x-button-pressing,.x-spinner .x-spinner-button.x-button-pressing:after,.x-spinner .x-spinner-button.x-button-pressed,.x-spinner .x-spinner-button.x-button-pressed:after,.x-spinner .x-spinner-button.x-button-active,.x-spinner .x-spinner-button.x-button-active:after,.x-toolbar .x-spinner .x-spinner-button.x-button-pressing,.x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after,.x-toolbar .x-spinner .x-spinner-button.x-button-pressed,.x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after,.x-toolbar .x-spinner .x-spinner-button.x-button-active,.x-toolbar .x-spinner .x-spinner-button.x-button-active:after{background-image:none;background-color:#e2e2e2;background-image:-webkit-linear-gradient(top, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3);background-image:-moz-linear-gradient(top, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3);background-image:-o-linear-gradient(top, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3);background-image:-ms-linear-gradient(to bottom, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3)}.x-spinner .x-spinner-button-down{margin-left:.25em}.x-spinner .x-spinner-button-up{margin-right:.25em}.x-spinner.x-field-grouped-buttons .x-spinner-button-down{margin-right:.5em}.x-android .x-spinner-button{padding:.40em 0 .11em !important}.x-ie .x-spinner .x-field-input .x-input-el:disabled{color:#000}.x-list{background-color:#f7f7f7}.x-list .x-list-disclosure{position:relative;overflow:visible;border:0;-moz-border-radius:32px;-webkit-border-radius:32px;border-radius:32px;background-image:none;background-color:#5e86dc;background-image:-webkit-linear-gradient(top, #9db6ea,#7396e0 3%,#4977d7);background-image:-moz-linear-gradient(top, #9db6ea,#7396e0 3%,#4977d7);background-image:-o-linear-gradient(top, #9db6ea,#7396e0 3%,#4977d7);background-image:-ms-linear-gradient(to bottom, #9db6ea,#7396e0 3%,#4977d7);width:32px;height:32px;margin:7px 7px 0 0}.x-list .x-list-disclosure:before{position:absolute;top:0;right:0;bottom:0;left:0;content:']';font-family:'Pictos';color:#fff;font-size:24px;text-align:center;line-height:35px;text-shadow:0 0 0}.x-list.x-list-indexed .x-list-disclosure{margin-right:1.8em}.x-list .x-item-selected .x-list-disclosure{background:#fff none}.x-list .x-item-selected .x-list-disclosure:before{color:#688AD2}.x-list .x-list-item{color:#000}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-moz-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-o-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-ms-linear-gradient(to bottom, #a3b8e4,#7c99d8 3%,#547bcc);color:#fff}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background:#fff none}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:12px 15px}.x-list-normal .x-list-header{background-image:none;background-color:#fefefe;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#f3f0f0);color:#b9aaaa;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;border-top:1px solid #fefefe;border-bottom:1px solid #d0c6c6;font-weight:bold;font-size:0.8em;padding:0.2em 1.02em}.x-list-normal .x-list-item.x-list-item-tpl,.x-list-normal .x-list-item .x-dock-horizontal{border-top:1px solid #dedede}.x-list-normal .x-list-item.x-list-item-tpl.x-list-footer-wrap,.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal{border-bottom:1px solid #dedede}.x-list-normal .x-list-item.x-item-pressed.x-list-item-tpl,.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal{border-top-color:#fff;background-color:#fff}.x-list-normal .x-list-item.x-item-selected.x-list-item-tpl,.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal{border-top-color:#688AD2}.x-list-round .x-scroll-view{background-color:#eee}.x-list-round .x-list-header-swap{padding-right:13px}.x-list-round .x-list-inner .x-scroll-container{top:13px;left:13px;bottom:13px;right:13px;width:auto !important;height:auto !important}.x-list-round .x-list-header{color:#777;font-size:1em;font-weight:bold;padding-left:26px;line-height:1.7em;background-image:-webkit-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-moz-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-o-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-ms-linear-gradient(to bottom, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4))}.x-list-round .x-list-container{padding:13px 13px 0 13px}.x-list-round .x-list-container .x-list-header{padding-left:13px;background-image:none}.x-list-round.x-list-ungrouped .x-list-item-tpl,.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal,.x-list-round.x-list-grouped .x-list-item-tpl,.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #dedede;border-width:1px 1px 0 1px;background:#f7f7f7}.x-list-round.x-list-ungrouped .x-list-item-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-ungrouped .x-list-item-last{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;border-width:1px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-header-wrap.x-list-header{border:1px solid #dedede;border-width:1px 1px 0 1px;-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap{background:transparent}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-dock-body,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #dedede;background:#f7f7f7;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-dock-body{background:#fff none}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-dock-body{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-moz-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-o-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-ms-linear-gradient(to bottom, #a3b8e4,#7c99d8 3%,#547bcc);color:#fff}.x-list-round .x-indexbar-vertical{margin-right:20px}.x-list-round .x-list-footer-wrap.x-list-item-last.x-list-item-odd.x-list-item.x-list-item-tpl{background-color:transparent !important}.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-innerhtml,.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-dock-body{background-color:#eaeaea !important}.x-list .x-list-item-odd.x-list-item-tpl,.x-list .x-list-item-odd .x-dock-horizontal{background-color:#eaeaea !important;border-bottom:1px solid #eaeaea}.x-picker .x-picker-inner{background-color:#fff;overflow:hidden;margin:.7em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbb), color-stop(30%, #fff), color-stop(70%, #fff), color-stop(100%, #bbb));background:-webkit-linear-gradient(top, #bbb 0%, #fff 30%, #fff 70%, #bbb 100%)}.x-picker-slot .x-scroll-view{-moz-box-shadow:rgba(0,0,0,0.4) -1px 0 1px;-webkit-box-shadow:rgba(0,0,0,0.4) -1px 0 1px;box-shadow:rgba(0,0,0,0.4) -1px 0 1px}.x-picker-slot .x-scroll-view:first-child{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-picker-bar{border-top:0.12em solid #688AD2;border-bottom:0.12em solid #688AD2;height:2.5em;background-image:none;background-color:rgba(13,86,242,0.3);background-image:-webkit-linear-gradient(top, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));background-image:-moz-linear-gradient(top, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));background-image:-o-linear-gradient(top, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));background-image:-ms-linear-gradient(to bottom, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));-moz-box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em;-webkit-box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em;box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em}.x-use-titles .x-picker-bar{margin-top:1.5em}.x-picker-slot-title{height:1.5em;border-top:1px solid #dcd4d4;border-bottom:1px solid #ae9c9c;padding:0.2em 1.02em;-moz-box-shadow:rgba(0,0,0,0.3) 0px 0.1em 0.3em;-webkit-box-shadow:rgba(0,0,0,0.3) 0px 0.1em 0.3em;box-shadow:rgba(0,0,0,0.3) 0px 0.1em 0.3em;background-image:none;background-color:#dcd4d4;background-image:-webkit-linear-gradient(top, #fefefe,#e7e2e2 3%,#d0c6c6);background-image:-moz-linear-gradient(top, #fefefe,#e7e2e2 3%,#d0c6c6);background-image:-o-linear-gradient(top, #fefefe,#e7e2e2 3%,#d0c6c6);background-image:-ms-linear-gradient(to bottom, #fefefe,#e7e2e2 3%,#d0c6c6)}.x-picker-slot-title>div{font-size:0.8em;color:#8b8b8b;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-picker-slot{border-left:2px solid #acacac}.x-picker-slot .x-dataview-item{height:2.5em;line-height:2.5em;font-weight:bold;padding:0 10px}.x-picker-slot:first-child{border-left:0}.x-toggle{width:4.4em;border:1px solid #b7b7b7;background-image:none;background-color:#ddd;background-image:-webkit-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-moz-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-o-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-ms-linear-gradient(to bottom, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);-moz-border-radius:1.1em;-webkit-border-radius:1.1em;border-radius:1.1em}.x-toggle .x-thumb.x-dragging{opacity:1}.x-toggle .x-thumb:before{top:.175em}.x-toggle-on{background-image:none;background-color:#92cf00;background-image:-webkit-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-moz-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-o-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-ms-linear-gradient(to bottom, #6e9c00,#80b600 10%,#92cf00 65%,#94d200)}.x-button.border-radius-10{-moz-border-radius:10px !important;-webkit-border-radius:10px;border-radius:10px !important}.x-dataview.color .x-dataview-inner.x-scroll-scroller{width:auto !important;height:auto !important;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container{margin-top:12px;margin-left:12px}.x-dataview.color .x-dataview-item{display:inline-block}.x-dataview.color .x-dataview-item.x-item-selected .item-inner{-moz-box-shadow:#3ba8ff 0 0 0 4px;-webkit-box-shadow:#3ba8ff 0 0 0 4px;box-shadow:#3ba8ff 0 0 0 4px}.x-dataview.color .x-dataview-item .item-inner{display:inline-block;width:50px;height:50px;border:1px solid #d8d8d8;margin:6px}.x-list.settings{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round .x-scroll-view{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{padding-top:0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header{display:none}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal{padding-bottom:0}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #bcbcbc;border-width:1px 1px 0 1px;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal{background-image:-webkit-linear-gradient(top, #7c99d8,#416cc6);background-image:-moz-linear-gradient(top, #7c99d8,#416cc6);background-image:-o-linear-gradient(top, #7c99d8,#416cc6);background-image:-ms-linear-gradient(to bottom, #7c99d8,#416cc6);color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure{background-position:-24px 0}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal{color:inherit}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body{padding-right:1.2em}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after{content:"";width:24px;height:24px;position:absolute;top:11px;right:11px;background-image:url("../img/icons/list-normal.png");background-size:72px 48px;background-position:0 -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal{color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after{background-position:-24px -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon{width:24px;height:24px;position:absolute}.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset{margin-left:30px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure{right:12px;background-image:url("../img/icons/list-normal.png");background-size:72px 48px;background-position:0 0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body{-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13.8px}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #bcbcbc;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal{background:transparent}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal>.x-dock-body{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;background-image:-webkit-linear-gradient(top, #7c99d8,#416cc6);background-image:-moz-linear-gradient(top, #7c99d8,#416cc6);background-image:-o-linear-gradient(top, #7c99d8,#416cc6);background-image:-ms-linear-gradient(to bottom, #7c99d8,#416cc6);color:#fff}.x-msgbox{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-moz-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-o-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-ms-linear-gradient(to bottom, #989898,#656565 10%,#656565)}.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label,.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge{font-size:.9em;line-height:2em}.x-msgbox .x-title{font-size:1em;line-height:1.4em;color:#ffffff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller{width:auto !important;height:auto !important}.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller .x-dataview-container{margin-top:12px;margin-left:12px}.x-dataview.icon-view .x-dataview-item{display:inline-block}.x-dataview.icon-view .x-dataview-item.x-item-pressed .item-inner,.x-dataview.icon-view .x-dataview-item.x-item-selected .item-inner{background-image:-webkit-linear-gradient(top, #7c99d8,#416cc6);background-image:-moz-linear-gradient(top, #7c99d8,#416cc6);background-image:-o-linear-gradient(top, #7c99d8,#416cc6);background-image:-ms-linear-gradient(to bottom, #7c99d8,#416cc6);color:#fff}.x-dataview.icon-view .x-dataview-item .item-inner{display:inline-block;width:77px;height:77px;border:1px solid #bcbcbc;background:#fff;margin:-1px}.x-dataview.icon-view .x-dataview-item .item-inner.top-left{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em}.x-dataview.icon-view .x-dataview-item .item-inner.top-right{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-dataview.icon-view .x-dataview-item .item-inner.bottom-left{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-dataview.icon-view .x-dataview-item .item-inner.bottom-right{-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-0{background-position:0 0px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-0,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-0{background-position:-24px 0px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-1{background-position:0 -24px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-1,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-1{background-position:-24px -24px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-2{background-position:0 -48px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-2,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-2{background-position:-24px -48px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-3{background-position:0 -72px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-3,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-3{background-position:-24px -72px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-4{background-position:0 -96px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-4,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-4{background-position:-24px -96px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-5{background-position:0 -120px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-5,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-5{background-position:-24px -120px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-6{background-position:0 -144px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-6,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-6{background-position:-24px -144px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-7{background-position:0 -168px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-7,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-7{background-position:-24px -168px}.x-dataview.icon-view.bullets .item-inner .text{margin-top:1.4em;text-align:center}.x-dataview.icon-view.bullets .item-inner .icon{width:24px;height:24px;margin:1.4em auto;background-image:url("../img/icons/bullets-normal.png");background-size:48px 168px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-0{background-position:0 0px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-0,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-0{background-position:-74px 0px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-1{background-position:0 -74px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-1,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-1{background-position:-74px -74px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-2{background-position:0 -148px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-2,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-2{background-position:-74px -148px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-3{background-position:0 -222px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-3,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-3{background-position:-74px -222px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-4{background-position:0 -296px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-4,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-4{background-position:-74px -296px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-5{background-position:0 -370px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-5,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-5{background-position:-74px -370px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-6{background-position:0 -444px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-6,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-6{background-position:-74px -444px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-7{background-position:0 -518px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-7,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-7{background-position:-74px -518px}.x-dataview.icon-view.numbering .item-inner .text{position:relative;top:1.4em;text-align:center}.x-dataview.icon-view.numbering .item-inner .icon{width:74px;height:74px;margin:0 auto;background-image:url("../img/icons/numbering-normal.png");background-size:148px 518px}.x-dataview.icon-view.outline .x-dataview-item .icon.outline-0{background-position:0 0px}.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-0,.x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-0{background-position:-74px 0px}.x-dataview.icon-view.outline .x-dataview-item .icon.outline-1{background-position:0 -74px}.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-1,.x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-1{background-position:-74px -74px}.x-dataview.icon-view.outline .x-dataview-item .icon.outline-2{background-position:0 -148px}.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-2,.x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-2{background-position:-74px -148px}.x-dataview.icon-view.outline .item-inner .text{position:relative;top:1.4em;text-align:center}.x-dataview.icon-view.outline .item-inner .icon{width:74px;height:74px;margin:0 auto;background-image:url("../img/icons/outline-normal.png");background-size:148px 222px}.x-panel.x-panel-settings{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ececec,#cbcbcb);background-image:-moz-linear-gradient(top, #ececec,#cbcbcb);background-image:-o-linear-gradient(top, #ececec,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ececec,#cbcbcb);-moz-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;-webkit-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;border:1px solid #797979}.x-panel.x-panel-settings .x-anchor-top{background-color:#797979;margin-top:-.62em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-top:after{content:'';position:absolute;width:1.631em;height:.7em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #f1f1f1,#ececec);background-image:-moz-linear-gradient(top, #f1f1f1,#ececec);background-image:-o-linear-gradient(top, #f1f1f1,#ececec);background-image:-ms-linear-gradient(to bottom, #f1f1f1,#ececec);top:1px !important}.x-panel.x-panel-settings .x-anchor-bottom{height:.8em;background-color:#797979;margin-top:-0.15em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-bottom:after{content:'';position:absolute;width:1.631em;height:.8em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#bebebe);background-image:-moz-linear-gradient(top, #cbcbcb,#bebebe);background-image:-o-linear-gradient(top, #cbcbcb,#bebebe);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#bebebe);top:-1px !important}.x-panel.x-panel-settings .x-panel-inner{background:transparent}.x-panel.x-panel-settings .x-navigation-bar{border-bottom:none;margin-top:-6px;background:transparent;overflow:hidden}.x-panel.x-panel-settings .x-navigation-bar .x-title{color:#323232;text-shadow:#fff 0 0.08em 0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner{background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after{content:none}.x-panel.x-panel-settings .x-navigationview-inner{background-color:#efefef;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-panel.x-panel-settings .x-navigationview-inner:after{content:'';position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:inset 0 1px 2px 2px #c8c8c8;-webkit-box-shadow:inset 0 1px 2px 2px #c8c8c8;box-shadow:inset 0 1px 2px 2px #c8c8c8;border:1px solid #797979}.x-label.info .x-innerhtml{color:#7f7f7f;text-shadow:0 1px 0 #fff;text-align:center}.btn-input-image input[type="file"]{opacity:0;position:absolute;left:0;top:0}.x-mask.transparent{background:transparent}.round{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list-header-wrap{-moz-border-radius-topleft:.3em !important;-webkit-border-top-left-radius:.3em !important;border-top-left-radius:.3em !important;-moz-border-radius-topright:.3em !important;-webkit-border-top-right-radius:.3em !important;border-top-right-radius:.3em !important}.x-list-header-wrap .x-innerhtml{-moz-border-radius-topleft:.3em !important;-webkit-border-top-left-radius:.3em !important;border-top-left-radius:.3em !important;-moz-border-radius-topright:.3em !important;-webkit-border-top-right-radius:.3em !important;border-top-right-radius:.3em !important}.x-list-header{display:none}.x-spinner.planar-spinner.x-field-grouped-buttons{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons.x-field{min-height:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span{font-size:inherit}.x-spinner.planar-spinner.x-field-grouped-buttons .x-button{margin-top:9px;margin-bottom:9px;padding:0 8px !important}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{padding:0.16em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input{-moz-box-shadow:#b2b2b2 0 3px 4px -2px inset;-webkit-box-shadow:#b2b2b2 0 3px 4px -2px inset;box-shadow:#b2b2b2 0 3px 4px -2px inset;background:#fff;min-width:2.3em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el{text-align:center;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;padding:3px 0 4px;min-height:0;border-top:1px solid #898989;border-bottom:1px solid #898989}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button{width:auto;border:1px solid #939393 !important;margin:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down{margin-right:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.x-toolbar{background-color:transparent}.x-toolbar-edit{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb);border-color:#4c4c4c}.x-toolbar-edit .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-edit.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-edit .x-button.x-button-back:before,.x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-button.x-button-back:before,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-edit .x-button,.x-toolbar-edit .x-button.x-button-back:after,.x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button.x-button-back:after,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-edit .x-button.x-button-pressing,.x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar-edit .x-button.x-button-pressed,.x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar-edit .x-button.x-button-active,.x-toolbar-edit .x-button.x-button-active:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-button.x-button-active,.x-toolbar .x-toolbar-edit .x-button.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-edit .x-label,.x-toolbar-edit .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-toolbar{background-color:transparent}.x-toolbar-search{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-moz-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-o-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#e7e7e7 20%,#e7e7e7);border-color:#4c4c4c}.x-toolbar-search .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-search.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-search .x-button.x-button-back:before,.x-toolbar-search .x-button.x-button-forward:before,.x-toolbar .x-toolbar-search .x-button.x-button-back:before,.x-toolbar .x-toolbar-search .x-button.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-search .x-button,.x-toolbar-search .x-button.x-button-back:after,.x-toolbar-search .x-button.x-button-forward:after,.x-toolbar .x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button.x-button-back:after,.x-toolbar .x-toolbar-search .x-button.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-search .x-button.x-button-pressing,.x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar-search .x-button.x-button-pressed,.x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar-search .x-button.x-button-active,.x-toolbar-search .x-button.x-button-active:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressing,.x-toolbar .x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressed,.x-toolbar .x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-button.x-button-active,.x-toolbar .x-toolbar-search .x-button.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-search .x-label,.x-toolbar-search .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-button-icon.save,.list-icon.save{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 0px;background-size:72px 888px}.x-button-pressing .x-button-icon.save,.x-button-pressing .list-icon.save,.x-button-pressed .x-button-icon.save,.x-button-pressed .list-icon.save,.x-button-active .x-button-icon.save,.x-button-active .list-icon.save,.x-item-pressed .x-button-icon.save,.x-item-pressed .list-icon.save{background-position:-24px 0px}.x-button-icon.undo,.list-icon.undo{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -24px;background-size:72px 888px}.x-button-pressing .x-button-icon.undo,.x-button-pressing .list-icon.undo,.x-button-pressed .x-button-icon.undo,.x-button-pressed .list-icon.undo,.x-button-active .x-button-icon.undo,.x-button-active .list-icon.undo,.x-item-pressed .x-button-icon.undo,.x-item-pressed .list-icon.undo{background-position:-24px -24px}.x-button-icon.share,.list-icon.share{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -48px;background-size:72px 888px}.x-button-pressing .x-button-icon.share,.x-button-pressing .list-icon.share,.x-button-pressed .x-button-icon.share,.x-button-pressed .list-icon.share,.x-button-active .x-button-icon.share,.x-button-active .list-icon.share,.x-item-pressed .x-button-icon.share,.x-item-pressed .list-icon.share{background-position:-24px -48px}.x-button-icon.font-style,.list-icon.font-style{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -72px;background-size:72px 888px}.x-button-pressing .x-button-icon.font-style,.x-button-pressing .list-icon.font-style,.x-button-pressed .x-button-icon.font-style,.x-button-pressed .list-icon.font-style,.x-button-active .x-button-icon.font-style,.x-button-active .list-icon.font-style,.x-item-pressed .x-button-icon.font-style,.x-item-pressed .list-icon.font-style{background-position:-24px -72px}.x-button-icon.font-color,.list-icon.font-color{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -96px;background-size:72px 888px}.x-button-pressing .x-button-icon.font-color,.x-button-pressing .list-icon.font-color,.x-button-pressed .x-button-icon.font-color,.x-button-pressed .list-icon.font-color,.x-button-active .x-button-icon.font-color,.x-button-active .list-icon.font-color,.x-item-pressed .x-button-icon.font-color,.x-item-pressed .list-icon.font-color{background-position:-24px -96px}.x-button-icon.bold,.list-icon.bold{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -120px;background-size:72px 888px}.x-button-pressing .x-button-icon.bold,.x-button-pressing .list-icon.bold,.x-button-pressed .x-button-icon.bold,.x-button-pressed .list-icon.bold,.x-button-active .x-button-icon.bold,.x-button-active .list-icon.bold,.x-item-pressed .x-button-icon.bold,.x-item-pressed .list-icon.bold{background-position:-24px -120px}.x-button-icon.italic,.list-icon.italic{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -144px;background-size:72px 888px}.x-button-pressing .x-button-icon.italic,.x-button-pressing .list-icon.italic,.x-button-pressed .x-button-icon.italic,.x-button-pressed .list-icon.italic,.x-button-active .x-button-icon.italic,.x-button-active .list-icon.italic,.x-item-pressed .x-button-icon.italic,.x-item-pressed .list-icon.italic{background-position:-24px -144px}.x-button-icon.underline,.list-icon.underline{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -168px;background-size:72px 888px}.x-button-pressing .x-button-icon.underline,.x-button-pressing .list-icon.underline,.x-button-pressed .x-button-icon.underline,.x-button-pressed .list-icon.underline,.x-button-active .x-button-icon.underline,.x-button-active .list-icon.underline,.x-item-pressed .x-button-icon.underline,.x-item-pressed .list-icon.underline{background-position:-24px -168px}.x-button-icon.align-left,.list-icon.align-left{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -192px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-left,.x-button-pressing .list-icon.align-left,.x-button-pressed .x-button-icon.align-left,.x-button-pressed .list-icon.align-left,.x-button-active .x-button-icon.align-left,.x-button-active .list-icon.align-left,.x-item-pressed .x-button-icon.align-left,.x-item-pressed .list-icon.align-left{background-position:-24px -192px}.x-button-icon.align-center,.list-icon.align-center{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -216px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-center,.x-button-pressing .list-icon.align-center,.x-button-pressed .x-button-icon.align-center,.x-button-pressed .list-icon.align-center,.x-button-active .x-button-icon.align-center,.x-button-active .list-icon.align-center,.x-item-pressed .x-button-icon.align-center,.x-item-pressed .list-icon.align-center{background-position:-24px -216px}.x-button-icon.align-right,.list-icon.align-right{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -240px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-right,.x-button-pressing .list-icon.align-right,.x-button-pressed .x-button-icon.align-right,.x-button-pressed .list-icon.align-right,.x-button-active .x-button-icon.align-right,.x-button-active .list-icon.align-right,.x-item-pressed .x-button-icon.align-right,.x-item-pressed .list-icon.align-right{background-position:-24px -240px}.x-button-icon.align-fill,.list-icon.align-fill{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -264px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-fill,.x-button-pressing .list-icon.align-fill,.x-button-pressed .x-button-icon.align-fill,.x-button-pressed .list-icon.align-fill,.x-button-active .x-button-icon.align-fill,.x-button-active .list-icon.align-fill,.x-item-pressed .x-button-icon.align-fill,.x-item-pressed .list-icon.align-fill{background-position:-24px -264px}.x-button-icon.bullets,.list-icon.bullets{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -288px;background-size:72px 888px}.x-button-pressing .x-button-icon.bullets,.x-button-pressing .list-icon.bullets,.x-button-pressed .x-button-icon.bullets,.x-button-pressed .list-icon.bullets,.x-button-active .x-button-icon.bullets,.x-button-active .list-icon.bullets,.x-item-pressed .x-button-icon.bullets,.x-item-pressed .list-icon.bullets{background-position:-24px -288px}.x-button-icon.spacing,.list-icon.spacing{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -312px;background-size:72px 888px}.x-button-pressing .x-button-icon.spacing,.x-button-pressing .list-icon.spacing,.x-button-pressed .x-button-icon.spacing,.x-button-pressed .list-icon.spacing,.x-button-active .x-button-icon.spacing,.x-button-active .list-icon.spacing,.x-item-pressed .x-button-icon.spacing,.x-item-pressed .list-icon.spacing{background-position:-24px -312px}.x-button-icon.page-number,.list-icon.page-number{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -336px;background-size:72px 888px}.x-button-pressing .x-button-icon.page-number,.x-button-pressing .list-icon.page-number,.x-button-pressed .x-button-icon.page-number,.x-button-pressed .list-icon.page-number,.x-button-active .x-button-icon.page-number,.x-button-active .list-icon.page-number,.x-item-pressed .x-button-icon.page-number,.x-item-pressed .list-icon.page-number{background-position:-24px -336px}.x-button-icon.insert,.list-icon.insert{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -360px;background-size:72px 888px}.x-button-pressing .x-button-icon.insert,.x-button-pressing .list-icon.insert,.x-button-pressed .x-button-icon.insert,.x-button-pressed .list-icon.insert,.x-button-active .x-button-icon.insert,.x-button-active .list-icon.insert,.x-item-pressed .x-button-icon.insert,.x-item-pressed .list-icon.insert{background-position:-24px -360px}.x-button-icon.search,.list-icon.search{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -384px;background-size:72px 888px}.x-button-pressing .x-button-icon.search,.x-button-pressing .list-icon.search,.x-button-pressed .x-button-icon.search,.x-button-pressed .list-icon.search,.x-button-active .x-button-icon.search,.x-button-active .list-icon.search,.x-item-pressed .x-button-icon.search,.x-item-pressed .list-icon.search{background-position:-24px -384px}.x-button-icon.fullscreen,.list-icon.fullscreen{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -408px;background-size:72px 888px}.x-button-pressing .x-button-icon.fullscreen,.x-button-pressing .list-icon.fullscreen,.x-button-pressed .x-button-icon.fullscreen,.x-button-pressed .list-icon.fullscreen,.x-button-active .x-button-icon.fullscreen,.x-button-active .list-icon.fullscreen,.x-item-pressed .x-button-icon.fullscreen,.x-item-pressed .list-icon.fullscreen{background-position:-24px -408px}.x-button-icon.spinner-down,.list-icon.spinner-down{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -432px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-down,.x-button-pressing .list-icon.spinner-down,.x-button-pressed .x-button-icon.spinner-down,.x-button-pressed .list-icon.spinner-down,.x-button-active .x-button-icon.spinner-down,.x-button-active .list-icon.spinner-down,.x-item-pressed .x-button-icon.spinner-down,.x-item-pressed .list-icon.spinner-down{background-position:-24px -432px}.x-button-icon.spinner-up,.list-icon.spinner-up{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -456px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-up,.x-button-pressing .list-icon.spinner-up,.x-button-pressed .x-button-icon.spinner-up,.x-button-pressed .list-icon.spinner-up,.x-button-active .x-button-icon.spinner-up,.x-button-active .list-icon.spinner-up,.x-item-pressed .x-button-icon.spinner-up,.x-item-pressed .list-icon.spinner-up{background-position:-24px -456px}.x-button-icon.superscript,.list-icon.superscript{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -480px;background-size:72px 888px}.x-button-pressing .x-button-icon.superscript,.x-button-pressing .list-icon.superscript,.x-button-pressed .x-button-icon.superscript,.x-button-pressed .list-icon.superscript,.x-button-active .x-button-icon.superscript,.x-button-active .list-icon.superscript,.x-item-pressed .x-button-icon.superscript,.x-item-pressed .list-icon.superscript{background-position:-24px -480px}.x-button-icon.subscript,.list-icon.subscript{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -504px;background-size:72px 888px}.x-button-pressing .x-button-icon.subscript,.x-button-pressing .list-icon.subscript,.x-button-pressed .x-button-icon.subscript,.x-button-pressed .list-icon.subscript,.x-button-active .x-button-icon.subscript,.x-button-active .list-icon.subscript,.x-item-pressed .x-button-icon.subscript,.x-item-pressed .list-icon.subscript{background-position:-24px -504px}.x-button-icon.table,.list-icon.table{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -528px;background-size:72px 888px}.x-button-pressing .x-button-icon.table,.x-button-pressing .list-icon.table,.x-button-pressed .x-button-icon.table,.x-button-pressed .list-icon.table,.x-button-active .x-button-icon.table,.x-button-active .list-icon.table,.x-item-pressed .x-button-icon.table,.x-item-pressed .list-icon.table{background-position:-24px -528px}.x-button-icon.picture,.list-icon.picture{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -552px;background-size:72px 888px}.x-button-pressing .x-button-icon.picture,.x-button-pressing .list-icon.picture,.x-button-pressed .x-button-icon.picture,.x-button-pressed .list-icon.picture,.x-button-active .x-button-icon.picture,.x-button-active .list-icon.picture,.x-item-pressed .x-button-icon.picture,.x-item-pressed .list-icon.picture{background-position:-24px -552px}.x-button-icon.spacing,.list-icon.spacing{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -576px;background-size:72px 888px}.x-button-pressing .x-button-icon.spacing,.x-button-pressing .list-icon.spacing,.x-button-pressed .x-button-icon.spacing,.x-button-pressed .list-icon.spacing,.x-button-active .x-button-icon.spacing,.x-button-active .list-icon.spacing,.x-item-pressed .x-button-icon.spacing,.x-item-pressed .list-icon.spacing{background-position:-24px -576px}.x-button-icon.indent-inc,.list-icon.indent-inc{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -600px;background-size:72px 888px}.x-button-pressing .x-button-icon.indent-inc,.x-button-pressing .list-icon.indent-inc,.x-button-pressed .x-button-icon.indent-inc,.x-button-pressed .list-icon.indent-inc,.x-button-active .x-button-icon.indent-inc,.x-button-active .list-icon.indent-inc,.x-item-pressed .x-button-icon.indent-inc,.x-item-pressed .list-icon.indent-inc{background-position:-24px -600px}.x-button-icon.indent-dec,.list-icon.indent-dec{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -624px;background-size:72px 888px}.x-button-pressing .x-button-icon.indent-dec,.x-button-pressing .list-icon.indent-dec,.x-button-pressed .x-button-icon.indent-dec,.x-button-pressed .list-icon.indent-dec,.x-button-active .x-button-icon.indent-dec,.x-button-active .list-icon.indent-dec,.x-item-pressed .x-button-icon.indent-dec,.x-item-pressed .list-icon.indent-dec{background-position:-24px -624px}.x-button-icon.numbering,.list-icon.numbering{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -648px;background-size:72px 888px}.x-button-pressing .x-button-icon.numbering,.x-button-pressing .list-icon.numbering,.x-button-pressed .x-button-icon.numbering,.x-button-pressed .list-icon.numbering,.x-button-active .x-button-icon.numbering,.x-button-active .list-icon.numbering,.x-item-pressed .x-button-icon.numbering,.x-item-pressed .list-icon.numbering{background-position:-24px -648px}.x-button-icon.outline,.list-icon.outline{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -672px;background-size:72px 888px}.x-button-pressing .x-button-icon.outline,.x-button-pressing .list-icon.outline,.x-button-pressed .x-button-icon.outline,.x-button-pressed .list-icon.outline,.x-button-active .x-button-icon.outline,.x-button-active .list-icon.outline,.x-item-pressed .x-button-icon.outline,.x-item-pressed .list-icon.outline{background-position:-24px -672px}.x-button-icon.insert-row,.list-icon.insert-row{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -696px;background-size:72px 888px}.x-button-pressing .x-button-icon.insert-row,.x-button-pressing .list-icon.insert-row,.x-button-pressed .x-button-icon.insert-row,.x-button-pressed .list-icon.insert-row,.x-button-active .x-button-icon.insert-row,.x-button-active .list-icon.insert-row,.x-item-pressed .x-button-icon.insert-row,.x-item-pressed .list-icon.insert-row{background-position:-24px -696px}.x-button-icon.insert-column,.list-icon.insert-column{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -720px;background-size:72px 888px}.x-button-pressing .x-button-icon.insert-column,.x-button-pressing .list-icon.insert-column,.x-button-pressed .x-button-icon.insert-column,.x-button-pressed .list-icon.insert-column,.x-button-active .x-button-icon.insert-column,.x-button-active .list-icon.insert-column,.x-item-pressed .x-button-icon.insert-column,.x-item-pressed .list-icon.insert-column{background-position:-24px -720px}.x-button-icon.highlightcolor,.list-icon.highlightcolor{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -744px;background-size:72px 888px}.x-button-pressing .x-button-icon.highlightcolor,.x-button-pressing .list-icon.highlightcolor,.x-button-pressed .x-button-icon.highlightcolor,.x-button-pressed .list-icon.highlightcolor,.x-button-active .x-button-icon.highlightcolor,.x-button-active .list-icon.highlightcolor,.x-item-pressed .x-button-icon.highlightcolor,.x-item-pressed .list-icon.highlightcolor{background-position:-24px -744px}.x-button-icon.textcolor,.list-icon.textcolor{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -768px;background-size:72px 888px}.x-button-pressing .x-button-icon.textcolor,.x-button-pressing .list-icon.textcolor,.x-button-pressed .x-button-icon.textcolor,.x-button-pressed .list-icon.textcolor,.x-button-active .x-button-icon.textcolor,.x-button-active .list-icon.textcolor,.x-item-pressed .x-button-icon.textcolor,.x-item-pressed .list-icon.textcolor{background-position:-24px -768px}.x-button-icon.textbigger,.list-icon.textbigger{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -792px;background-size:72px 888px}.x-button-pressing .x-button-icon.textbigger,.x-button-pressing .list-icon.textbigger,.x-button-pressed .x-button-icon.textbigger,.x-button-pressed .list-icon.textbigger,.x-button-active .x-button-icon.textbigger,.x-button-active .list-icon.textbigger,.x-item-pressed .x-button-icon.textbigger,.x-item-pressed .list-icon.textbigger{background-position:-24px -792px}.x-button-icon.textless,.list-icon.textless{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -816px;background-size:72px 888px}.x-button-pressing .x-button-icon.textless,.x-button-pressing .list-icon.textless,.x-button-pressed .x-button-icon.textless,.x-button-pressed .list-icon.textless,.x-button-active .x-button-icon.textless,.x-button-active .list-icon.textless,.x-item-pressed .x-button-icon.textless,.x-item-pressed .list-icon.textless{background-position:-24px -816px}.x-button-icon.spinner-prev,.list-icon.spinner-prev{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -840px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-prev,.x-button-pressing .list-icon.spinner-prev,.x-button-pressed .x-button-icon.spinner-prev,.x-button-pressed .list-icon.spinner-prev,.x-button-active .x-button-icon.spinner-prev,.x-button-active .list-icon.spinner-prev,.x-item-pressed .x-button-icon.spinner-prev,.x-item-pressed .list-icon.spinner-prev{background-position:-24px -840px}.x-button-icon.spinner-next,.list-icon.spinner-next{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -864px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-next,.x-button-pressing .list-icon.spinner-next,.x-button-pressed .x-button-icon.spinner-next,.x-button-pressed .list-icon.spinner-next,.x-button-active .x-button-icon.spinner-next,.x-button-active .list-icon.spinner-next,.x-item-pressed .x-button-icon.spinner-next,.x-item-pressed .list-icon.spinner-next{background-position:-24px -864px}.x-button.x-button-base{padding:.3em 8px}.x-button.x-button-base,.x-toolbar .x-button.x-button-base{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-base .x-button-icon,.x-toolbar .x-button.x-button-base .x-button-icon{width:24px;height:24px}.x-button.x-button-base.x-button-forward:before,.x-button.x-button-base.x-button-forward:after,.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base .x-button-label,.x-button.x-button-base .x-badge,.x-toolbar .x-button.x-button-base .x-button-label,.x-toolbar .x-button.x-button-base .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-forward:before{background:#989898}.x-button.x-button-base,.x-button.x-button-base.x-button-back:after,.x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base,.x-toolbar .x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-base.x-button-pressing,.x-button.x-button-base.x-button-pressing:after,.x-button.x-button-base.x-button-pressed,.x-button.x-button-base.x-button-pressed:after,.x-button.x-button-base.x-button-active,.x-button.x-button-base.x-button-active:after,.x-toolbar .x-button.x-button-base.x-button-pressing,.x-toolbar .x-button.x-button-base.x-button-pressing:after,.x-toolbar .x-button.x-button-base.x-button-pressed,.x-toolbar .x-button.x-button-base.x-button-pressed:after,.x-toolbar .x-button.x-button-base.x-button-active,.x-toolbar .x-button.x-button-base.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-base.x-button-pressing .x-button-label,.x-button.x-button-base.x-button-pressing .x-badge,.x-button.x-button-base.x-button-pressed .x-button-label,.x-button.x-button-base.x-button-pressed .x-badge,.x-button.x-button-base.x-button-active .x-button-label,.x-button.x-button-base.x-button-active .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-base:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-light{padding:.3em 8px}.x-button.x-button-light,.x-toolbar .x-button.x-button-light{border:1px solid #c7c7c7;border-top-color:#d9d9d9;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#262626}.x-button.x-button-light .x-button-icon,.x-toolbar .x-button.x-button-light .x-button-icon{width:24px;height:24px}.x-button.x-button-light.x-button-forward:before,.x-button.x-button-light.x-button-forward:after,.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-light .x-button-label,.x-button.x-button-light .x-badge,.x-toolbar .x-button.x-button-light .x-button-label,.x-toolbar .x-button.x-button-light .x-badge{color:#666;text-shadow:#fff 0 0.09em 0}.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-forward:before{background:#ccc}.x-button.x-button-light,.x-button.x-button-light.x-button-back:after,.x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light,.x-toolbar .x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:after{background-image:none;background-color:#fff;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#ffffff)}.x-button.x-button-light.x-button-pressing,.x-button.x-button-light.x-button-pressing:after,.x-button.x-button-light.x-button-pressed,.x-button.x-button-light.x-button-pressed:after,.x-button.x-button-light.x-button-active,.x-button.x-button-light.x-button-active:after,.x-toolbar .x-button.x-button-light.x-button-pressing,.x-toolbar .x-button.x-button-light.x-button-pressing:after,.x-toolbar .x-button.x-button-light.x-button-pressed,.x-toolbar .x-button.x-button-light.x-button-pressed:after,.x-toolbar .x-button.x-button-light.x-button-active,.x-toolbar .x-button.x-button-light.x-button-active:after{background-image:none;background-color:#999;background-image:-webkit-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-moz-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-o-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-ms-linear-gradient(to bottom, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a)}.x-button.x-button-light.x-button-pressing .x-button-label,.x-button.x-button-light.x-button-pressing .x-badge,.x-button.x-button-light.x-button-pressed .x-button-label,.x-button.x-button-light.x-button-pressed .x-badge,.x-button.x-button-light.x-button-active .x-button-label,.x-button.x-button-light.x-button-active .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-light.x-button-active .x-button-label,.x-toolbar .x-button.x-button-light.x-button-active .x-badge{color:#fff;text-shadow:gray 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-light{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-light:not(.x-first){border-left:1px solid #c7c7c7}.x-segmentedbutton-base.divided .x-button-light:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-light.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-light.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-base-blue{padding:.3em 8px}.x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue{border:1px solid #2e519b;border-top-color:#3760b7;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#fff}.x-button.x-button-base-blue .x-button-icon,.x-toolbar .x-button.x-button-base-blue .x-button-icon{width:24px;height:24px}.x-button.x-button-base-blue.x-button-forward:before,.x-button.x-button-base-blue.x-button-forward:after,.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base-blue .x-button-label,.x-button.x-button-base-blue .x-badge,.x-toolbar .x-button.x-button-base-blue .x-button-label,.x-toolbar .x-button.x-button-base-blue .x-badge{color:#fff;text-shadow:#2e519b 0 -0.09em 0}.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before{background:#3155a3}.x-button.x-button-base-blue,.x-button.x-button-base-blue.x-button-back:after,.x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-moz-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-o-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-ms-linear-gradient(to bottom, #ffffff,#9bb2e1 3%,#688ad2)}.x-button.x-button-base-blue.x-button-pressing,.x-button.x-button-base-blue.x-button-pressing:after,.x-button.x-button-base-blue.x-button-pressed,.x-button.x-button-base-blue.x-button-pressed:after,.x-button.x-button-base-blue.x-button-active,.x-button.x-button-base-blue.x-button-active:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressing,.x-toolbar .x-button.x-button-base-blue.x-button-pressing:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressed,.x-toolbar .x-button.x-button-base-blue.x-button-pressed:after,.x-toolbar .x-button.x-button-base-blue.x-button-active,.x-toolbar .x-button.x-button-base-blue.x-button-active:after{background-image:none;background-color:#416cc6;background-image:-webkit-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-moz-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-o-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-ms-linear-gradient(to bottom, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7)}.x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-button.x-button-base-blue.x-button-pressing .x-badge,.x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-button.x-button-base-blue.x-button-pressed .x-badge,.x-button.x-button-base-blue.x-button-active .x-button-label,.x-button.x-button-base-blue.x-button-active .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge{text-shadow:#2e519b 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base-blue{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first){border-left:1px solid #2e519b}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base-blue.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base-blue.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-back{padding:.3em 8px}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-back .x-button-icon,.x-toolbar .x-button.x-button-back .x-button-icon{width:24px;height:24px}.x-button.x-button-back.x-button-forward:before,.x-button.x-button-back.x-button-forward:after,.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-back .x-button-label,.x-button.x-button-back .x-badge,.x-toolbar .x-button.x-button-back .x-button-label,.x-toolbar .x-button.x-button-back .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-forward:before{background:#989898}.x-button.x-button-back,.x-button.x-button-back.x-button-back:after,.x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back,.x-toolbar .x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-back.x-button-pressing,.x-button.x-button-back.x-button-pressing:after,.x-button.x-button-back.x-button-pressed,.x-button.x-button-back.x-button-pressed:after,.x-button.x-button-back.x-button-active,.x-button.x-button-back.x-button-active:after,.x-toolbar .x-button.x-button-back.x-button-pressing,.x-toolbar .x-button.x-button-back.x-button-pressing:after,.x-toolbar .x-button.x-button-back.x-button-pressed,.x-toolbar .x-button.x-button-back.x-button-pressed:after,.x-toolbar .x-button.x-button-back.x-button-active,.x-toolbar .x-button.x-button-back.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-back.x-button-pressing .x-button-label,.x-button.x-button-back.x-button-pressing .x-badge,.x-button.x-button-back.x-button-pressed .x-button-label,.x-button.x-button-back.x-button-pressed .x-badge,.x-button.x-button-back.x-button-active .x-button-label,.x-button.x-button-back.x-button-active .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-back.x-button-active .x-button-label,.x-toolbar .x-button.x-button-back.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-back{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-back:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-back:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-back.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-back.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.unsuported-view{position:absolute;left:0;top:0;right:0;bottom:0;background:url(../img/ios-only.png) no-repeat center #efefef;background-attachment:fixed;z-index:90000}.x-button.text-offset-12{padding-left:12px;padding-right:12px}.x-button.text-offset-30{padding-left:30px;padding-right:30px} diff --git a/apps/documenteditor/mobile/resources/css/application-retina.css b/apps/documenteditor/mobile/resources/css/application-retina.css index f9c11b3ed..2112312a5 100644 --- a/apps/documenteditor/mobile/resources/css/application-retina.css +++ b/apps/documenteditor/mobile/resources/css/application-retina.css @@ -1,11785 +1 @@ -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, -h4, h5, h6, pre, code, form, fieldset, legend, -input, textarea, p, blockquote, th, td { - margin: 0; - padding: 0; -} - -/* line 8, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -fieldset, img { - border: 0; -} - -/* line 18, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -address, caption, cite, code, -dfn, em, strong, th, var { - font-style: normal; - font-weight: normal; -} - -/* line 23, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -li { - list-style: none; -} - -/* line 27, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -caption, th { - text-align: left; -} - -/* line 31, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -h1, h2, h3, h4, h5, h6 { - font-size: 100%; - font-weight: normal; -} - -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -q:before, -q:after { - content: ""; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -abbr, acronym { - border: 0; - font-variant: normal; -} - -/* line 46, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sup { - vertical-align: text-top; -} - -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sub { - vertical-align: text-bottom; -} - -/* line 54, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -input, textarea, select { - font-family: inherit; - font-size: inherit; - font-weight: inherit; -} - -/* line 60, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -*:focus { - outline: none; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 10, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -html, body { - font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif; - font-weight: normal; - position: relative; - -webkit-text-size-adjust: none; -} - -/* line 17, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - overflow: hidden; -} - -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -*, *:after, *:before { - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -webkit-touch-callout: none; - -webkit-user-drag: none; -} - -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-ios.x-tablet .x-landscape * { - -webkit-text-stroke: 1px transparent; -} - -/* line 33, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body { - font-size: 104%; -} - -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone { - font-size: 116%; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone.x-silk { - font-size: 130%; -} - -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-ios.x-phone { - font-size: 114%; -} - -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - font-size: 114%; -} - -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -input, textarea { - -webkit-user-select: text; -} - -/* line 57, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-visibility { - visibility: hidden !important; -} - -/* line 61, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-display, .x-field-hidden { - display: none !important; -} - -/* line 65, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-offsets { - position: absolute !important; - left: -10000em; - top: -10000em; - visibility: hidden; -} - -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-fullscreen { - position: absolute !important; -} - -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-desktop .x-body-stretcher { - margin-bottom: 0px; -} - -/* line 83, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: 100%; - z-index: 10; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - background: rgba(0, 0, 0, 0.3) center center no-repeat; -} -/* line 100, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-gray { - background-color: rgba(0, 0, 0, 0.5); -} -/* line 104, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-transparent { - background-color: transparent; -} -/* line 108, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-inner { - position: relative; - background: rgba(0, 0, 0, 0.25); - color: #fff; - text-align: center; - padding: .4em; - font-size: .95em; - font-weight: bold; - -webkit-border-radius: 0.5em; - border-radius: 0.5em; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-loading-spinner-outer { - display: -webkit-box; - display: box; - -webkit-box-orient: vertical; - box-orient: vertical; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - width: 100%; - min-width: 8.5em; - height: 8.5em; -} -/* line 130, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-inner { - padding-bottom: 0 !important; -} -/* line 133, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-loading-spinner-outer { - display: none; -} -/* line 136, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-message { - position: relative; - bottom: .25em; -} -/* line 142, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-message { - position: absolute; - bottom: 1.7em; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-flex: 0 !important; - max-width: 13em; - min-width: 8.5em; -} -/* line 152, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-mask-inner { - padding-bottom: 2em; -} -/* line 156, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-loading-spinner-outer { - height: 7.5em; -} - -/* line 162, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-draggable { - z-index: 1; -} - -/* line 166, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-dragging { - opacity: 0.7; -} - -/* line 170, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-panel-list { - background-color: white; -} - -/* line 175, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html { - -webkit-user-select: auto; - -webkit-touch-callout: inherit; - line-height: 1.5; - color: #333; - font-size: .8em; - padding: 1.2em; -} -/* line 33, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html body { - line-height: 1.5; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - color: #333333; - font-size: 75%; -} -/* line 51, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 { - font-weight: normal; - color: #222222; -} -/* line 52, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img { - margin: 0; -} -/* line 53, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 { - font-size: 3em; - line-height: 1; - margin-bottom: 0.50em; -} -/* line 54, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h2 { - font-size: 2em; - margin-bottom: 0.75em; -} -/* line 55, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h3 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; -} -/* line 56, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h4 { - font-size: 1.2em; - line-height: 1.25; - margin-bottom: 1.25em; -} -/* line 57, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h5 { - font-size: 1em; - font-weight: bold; - margin-bottom: 1.50em; -} -/* line 58, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h6 { - font-size: 1em; - font-weight: bold; -} -/* line 59, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p { - margin: 0 0 1.5em; -} -/* line 60, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .left { - display: inline; - float: left; - margin: 1.5em 1.5em 1.5em 0; - padding: 0; -} -/* line 61, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .right { - display: inline; - float: right; - margin: 1.5em 0 1.5em 1.5em; - padding: 0; -} -/* line 62, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html a { - text-decoration: underline; - color: #0066cc; -} -/* line 18, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:visited { - color: #004c99; -} -/* line 21, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:focus { - color: #0099ff; -} -/* line 24, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:hover { - color: #0099ff; -} -/* line 27, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:active { - color: #bf00ff; -} -/* line 63, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html blockquote { - margin: 1.5em; - color: #666666; - font-style: italic; -} -/* line 64, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html strong, .x-html dfn { - font-weight: bold; -} -/* line 65, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html em, .x-html dfn { - font-style: italic; -} -/* line 66, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html sup, .x-html sub { - line-height: 0; -} -/* line 67, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html abbr, .x-html acronym { - border-bottom: 1px dotted #666666; -} -/* line 68, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html address { - margin: 0 0 1.5em; - font-style: italic; -} -/* line 69, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html del { - color: #666666; -} -/* line 70, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre { - margin: 1.5em 0; - white-space: pre; -} -/* line 71, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre, .x-html code, .x-html tt { - font: 1em "andale mono", "lucida console", monospace; - line-height: 1.5; -} -/* line 72, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html li ul, .x-html li ol { - margin: 0; -} -/* line 73, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul, .x-html ol { - margin: 0 1.5em 1.5em 0; - padding-left: 1.5em; -} -/* line 74, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul { - list-style-type: disc; -} -/* line 75, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ol { - list-style-type: decimal; -} -/* line 76, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl { - margin: 0 0 1.5em 0; -} -/* line 77, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl dt { - font-weight: bold; -} -/* line 78, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dd { - margin-left: 1.5em; -} -/* line 79, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table { - margin-bottom: 1.4em; - width: 100%; -} -/* line 80, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th { - font-weight: bold; -} -/* line 81, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html thead th { - background: #c3d9ff; -} -/* line 82, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th, .x-html td, .x-html caption { - padding: 4px 10px 4px 5px; -} -/* line 85, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table.striped tr:nth-child(even) td, -.x-html table tr.even td { - background: #e5ecf9; -} -/* line 86, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html tfoot { - font-style: italic; -} -/* line 87, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html caption { - background: #eeeeee; -} -/* line 88, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .quiet { - color: #666666; -} -/* line 89, /Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .loud { - color: #111111; -} -/* line 185, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ul li { - list-style-type: circle; -} -/* line 188, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ol li { - list-style-type: decimal; -} - -/* line 194, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-video { - background-color: #000; -} - -/* line 198, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-sortable .x-dragging { - opacity: 1; - z-index: 5; -} - -/* line 203, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-layout-card-item { - background: #eeeeee; -} - -/* line 1, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map { - background-color: #edeae2; -} -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map * { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -/* line 9, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-mask-map { - background: transparent !important; -} - -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map-container { - position: absolute !important; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Toolbar - */ -/** - * @var {color} $toolbar-base-color - * The primary color variable from which toolbars derive their light and dark UIs. - */ -/** - * @var {measurement} $toolbar-spacing - * Space between items in a toolbar (like buttons and fields) - */ -/** - * @var {string} $toolbar-gradient - * Background gradient style for toolbars. - */ -/** - * @var {boolean} $include-toolbar-uis - * Optionally disable separate toolbar UIs (light and dark). - */ -/** - * Includes default toolbar styles. - */ -/** - * Creates a theme UI for toolbars. - * - * // SCSS - * @include sencha-toolbar-ui('sub', #58710D, 'glossy'); - * - * // JS - * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'}) - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Button - */ -/** - * @var {measurement} $button-height Default height for buttons. - */ -/** - * @var {measurement} $button-radius Default border-radius for buttons. - */ -/** - * @var {measurement} $button-stroke-weight Default border width for buttons. - */ -/** - * @var {string} $button-gradient Default gradient for buttons. - */ -/** - * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons. - */ -/** - * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline. - */ -/** - * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows. - */ -/** - * Includes default button styles. - */ -/** - * Creates a theme UI for buttons. - * Also automatically generates UIs for {ui-label}-round and {ui-label}-small. - * - * // SCSS - * @include sencha-button-ui('secondary', #99A4AE, 'glossy'); - * - * // JS - * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'}); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.tab.Bar - */ -/** - * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark). - */ -/** - * @var {boolean} $include-top-tabs - * Optionally exclude top tab styles by setting to false. - */ -/** - * @var {boolean} $include-bottom-tabs - * Optionally exclude bottom tab styles by setting to false. - */ -/** - * @var {color} $tabs-light - * Base color for "light" UI tabs. - */ -/** - * @var {color} $tabs-light-active - * Active color for "light" UI tabs. - */ -/** - * @var {color} $tabs-dark - * Base color for "dark" UI tabs. - */ -/** - * @var {color} $tabs-dark-active - * Active color for "dark" UI tabs. - */ -/** - * @var {string} $tabs-bar-gradient - * Background gradient style for tab bars. - */ -/** - * @class Ext.tab.Tab - */ -/** - * @var {string} $tabs-bottom-radius - * Border-radius for bottom tabs. - */ -/** - * @var {string} $tabs-bottom-icon-size - * Icon size for bottom tabs - */ -/** - * @var {string} $tabs-bottom-active-gradient - * Background gradient style for active bottom tabs. - */ -/** - * @var {boolean} $include-tab-highlights - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * Includes default tab styles. - * - * @member Ext.tab.Bar - */ -/** - * Creates a theme UI for tabbar/tab components. - * - * // SCSS - * @include sencha-button-ui('pink', #333, 'matte', #AE537A); - * - * // JS - * var tabs = new Ext.tab.Panel({ - * tabBar: { - * ui: 'pink', - * dock: 'bottom', - * layout: { pack: 'center' } - * }, - * ... - * }); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $bar-color Base color for the tab bar. - * @param {string} $bar-gradient Background gradient style for the tab bar. - * @param {color} $tab-active-color Background-color for active tab icons. - * - * @member Ext.tab.Bar - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.carousel.Indicator - */ -/** - * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots. - */ -/** - * @var {measurement} $carousel-indicator-spacing - * Amount of space between carousel indicator dots. - */ -/** - * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in. - */ -/** - * Creates a theme UI for carousel indicator components. - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - * @param {color} $active-color Active color for the UI. - * @param {string} $active-gradient Active gradient for the UI. - */ -/** - * @class Ext.carousel.Carousel - */ -/** - * Includes basic carousel formatting. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.IndexBar - */ -/** - * @var {measurement} $index-bar-width - * Width of the index bar. - */ -/** - * @var {color} $index-bar-bg-color - * Background-color of the index bar. - */ -/** - * @var {color} $index-bar-color - * Text color of the index bar. - */ -/** - * Includes default index bar styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.List - */ -/** - * @var {color} $list-color - * Text color for list rows. - */ -/** - * @var {color} $list-bg-color - * Background-color for list rows. - */ -/** - * @var {color} $include-list-highlights - * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $list-zebrastripe - * Optionally zebra-stripe the list (alternating background colors). - */ -/** - * @var {color} $list-pressed-color - * Background-color for pressed list rows. - */ -/** - * @var {color} $list-active-color - * Background-color for selected list rows. - */ -/** - * @var {string} $list-active-gradient - * Gradient style for selected list rows. - */ -/** - * @var {color} $list-header-bg-color - * Background-color for list header rows (in grouped lists). - */ -/** - * @var {string} $list-header-gradient - * Gradient style for list header rows (in grouped lists). - */ -/** - * @var {measurement} $list-disclosure-size - * Default size (width/height) for disclosure icons. - */ -/** - * @var {measurement} $list-disclosure-round-size - * Default size (width/height) for disclosure icons in a list with a `round` ui. - */ -/** - * @var {measurement} $list-round-padding - * Default padding for lists with a `round` ui. - */ -/** - * Includes default list styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * Includes default form slider styles. - * - * @member Ext.field.Slider - */ -/** - * @var {color} $form-bg-color - * Default background-color for forms. - * - * @member Ext.form.Panel - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $form-field-bg-color - * Default background-color for form fields. - */ -/** - * @var {color} $form-light - * Light color for form fields, mostly used on field borders. - */ -/** - * @var {color} $form-dark - * Dark color for form fields, mostly used on labels/text. - */ -/** - * @var {measurement} $form-label-width - * Default width for form labels. - */ -/** - * @var {color} $form-label-background-color - * The default background color for labels - */ -/** - * @var {measurement} $form-field-height - * Default height for form fields. - */ -/** - * @var {measurement} $form-spacing - * Default spacing for form fields, used for padding, etc. - */ -/** - * @var {measurement} $form-textarea-height - * Default height for form textareas. - * - * @member Ext.field.TextArea - */ -/** - * @var {measurement} $form-thumb-size - * Default size of "thumbs" for form sliders/toggles. - * - * @member Ext.field.Slider - */ -/** - * @var {measurement} $form-toggle-size - * Thumb size minus padding for inset thumbs like in a Toggle element. - * - * @member Ext.field.Toggle - */ -/** - * @var {measurement} $form-fieldset-radius - * Default border-radius for form fieldsets. - * - * @member Ext.form.FieldSet - */ -/** - * @var {measurement} $form-slider-size - * Height of the slider "track." - * - * @member Ext.field.Slider - */ -/** - * Includes default form styles. - * - * @member Ext.form.Panel - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Sheet - */ -/** - * @var {color} $sheet-bg-color - * Background-color for action sheets and message boxes. - */ -/** - * @var {color} $sheet-bg-gradient - * Background gradient style for action sheets and message boxes. - */ -/** - * @var {measurement} $sheet-button-spacing - * Vertical spacing between sheet buttons. - */ -/** - * @var {measurement} $sheet-padding - * Overall padding in a sheet. - */ -/** - * Includes default sheet styles (also required for message box). - */ -/** - * Includes default message box styles. - * - * @member Ext.MessageBox - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $toolbar-input-bg - * Background-color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-color - * Text color for toolbar form fields. - */ -/** - * @var {measurement} $toolbar-input-height - * Text color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-border-color - * Border color for toolbar form fields. - */ -/** - * Includes default toolbar form field styles. - * - * @member Ext.tab.Bar - */ -/** - * @class Ext.LoadMask - */ -/** - * @var {color} $loading-spinner-color - * Background-color for the bars in the loading spinner. - */ -/** - * Includes default loading spinner styles (for dataviews). - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 4, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image { - text-align: center; -} -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image img { - width: auto; - height: 100%; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-background { - background-repeat: no-repeat; - background-position: center; - background-size: auto 100%; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video { - height: 100%; - width: 100%; -} - -/* line 8, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video > * { - height: 100%; - width: 100%; - position: absolute; -} - -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video-ghost { - -webkit-background-size: 100% auto; - background: black url() center center no-repeat; -} - -/* line 19, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -audio { - width: 100%; -} - -/* line 8, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel, -.x-msgbox, -.x-panel-body { - position: relative; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating, -.x-msgbox, -.x-form.x-floating { - padding: 6px; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - background-image: none; - background-color: #656565; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating.x-floating-light, -.x-msgbox.x-floating-light, -.x-form.x-floating.x-floating-light { - background-image: none; - background-color: #cbcbcb; -} -/* line 26, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating .x-panel-inner, -.x-panel.x-floating > .x-body, -.x-msgbox .x-panel-inner, -.x-msgbox > .x-body, -.x-form.x-floating .x-panel-inner, -.x-form.x-floating > .x-body { - z-index: 1; - background-color: #fff; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 35, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock, -.x-msgbox > .x-dock, -.x-form.x-floating > .x-dock { - z-index: 1; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock.x-sized, -.x-msgbox > .x-dock.x-sized, -.x-form.x-floating > .x-dock.x-sized { - margin: 6px; -} - -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor { - position: absolute; - overflow: hidden; -} -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-top { - margin-top: -0.68em; - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-bottom { - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-left { - margin-left: -0.6655em; - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} -/* line 82, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-right { - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} - -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-floating.x-panel-light:after { - background-color: #cbcbcb; -} - -/* line 52, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - min-height: 1.8em; - padding: .3em .6em; - position: relative; - overflow: hidden; - -webkit-user-select: none; - z-index: 1; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-toolbar .x-button { - border: 1px solid #999999; - border-top-color: #a6a6a6; - color: black; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before { - background: #999999; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after { - background-image: none; - background-color: #cccccc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf)); - background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); - background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after { - background-image: none; - background-color: #c4c4c4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6)); - background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); - background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); -} -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon { - width: 2.1em; - height: 2.1em; - background-repeat: no-repeat; - background-position: center; - display: block; -} -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon.x-icon-mask { - width: 1.1em; - height: 1.1em; - -webkit-mask-size: 1.1em; -} -/* line 80, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon { - opacity: .5; -} - -/* line 86, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-round { - -webkit-border-radius: 0.9em; - border-radius: 0.9em; -} - -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left, .x-icon-align-right { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} - -/* line 95, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top, .x-iconalign-bottom { - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 98, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom, .x-iconalign-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} - -/* line 101, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-center { - -webkit-box-pack: center; - box-pack: center; -} - -/* line 104, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge { - margin-left: 0.3em; -} - -/* line 107, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge { - margin-right: 0.3em; -} - -/* line 110, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge { - margin-top: 0.3em; -} - -/* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge { - margin-bottom: 0.3em; -} - -/* line 118, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-label, .x-hasbadge .x-badge { - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-align: center; - box-align: center; - white-space: nowrap; - text-overflow: ellipsis; - text-align: center; - font-weight: bold; - line-height: 1.2em; - display: block; - overflow: hidden; -} - -/* line 131, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button { - margin: 0 .2em; - padding: .3em .6em; -} -/* line 135, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge { - font-size: .7em; -} -/* line 139, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge { - line-height: 1.6em; -} - -/* line 144, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small, .x-toolbar .x-button-small { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - padding: .2em .4em; - min-height: 0; -} -/* line 149, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge { - font-size: .6em; -} -/* line 153, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon { - width: .75em; - height: .75em; -} -/* line 157, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask { - -webkit-mask-size: .75em; -} - -/* line 175, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, .x-button-back { - position: relative; - overflow: visible; - height: 1.7em; - z-index: 1; -} -/* line 180, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after { - content: ""; - position: absolute; - width: 0.80717em; - height: 1.8em; - top: -0.1em; - left: auto; - z-index: 2; - -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat; - -webkit-mask-size: 0.80717em 1.8em; - overflow: hidden; -} - -/* line 190, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back, -.x-toolbar .x-button-back { - margin-left: 0.87217em; - padding-left: .4em; -} -/* line 193, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:before, -.x-toolbar .x-button-back:before { - left: -0.72717em; -} -/* line 196, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:after, -.x-toolbar .x-button-back:after { - left: -0.68217em; -} - -/* line 202, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, -.x-toolbar .x-button-forward { - margin-right: 0.88217em; - padding-right: .4em; -} -/* line 205, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, -.x-toolbar .x-button-forward:before, -.x-toolbar .x-button-forward:after { - -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat; -} -/* line 208, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, -.x-toolbar .x-button-forward:before { - right: -0.72717em; -} -/* line 211, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:after, -.x-toolbar .x-button-forward:after { - right: -0.68217em; -} - -/* line 219, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain, -.x-toolbar .x-button.x-button-plain { - background: none; - border: 0 none; - -webkit-border-radius: none; - border-radius: none; - min-height: 0; - text-shadow: none; - line-height: auto; - height: 1.9em; - padding: 0em 0.5em; -} -/* line 229, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain > *, -.x-toolbar .x-button.x-button-plain > * { - overflow: visible; -} -/* line 233, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain .x-button-icon, -.x-toolbar .x-button.x-button-plain .x-button-icon { - -webkit-mask-size: 1em; - width: 1em; - height: 1em; -} -/* line 239, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed, -.x-toolbar .x-button.x-button-plain.x-button-pressing, -.x-toolbar .x-button.x-button-plain.x-button-pressed { - background: none; - background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(255, 255, 255, 0.7)), color-stop(100%, rgba(255, 255, 255, 0))); - background-image: -webkit-radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); - background-image: radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); -} -/* line 244, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); - background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); -} - -/* line 251, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button { - margin: 0; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 257, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-first { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 260, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-last { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 265, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button:not(.x-first) { - border-left: 0; -} - -/* line 276, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge { - overflow: visible; -} -/* line 278, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge .x-badge { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; - padding: .1em .3em; - z-index: 2; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - overflow: hidden; - color: #ffcccc; - border: 1px solid #990000; - position: absolute; - width: auto; - min-width: 2em; - line-height: 1.2em; - font-size: .6em; - right: 0px; - top: -.2em; - max-width: 95%; - background-image: none; - background-color: #cc0000; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000)); - background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - display: inline-block; -} - -/* line 36, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar { - padding: 0 0.2em; - position: relative; -} -/* line 46, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-top { - border-bottom: .1em solid; -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-bottom { - border-top: .1em solid; -} -/* line 54, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-left { - width: 7em; - height: auto; - padding: 0.2em; - border-right: .1em solid; -} -/* line 61, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-right { - width: 7em; - height: auto; - padding: 0.2em; - border-left: .1em solid; -} - -/* line 69, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title { - line-height: 2.1em; - font-size: 1.2em; - text-align: center; - font-weight: bold; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: 0 0.3em; - padding: 0 .3em; - max-width: 100%; -} -/* line 81, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 103, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-navigation-bar .x-container { - overflow: visible; -} - -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner .x-input-el, -.x-field-select .x-input-el { - -webkit-text-fill-color: #000; - -webkit-opacity: 1; -} - -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner.x-item-disabled .x-input-el, -.x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: currentcolor; -} - -/* line 54, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-el { - -webkit-text-fill-color: #fff; -} - -/* line 58, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: rgba(255, 255, 255, 0.6); -} - -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field-container { - padding: 0 .3em; -} -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field { - width: 13em; - margin: .5em; - min-height: 0; - border-bottom: 0; - background: transparent; -} -/* line 74, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field .x-clear-icon { - background-size: 50% 50%; - right: -0.8em; - margin-top: -1.06em; -} -/* line 81, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-input { - padding-right: 1.6em !important; -} -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-textarea .x-component-outer, -.x-toolbar .x-field-text .x-component-outer, -.x-toolbar .x-field-number .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - background-color: white; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; -} -/* line 99, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-label { - background: transparent; - border: 0; - padding: 0; - line-height: 1.4em; -} -/* line 106, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field { - height: 1.6em; - color: #6e6e6e; - background: transparent; - min-height: 0; - -webkit-appearance: none; - padding: 0em .3em; - margin: 0; -} -/* line 115, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field:focus { - color: black; -} -/* line 122, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.8em; - border-radius: 0.8em; -} -/* line 128, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-search .x-field-input { - background-position: .5em 50%; -} -/* line 133, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - -webkit-box-shadow: none; -} -/* line 136, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-form-field { - height: 1.4em; -} -/* line 141, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - background: transparent; -} -/* line 145, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:after { - right: .4em; -} -/* line 151, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after { - opacity: .6; -} -/* line 157, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:before { - width: 3em; - border-left: none; - -webkit-border-top-right-radius: 0.8em; - border-top-right-radius: 0.8em; - -webkit-border-bottom-right-radius: 0.8em; - border-bottom-right-radius: 0.8em; - -webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC'); - -webkit-mask-position: right top; - -webkit-mask-repeat: repeat-y; - -webkit-mask-size: 3em 0.05em; -} -/* line 172, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-text { - color: #fff; -} - -/* line 178, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-android .x-field-search .x-field-input { - padding-left: .2em !important; - padding-right: 2.2em !important; -} - -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-wrapper { - -webkit-box-pack: end !important; - box-pack: end !important; - pointer-events: none; -} - -/* line 35, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-vertical { - width: 1.1em; - -webkit-box-orient: vertical; - box-orient: vertical; - margin-right: 8px; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-horizontal { - height: 1.1em; - -webkit-box-orient: horizontal; - box-orient: horizontal; - margin-bottom: 8px; -} - -/* line 47, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar { - pointer-events: auto; - z-index: 2; - padding: .3em 0; - min-height: 0 !important; - height: auto !important; - -webkit-box-flex: 0 !important; -} -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar > div { - color: #a5a5a5; - font-size: 0.6em; - text-align: center; - line-height: 1.1em; - font-weight: bold; - display: block; -} - -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-phone.x-landscape .x-indexbar > div { - font-size: 0.38em; - line-height: 1em; -} - -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-pressed { - -webkit-border-radius: 0.55em; - border-radius: 0.55em; - background-color: rgba(163, 143, 143, 0.8); -} - -/* line 84, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list { - position: relative; - background-color: #f7f7f7; - overflow: hidden; -} -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-inner { - width: 100% !important; -} -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-disclosure { - overflow: visible; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNCM0JGNTZFMjI2ODExQkNGQjkwMzk3MDc3MkZFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3M0MzQUU1QUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3M0MzQUU1OUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU3Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+uoWjuwAACh9JREFUeNrUm2toVdkVx7eJRqPRaHzFGBOjidGYaLQaX9GREXXAkloYQVpT+qFYBkcqLS0zTKFQWpwv86F0KLRfHFqnWDq0UCsMFYqlqHSwGo2v4Du+X9FoNL5P12/N3rLn9Cb33HNvrnHDujfnnHvO2f+91l57/dfaGWBe8xYEQUq/H5ilftWIVIoU2+Ov2e/jIt0inSKnRVpEnvdlR/oK8CKRt0QaRd4QyU3hXkDvFvmXyOeZHoABGXzWWJF3RL4rUuFfKC4uNmPHjjUjRozQ44kTJ+r3jRs3zNOnT013d7e5deuWuXTpknnx4oV/602RP4n8TqQ1EyadCcBlIh9YoHmcqKioMFOnTjXl5eVm1KhR5smTJwrs+fPnCohvOjpw4ECTk5Ojwt/5+fnmzp075vr16+bkyZPm1KlT/nv+KvJLkf++KsCAe89KPidmz55t5s6dawoLC839+/fNo0ePFCwgHjx4oMe0u3fv6vfw4cNNbm6uGTRokCkoKNDBycvLU+DDhg3TQTp27Jg5fPiwuXfvnnvvJyI/EunIJmCczqci1RzMmzfPLFiwQF9Ox65cuWKuXr2qZoqk0ikGa/z48WbcuHFm0qRJOihDhw41LS0tZu/evToI1sl9W2RXNgC/K/IRGp42bZpZsmSJasSZ4fnz51WbmWiDBw9W0NXV1TrvOd6zZ49pbX05nd8XwB/2FWA87a+tYzKLFi0yixcvVoCY3NmzZ8MOJ6OttLRUpwy+4dy5c2bnzp3u0h9FvifAuzMJmPm6Q+SbHGzYsEHn3P79+83Ro0fVCWWrVVZWmqVLl+rfO3bsUA8v7QuRbwjoa5l6z2/xD7KsBJs3bw7WrVsXiINh8rwSGTJkSLBmzRrtS1lZmTv/H5wnc7o3iTpnA1k69AXLli0LZAmJ1VGeQWfFEek3x3FBc684ymDLli0+6E/TBfymyDMeJmasL4jbSe4bPXp0MGvWLJX6+vpAApJAlqTYoAcMGBDU1NQEmzZtCsRxuvPvxQVM7Hubh4gnDsRJxdYsInM+kOUrkHVXj/lmAGVOBuJ909K0rBZBc3OzO4eCmuIA/jcPkEAiWLVqVVqdQjA7WWLc8TZ3ns7W1tYGstaqxuI8m8GbM2dOIKuGO3dDpCAVwCw9QUlJSbB+/XrfXGLLzJkzffMtFNko8pjjyZMnq4njFONOGRSyevVqNXF77hdRARc4U167dm0wZsyYjHhW5m0IsLFMCm0EEl0FDQ0NgZCMl2afqjBgTU1N7vg+PCUK4B9yw/Tp0wNZ6NOatxEAO/JxxC03mCWmH8eZMVBVVVVBXV2dO/ebMOCcEFhIwI/5g1j2woUL5tmzZ30dS7SLLBb5DHKxb98+jaVhXDIAKT2IAIgYnnjcto3iF6r934QBr4G+Tpkyxdy+fdt0dXVlK4DiRetEfs7BgQMHtPPE6rAm6XTkBz18+FDJC2GoDYc39ga4mQ9ZL5UMZEG74fYzC7zrzJkzSitlaqnG4MxRGvH8zZs3daBs+5YMWG6iFE+R1bA+HD6bNBCXkcfsioqKNJsBl+1JGwT9J06ciNLnz0TaRP5+8eLFMvohnlfJCVQzihLQMoMF05JnFNsAanf4dxCDoLy8XIOBKGsiyxXLjUyBQEY0FQdTGDFltMdFVAQ+MmiR4wGiONZme7w1kdNayYcsQ0rio8SdaBa2wuhnigOH8lmryGfRF5gZaSDYEvw7qVMQ/4PF+djCc7iBD9ItUTtPNoK5blu5pZtRpDMi6Cci3xfZjBNua2tTc8WZ8e7e5jWK8GhrvVhJng841+aOdY643FPSjEBubrac2cciK8hjQf6vXbumzowcWE99ACyKGzlypMNX6QNmYueTO3r8+HFWCX0KjTz1AtK1WNXx48c19TNhwgS1ykQNLFiCR4ZeAsZBqMe1SbL+2k7bIGUX2iNIIectsbjmu8INLN7yNNEHXKBrlDiFfqrdcJDydZEPXZDinG0is/YcV6EPWA+42JeJuAy390XW49hI2JNjC8cAYEGJvlJzzOvb8mztStPFeOUkS2muH2l1OxOIGsK94kZU+BdLL1W7xM/hBhYvMuv0NdzhvFoWl5q4rY6pC1iWnIULFxI+6vocbpizt8R2+IDb/egkFXaS5Ub4u496HYU64b2GYARml8j3hIKo9rCGOyh84d69id6f2gfWjAsIOgAMGaEwlwisIzaucGe+LL5/hS1RiH4Tk+5n6zGB8+9F3uaAWhZ9O3ToUK+MDqURSFkNd4lDaw976f18YPPeYp00w9DHrcxWFN6GMKxYsUKJzZEjR5LSV8B6DviLROThn3wQtuEMonhrXko6xrYLGaaHb1iwdSUlJapZ4mjMOEqsT0jZ2fmSo+xOBBgNd7icUBQK1tHRob8jJeTFrJlopGX+QYxP4qCqqkqLdlQqoyQAMGeXtbFtV6KMR7fNNmzExZPBSEYTGWm4MLy4trZWHV4iD8854t3t27frjoAkwcRHtp6lmQ46jgnjfKIWw1iXWW3IeuCb5L7WRIBpnwAY+kUBmpRKb86LDhDhXL58WcH3Ng0izPevBBPLly/XKXPw4MGUkgs4XTKunnb/kOweFnWtBGQqCZ8kL+2CibNcE2sJVq5cGQj1i1XeIRlPzcpLxhf1lpemsVNGQzWSYB7byEowIQOtjglCQOSXSmPuwo897X4sIDt6S9PS2B7Uwh4qzBAvnIn4uof593/BBPOVKRKHteE48T04N0sjfxX13kY/W0gBO12TnjFjhl+UI8PyZ3eNcix1pXTeQ5mGSqfMX3fuB6mWS3Wbg5iI1pjSLZeWlpZqldAen3JpXgkmtBZEh+M+G99ATQmx5w7hv1IFDGE+aWwNFw2lA5r6L46LEqyx9WKcU0VFRVoFOwposqKohdhz0KaauFse6o2t4eI1SYTH7RzTg2Q9SXuhdLobAPOLWwQ3tvpPebWxsdE/35zuphaCdt3nQSmTykQ6+zLoJLXgdIvsaNaB9erJWzOxi4f2jnvR/Pnz1cTTmXNxC95OZKnUGnII7LZkYFPdpviueyHOAUeGV01n61GcaYFlUKzHI3vXtvXkpNIB7Mz7ofPemDhOJ50NKalolXcSReEHvGtbowB1EieXgyNjG6JW1mEylDwIFoi9U42OkjXSNLA3oj6Ykle4g/t9R0D8LZXnxU1esWRttXM7lwwJNA6qCL2EpMO44iYIXNaFyMlFeu3t7Zq78ugeBbZz2d4RX2mBa/oFTRPLQs+ggfBlGA/gYV09hYvQR5eScRvF+Zt7iOm92JjMxU9snam3kLXPALvWYHlsoztBmgjtIGiazkMhw6ABC4+GpADa/QuA5bJ+Temn5sv/f4gSo/c5YNfYKd9kGVBdOCmO5hI1pkAC3t1uExKfmwTbFfoL4HACDlN/y5p+RZLfU/Fvs+BgbK1psLBXAjhR+qauh2unTfRdAa8N4D5pqQL+nwADAKGFDQ//Deb9AAAAAElFTkSuQmCC') no-repeat; - -webkit-mask-size: 1.7em; - background-image: none; - background-color: #5e86dc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9db6ea), color-stop(3%, #7396e0), color-stop(100%, #4977d7)); - background-image: -webkit-linear-gradient(top, #9db6ea, #7396e0 3%, #4977d7); - background-image: linear-gradient(top, #9db6ea, #7396e0 3%, #4977d7); - width: 1.7em; - height: 1.7em; - margin: 0.5em 0.5em 0 0; -} -/* line 103, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list.x-list-indexed .x-list-disclosure { - margin-right: 1.8em; -} -/* line 107, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-item-selected .x-list-disclosure { - background: #fff none; -} -/* line 111, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-scrolldock-hidden { - display: none; -} -/* line 115, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item { - position: absolute !important; - left: 0; - top: 0; - color: black; - width: 100%; -} -/* line 123, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-pressed .x-dock-horizontal { - background: white none; -} -/* line 128, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-selected .x-dock-horizontal { - background-image: none; - background-color: #688ad2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a3b8e4), color-stop(3%, #7c99d8), color-stop(100%, #547bcc)); - background-image: -webkit-linear-gradient(top, #a3b8e4, #7c99d8 3%, #547bcc); - background-image: linear-gradient(top, #a3b8e4, #7c99d8 3%, #547bcc); - color: white; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 134, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item > .x-dock { - height: auto; -} - -/* line 140, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item-body { - min-height: 46px; - padding: 0.65em 0.8em; -} - -/* line 145, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-header-swap { - position: absolute; - left: 0; - width: 100%; - z-index: 2 !important; -} - -/* line 152, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-ios .x-list-header-swap { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -/* line 156, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item .x-list-header { - display: none; -} - -/* line 160, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-grouped .x-list-header-wrap .x-list-header { - position: absolute; - top: 0; - left: 0; - width: 100%; - display: block; -} - -/* line 169, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 26px; -} -/* line 174, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-header-wrap .x-item-header, -.x-list-normal .x-list-header { - background-image: none; - background-color: #fefefe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #f3f0f0)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - color: #b9aaaa; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - border-top: 1px solid #fefefe; - border-bottom: 1px solid #d0c6c6; - font-weight: bold; - font-size: 0.8em; - padding: 0.2em 1.02em; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 202, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item .x-dock-horizontal { - border-top: 1px solid #dedede; -} -/* line 206, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal { - border-bottom: 1px solid #dedede; -} -/* line 214, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal { - border-top-color: white; - background-color: white; -} -/* line 219, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal { - border-top-color: #688ad2; - border-bottom: 1px solid #3760b7; -} - -/* line 227, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal { - border-top: 0; -} - -/* line 232, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 31px; -} -/* line 236, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-scroll-view { - background-color: #eee !important; -} -/* line 241, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header-swap { - padding-right: 13px; -} -/* line 245, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-inner .x-scroll-container { - top: 13px; - left: 13px; - bottom: 13px; - right: 13px; - width: auto !important; - height: auto !important; -} -/* line 254, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-disclosure { - overflow: hidden; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.5em; - background-image: none; - background-color: #e5e5e5; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f1f1f1), color-stop(100%, #d8d8d8)); - background-image: -webkit-linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - background-image: linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - width: 1.5em; - height: 1.5em; - margin: 0.5em 0.5em 0 0; -} -/* line 264, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header { - color: #777; - font-size: 1em; - font-weight: bold; - padding-left: 26px; - line-height: 1.7em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(30%, rgba(238, 238, 238, 0.9)), color-stop(100%, rgba(238, 238, 238, 0.4))); - background-image: -webkit-linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); - background-image: linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); -} -/* line 274, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container { - padding: 13px 13px 0 13px; -} -/* line 277, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container .x-list-header { - padding-left: 13px; - background-image: none; -} -/* line 285, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal, .x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - background: #f7f7f7; -} -/* line 295, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 299, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:last-child { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - border-width: 1px; - margin-bottom: 13px; -} -/* line 310, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 314, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 321, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap { - background: transparent; -} -/* line 324, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13px; -} -/* line 329, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #dedede; - background: #f7f7f7; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 340, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item { - display: inline-block !important; -} - -/* line 346, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-nowrap .x-dataview-container { - white-space: nowrap !important; -} - -/* line 352, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-inlineblock .x-list-item { - display: inline-block !important; -} - -/* line 358, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-inner { - width: auto; -} -/* line 361, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-container { - white-space: nowrap !important; -} - -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -html, body { - width: 100%; - height: 100%; -} - -@-webkit-keyframes x-paint-monitor-helper { - /* line 47, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - from { - zoom: 1; - } - - /* line 48, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - to { - zoom: 1; - } -} - -/* line 51, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitored { - position: relative; -} - -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor { - width: 0 !important; - height: 0 !important; - visibility: hidden; -} -/* line 59, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.cssanimation { - -webkit-animation-duration: 0.0001ms; - -webkit-animation-name: x-paint-monitor-helper; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange { - overflow: hidden; -} -/* line 65, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange::after { - content: ""; - display: block; - width: 1px !important; - height: 1px !important; -} - -/* line 74, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitored { - position: relative; -} - -/* line 78, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - visibility: hidden; - z-index: -9999; - overflow: hidden; -} -/* line 87, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors > * { - width: 100%; - height: 100%; - overflow: hidden; -} -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.shrink::after { - content: ""; - display: block; - width: 200%; - height: 200%; - min-width: 1px; - min-height: 1px; -} -/* line 101, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.expand::after { - content: ""; - display: block; - width: 100000px; - height: 100000px; -} -/* line 110, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.shrink > * { - width: 100%; - height: 100%; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.expand > * { - width: 200%; - height: 200%; -} - -/* line 130, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-body { - position: relative; - z-index: 0; -} - -/* line 135, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-inner, .x-body { - width: 100%; - height: 100%; -} - -/* line 140, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock, .x-dock-body { - height: 100%; -} - -/* line 144, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-sized { - position: relative; -} - -/* line 148, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container { - display: -webkit-box; - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 151, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 158, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-innerhtml { - width: 100%; -} - -/* line 162, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card { - position: relative; - overflow: hidden; -} - -/* line 167, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item-container { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 171, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 175, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item, .x-layout-newcard-item > * { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 179, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item:not(.active) { - display: none; -} - -/* line 183, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit.x-stretched > .x-layout-fit-item { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 188, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit { - position: relative; -} - -/* line 193, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-sized { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 196, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-unsized { - width: 100%; - height: 100%; -} - -/* line 202, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center, .x-centered { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: -webkit-box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; -} -/* line 207, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > *, .x-centered > * { - position: relative; -} -/* line 210, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > .x-floating, .x-centered > .x-floating { - position: relative !important; -} - -/* line 215, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-floating { - position: absolute; -} - -/* line 219, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock { - display: -webkit-box; -} -/* line 222, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 225, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock .x-dock-body { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 229, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized > .x-dock-body { - position: relative; -} -/* line 233, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 235, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * { - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 240, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 243, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} -/* line 245, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item { - display: -webkit-box; -} -/* line 248, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 252, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 254, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 301, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box { - display: -webkit-box; -} -/* line 303, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal { - -webkit-box-orient: horizontal !important; -} -/* line 305, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed { - width: 0 !important; -} -/* line 309, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 311, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical > .x-layout-box-item.x-flexed { - height: 0 !important; -} -/* line 315, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box > .x-layout-box-item { - display: -webkit-box !important; -} -/* line 318, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-start { - -webkit-box-align: start; - box-align: start; -} -/* line 321, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-center { - -webkit-box-align: center; - box-align: center; -} -/* line 324, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-end { - -webkit-box-align: end; - box-align: end; -} -/* line 327, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-stretch { - -webkit-box-align: stretch; - box-align: stretch; -} -/* line 330, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-start { - -webkit-box-pack: start; - box-pack: start; -} -/* line 333, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-center { - -webkit-box-pack: center; - box-pack: center; -} -/* line 336, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-end { - -webkit-box-pack: end; - box-pack: end; -} -/* line 339, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-justify { - -webkit-box-pack: justify; - box-pack: justify; -} - -/* line 345, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 350, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float { - overflow: hidden; -} -/* line 352, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float > .x-layout-float-item { - float: left; -} -/* line 356, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float.x-direction-right > .x-layout-float-item { - float: right; -} - -/* line 362, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner { - display: table !important; - width: 100% !important; - height: 100% !important; -} -/* line 367, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner.x-fixed-layout { - table-layout: fixed !important; -} - -/* line 372, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-row { - display: table-row !important; -} - -/* line 376, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-cell { - display: table-cell !important; - vertical-align: middle; -} - -/* line 381, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable { - position: absolute; - top: 100% !important; - left: 100% !important; - overflow: visible !important; - z-index: 1; -} -/* line 387, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable::before { - content: ""; - display: block; - position: absolute; - top: 100%; - left: 100%; - width: 100%; - height: 100%; - visibility: hidden; -} - -/* line 399, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container { - overflow: hidden; - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 402, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container::before { - content: ""; - display: block; - width: 300%; - height: 300%; - visibility: hidden; -} - -/* line 411, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector { - visibility: hidden; - position: absolute; - left: 0; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - overflow: hidden; -} - -/* line 422, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector > * { - visibility: hidden; -} - -/* line 426, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-shrink > * { - width: 200%; - height: 200%; -} - -/* line 431, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-expand > * { - width: 100000px; - height: 100000px; -} - -/* line 436, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-view { - position: relative; - display: block; - overflow: hidden; -} - -/* line 442, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-container { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 448, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-scroller { - position: absolute; - min-width: 100%; - min-height: 100%; - width: auto !important; - height: auto !important; -} - -/* line 456, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-ios .x-scroll-scroller { - -webkit-transform: translate3d(0, 0, 0); -} - -/* line 460, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-stretcher { - position: absolute; - visibility: hidden; -} - -/* line 465, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid-wrapper { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 471, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid { - display: table; - width: 100%; - height: 100%; -} -/* line 476, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * { - display: table-row; -} -/* line 480, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * > * { - display: table-cell; -} -/* line 484, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :first-child { - width: 100%; - height: 100%; -} -/* line 489, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :nth-child(2) { - padding: 3px 3px 0 0; -} -/* line 493, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :nth-child(2) > :first-child { - padding: 0 0 3px 3px; -} - -/* line 498, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar { - position: relative; - overflow: hidden; -} - -/* line 503, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-stretcher { - position: absolute; - visibility: hidden; - width: 100%; - height: 100%; -} - -/* line 510, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x { - width: 100%; -} -/* line 513, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x > .x-scroll-bar-stretcher { - width: 300%; -} -/* line 517, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x.active { - height: 6px; -} - -/* line 522, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y { - height: 100%; -} -/* line 525, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y > .x-scroll-bar-stretcher { - height: 300%; -} -/* line 529, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y.active { - width: 6px; -} - -/* line 534, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator { - background: #333; - position: absolute; - z-index: 3; - opacity: 0.5; -} - -/* line 541, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-android-4 .x-scroll-indicator { - opacity: 1; -} - -/* line 545, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.default { - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 552, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-list-light .x-scroll-indicator, -.x-dataview-light .x-scroll-indicator { - background: #fff; - opacity: 1; -} - -/* line 558, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-x { - height: 100%; -} - -/* line 562, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-y { - width: 100%; -} - -/* line 566, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform { - background: none; -} -/* line 569, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > * { - position: absolute; - background-color: #333; -} -/* line 574, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > :nth-child(2) { - -webkit-transform-origin: 0% 0%; - background: none; - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA); -} -/* line 581, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > * { - background-color: #eee; -} -/* line 585, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) { - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA); -} -/* line 591, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > * { - width: 100%; -} -/* line 595, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child { - height: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; -} -/* line 600, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) { - height: 1px; -} -/* line 604, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child { - height: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} -/* line 611, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > * { - height: 100%; -} -/* line 615, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child { - width: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; -} -/* line 620, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) { - width: 1px; -} -/* line 623, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child { - width: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 134, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container { - background-color: #eeeeee; -} -/* line 137, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container > .x-inner { - padding: 1em; -} - -/* line 144, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label { - text-shadow: #fff 0 1px 1px; - color: #333333; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - padding: 0.6em; - display: none !important; - background-color: #f7f7f7; -} -/* line 151, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label span { - font-size: .8em; - font-weight: bold; -} -/* line 156, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label-nowrap .x-form-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 162, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field { - display: -webkit-box; - display: box; - min-height: 2.5em; - background: #fff; -} -/* line 167, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input { - position: relative; - min-width: 3.7em; -} -/* line 173, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input, -.x-field .x-input-el { - width: 100%; -} -/* line 178, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field.x-field-labeled .x-form-label { - display: block !important; -} -/* line 183, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field:last-child { - border-bottom: 0; -} - -/* line 190, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left .x-component-outer, -.x-label-align-right .x-component-outer { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 197, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 203, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} - -/* line 213, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 217, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:first-child .x-form-label { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 222, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child { - border-bottom: 0; -} -/* line 225, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child .x-form-label { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 235, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left, -.x-label-align-right { - -webkit-box-orient: horizontal !important; - box-orient: horizontal !important; -} - -/* line 240, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top, -.x-label-align-bottom { - -webkit-box-orient: vertical !important; - box-orient: vertical !important; -} - -/* line 249, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 255, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top .x-component-outer { - position: relative; -} - -/* line 260, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 264, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 270, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-input-el { - padding: .4em; - min-height: 2.5em; - display: block; - border-width: 0; - background: transparent; - -webkit-appearance: none; -} - -/* line 279, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-mask { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 286, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-required label:after, -.x-field-required .x-form-label:after { - content: "*"; - display: inline; -} - -/* line 294, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled label:after, -.x-item-disabled .x-form-label:after { - color: #666 !important; -} - -/* line 301, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-textarea textarea { - min-height: 6em; - padding-top: .5em; -} - -/* line 313, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII='); - margin-top: -.7em; -} - -/* line 322, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - margin-top: -0.7em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,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'); -} - -/* line 330, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el { - position: relative; -} -/* line 332, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:after { - background-color: #dddddd; -} -/* line 335, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:checked:after { - background-color: #688ad2; -} - -/* line 340, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el { - position: relative; -} -/* line 342, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:before { - background-color: #d0d0d0; -} -/* line 345, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:after { - background-color: #dddddd; - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 349, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:checked:before { - background-color: #688ad2; -} - -/* line 356, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:checked:before { - background: #aebbd8; -} -/* line 360, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:after { - background: #eee; -} -/* line 367, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-checkbox .x-input-el:checked:after { - background: #aebbd8; -} - -/* line 376, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer { - display: -webkit-box; - display: box; -} -/* line 379, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer > * { - width: auto; -} -/* line 384, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input { - -webkit-box-flex: 1; -} -/* line 387, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input .x-input-el { - -webkit-text-fill-color: #000; - width: 100%; - text-align: center; -} -/* line 395, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input input::-webkit-outer-spin-button, -.x-spinner .x-field-input input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} -/* line 402, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-input-el { - -webkit-text-fill-color: #B3B3B3; -} -/* line 406, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-spinner-button { - color: #aaa !important; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button { - border: 1px solid #c4c4c4; - border-top-color: #d0d0d0; - color: #1e1e1e; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before { - background: #c4c4c4; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #f7f7f7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #efefef; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0)); - background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); - background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); -} -/* line 412, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button { - margin-top: .25em; - margin-bottom: .25em; - width: 2em; - padding: .23em 0 .27em; - font-weight: bold; - text-align: center; - border: 1px solid #dddddd !important; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button { - border: 1px solid #b7b7b7; - border-top-color: #c4c4c4; - color: #111111; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before { - background: #b7b7b7; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #eaeaea; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd)); - background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); - background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3)); - background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); - background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); -} -/* line 424, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-down { - margin-left: .25em; -} -/* line 427, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-up { - margin-right: .25em; -} -/* line 432, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-input-el { - text-align: left; -} -/* line 436, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: .5em; -} - -/* line 443, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-spinner-button { - padding: .40em 0 .11em !important; -} - -/* line 450, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-item-label { - height: 2.6em; -} -/* line 454, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -/* line 460, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-label { - margin-right: 2.6em; -} -/* line 465, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:before { - background-color: rgba(0, 0, 0, 0.3); - margin-top: -.8em; -} -/* line 470, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:after { - background-color: #dddddd; -} - -/* line 11, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer { - padding: 0.6em; -} - -/* line 17, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider, -.x-toggle { - position: relative; - height: 2.2em; - min-height: 0; - min-width: 0; -} -/* line 23, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider > *, -.x-toggle > * { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 30, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider.x-item-disabled { - opacity: .6; -} - -/* line 57, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb { - position: absolute; - height: 2.2em; - width: 2.2em; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb:after { - content: ""; - position: absolute; - width: 1.85em; - height: 1.85em; - top: 0.175em; - left: 0.175em; - border: 1px solid #919191; - -webkit-border-radius: 0.925em; - border-radius: 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0)); - background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging { - opacity: 1; -} -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging:after { - background-image: none; - background-color: #d0d0d0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4)); - background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); - background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); -} - -/* line 81, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider:after { - content: ""; - position: absolute; - width: auto; - height: 0.8em; - top: 0.7375em; - left: 0; - right: 0; - margin: 0 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - border: 0.1em solid rgba(0, 0, 0, 0.1); - border-bottom: 0; - -webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} - -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle { - width: 4.4em; - -webkit-border-radius: 1.1em; - border-radius: 1.1em; - overflow: hidden; - border: 1px solid #b7b7b7; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - -webkit-box-flex: 0; -} -/* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb.x-dragging { - opacity: 1; -} -/* line 117, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb:before { - top: 0.175em; -} - -/* line 146, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle-on { - background-image: none; - background-color: #92cf00; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200)); - background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); - background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); -} - -/* line 482, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/* line 488, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-number input::-webkit-outer-spin-button, -.x-field-number input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -/* line 495, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input { - position: relative; -} -/* line 498, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input:before { - content: ""; - position: absolute; - width: 0.86em; - height: 0.86em; - top: 50%; - left: 0.5em; - -webkit-mask-image: url('data:image/png;base64,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'); - -webkit-mask-size: .86em; - background-color: #ccc; - -webkit-mask-repeat: no-repeat; - margin-top: -0.43em; -} -/* line 506, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input .x-form-field { - margin-left: 1.0em; -} - -/* line 516, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-input .x-clear-icon { - display: none; - background: url('data:image/png;base64,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') no-repeat; - background-position: center center; - background-size: 55% 55%; - width: 2.2em; - height: 2.2em; - margin: .5em; - margin-top: -1.1em; - position: absolute; - top: 50%; - right: -.5em; -} - -/* line 532, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-clear-icon { - display: block; -} -/* line 536, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-field-input { - padding-right: 2.2em; -} - -/* line 541, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-input-el { - -webkit-text-fill-color: #000; -} - -/* line 545, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-empty .x-input-el { - -webkit-text-fill-color: #A9A9A9; -} - -/* line 556, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled .x-form-label span, -.x-item-disabled input, -.x-item-disabled .x-input-el, -.x-item-disabled .x-spinner-body, -.x-item-disabled select, -.x-item-disabled textarea, -.x-item-disabled .x-field-clear-container { - color: #b3b3b3; - -webkit-text-fill-color: #b3b3b3; - pointer-events: none; -} - -/* line 563, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset { - margin: 0 0 1.5em; -} -/* line 566, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-label { - border-top: 1px solid white; -} -/* line 570, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-fieldset-inner { - border: 1px solid #dddddd; - background: #fff; - padding: 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - overflow: hidden; -} -/* line 579, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field { - border-bottom: 1px solid #dddddd; - background: transparent; -} -/* line 583, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 589, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:last-child { - border-bottom: 0; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 599, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title { - text-shadow: #fff 0 1px 1px; - color: #333333; - margin: 1em 0.7em 0.3em; - color: #333333; - font-weight: bold; -} -/* line 605, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 610, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-instructions { - text-shadow: #fff 0 1px 1px; - color: #333333; - color: gray; - margin: 1em 0.7em 0.3em; - font-size: .8em; - text-align: center; -} - -/* line 619, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-selectmark-base, .x-field-select .x-component-outer:after { - content: ""; - position: absolute; - width: 1em; - height: 1em; - top: 50%; - left: auto; - right: 0.7em; - -webkit-mask-size: 1em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC'); - margin-top: -.5em; -} - -/* line 629, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select { - position: relative; - z-index: 1; -} -/* line 634, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:after { - background-color: #dddddd; -} -/* line 639, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after { - pointer-events: none; - position: absolute; - display: block; -} -/* line 645, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before { - content: ""; - position: absolute; - width: 4em; - height: auto; - top: 0; - left: auto; - right: 0; - bottom: 0; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white)); -} - -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox { - min-width: 15em; - max-width: 20em; - max-height: 90%; - margin: .5em; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - border: 0.15em solid #cbcbcb; -} -/* line 17, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-docking-vertical { - overflow: hidden; -} -/* line 22, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-icon { - margin: 0 0.8em 0 0.5em; - background: #fff; - -webkit-mask-size: 100%; -} -/* line 28, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-info { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-warning { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 36, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-question { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 40, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-error { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC'); -} -/* line 44, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-title { - font-size: .9em; - line-height: 1.4em; -} -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-body { - background: transparent !important; -} -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar { - background: transparent none; - -webkit-box-shadow: none; - box-shadow: none; -} -/* line 57, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-top { - border-bottom: 0; - height: 1.3em; -} -/* line 62, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom { - border-top: 0; -} -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field { - min-height: 2em; - background: #fff; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; -} -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-form-field { - min-height: 1.5em; - padding-right: 0 !important; - -webkit-appearance: none; -} -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field-input { - padding-right: 2.2em; -} - -/* line 84, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-text { - text-align: center; - padding: 6px 0; - line-height: 1.4em; -} - -/* line 90, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons { - padding: 0.4em 0; - height: auto; -} -/* line 94, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button { - min-width: 4.5em; -} -/* line 98, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button-normal span { - opacity: .7; -} - -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-text { - color: rgba(255, 255, 255, 0.9); - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-input { - background-image: none; - background-color: rgba(255, 255, 255, 0.9); - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(230, 230, 230, 0.9)), color-stop(10%, rgba(242, 242, 242, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0.9))); - background-image: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - background-image: linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - border: 0.1em solid rgba(203, 203, 203, 0.9); -} - -/* line 20, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - font-size: 250%; - height: 1em; - width: 1em; - position: relative; - -webkit-transform-origin: 0.5em 0.5em; - /* Shared Properties for all the bars */ -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after { - display: block; - position: absolute; - width: 0.1em; - height: 0.25em; - top: 0; - -webkit-transform-origin: 0.05em 0.5em; - -webkit-border-radius: 0.05em; - border-radius: 0.05em; - content: " "; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - background-color: rgba(170, 170, 170, 0.99); -} -/* line 42, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::after { - background-color: rgba(170, 170, 170, 0.9); -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::before { - background-color: rgba(170, 170, 170, 0.8); -} -/* line 44, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - background-color: rgba(170, 170, 170, 0.7); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::after { - background-color: rgba(170, 170, 170, 0.6); -} -/* line 46, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::before { - background-color: rgba(170, 170, 170, 0.5); -} -/* line 47, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - background-color: rgba(170, 170, 170, 0.4); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::after { - background-color: rgba(170, 170, 170, 0.35); -} -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::before { - background-color: rgba(170, 170, 170, 0.3); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - background-color: rgba(170, 170, 170, 0.25); -} -/* line 51, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::after { - background-color: rgba(170, 170, 170, 0.2); -} -/* line 52, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::before { - background-color: rgba(170, 170, 170, 0.15); -} - -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span { - left: 50%; - margin-left: -0.05em; -} - -/* Rotate each of the 4 Spans */ -/* line 65, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); -} - -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); -} - -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); -} - -/* line 68, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); -} - -/* These are the two lines that surround each of the 4 Span lines */ -/* line 72, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::before { - -webkit-transform: rotate(30deg); - -moz-transform: rotate(30deg); -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::after { - -webkit-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); -} - -/* Set Animation */ -/* line 77, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - -webkit-animation-name: x-loading-spinner-rotate; - -webkit-animation-duration: .5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} - -@-webkit-keyframes x-loading-spinner-rotate { - /* line 85, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 0% { - -webkit-transform: rotate(0deg); - } - - /* line 86, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.32% { - -webkit-transform: rotate(0deg); - } - - /* line 88, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.33% { - -webkit-transform: rotate(30deg); - } - - /* line 89, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.65% { - -webkit-transform: rotate(30deg); - } - - /* line 91, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.66% { - -webkit-transform: rotate(60deg); - } - - /* line 92, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 24.99% { - -webkit-transform: rotate(60deg); - } - - /* line 94, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 25% { - -webkit-transform: rotate(90deg); - } - - /* line 95, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.32% { - -webkit-transform: rotate(90deg); - } - - /* line 97, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.33% { - -webkit-transform: rotate(120deg); - } - - /* line 98, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.65% { - -webkit-transform: rotate(120deg); - } - - /* line 100, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.66% { - -webkit-transform: rotate(150deg); - } - - /* line 101, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 49.99% { - -webkit-transform: rotate(150deg); - } - - /* line 103, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 50% { - -webkit-transform: rotate(180deg); - } - - /* line 104, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.32% { - -webkit-transform: rotate(180deg); - } - - /* line 106, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.33% { - -webkit-transform: rotate(210deg); - } - - /* line 107, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.65% { - -webkit-transform: rotate(210deg); - } - - /* line 109, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.66% { - -webkit-transform: rotate(240deg); - } - - /* line 110, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 74.99% { - -webkit-transform: rotate(240deg); - } - - /* line 112, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 75% { - -webkit-transform: rotate(270deg); - } - - /* line 113, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.32% { - -webkit-transform: rotate(270deg); - } - - /* line 115, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.33% { - -webkit-transform: rotate(300deg); - } - - /* line 116, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.65% { - -webkit-transform: rotate(300deg); - } - - /* line 118, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.66% { - -webkit-transform: rotate(330deg); - } - - /* line 119, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 100% { - -webkit-transform: rotate(330deg); - } -} - -/* line 129, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.border-radius-10 { - -webkit-border-radius: 10px !important; - border-radius: 10px !important; -} - -/* - * Color palette - */ -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller { - width: auto !important; - height: auto !important; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container { - margin-top: 12px; - margin-left: 12px; -} -/* line 18, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item { - display: inline-block; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item.x-item-selected .item-inner { - -webkit-box-shadow: #3ba8ff 0 0 0 4px; - box-shadow: #3ba8ff 0 0 0 4px; -} -/* line 25, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item .item-inner { - display: inline-block; - width: 50px; - height: 50px; - border: 1px solid #d8d8d8; - margin: 6px; -} - -/** - * // SCSS - * @include application-toolbar-ui('edit', $base-color); - */ -/** - * // SCSS - * @include application-toolbar-iconmask('code3', '../../img/toolbar/code3.png'); - */ -/* line 1, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 5, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round .x-scroll-view { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 11, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 0; -} -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - display: none; -} -/* line 22, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal { - padding-bottom: 0; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #bcbcbc; - border-width: 1px 1px 0 1px; - background: white; -} -/* line 34, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -/* line 42, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal { - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c99d8), color-stop(100%, #416cc6)); - background-image: -webkit-linear-gradient(top, #7c99d8, #416cc6); - background-image: linear-gradient(top, #7c99d8, #416cc6); - color: white; -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure { - background-position: -24px 0; -} -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal { - color: inherit; -} -/* line 58, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body { - padding-right: 1.2em; -} -/* line 62, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after { - content: ""; - width: 24px; - height: 24px; - position: absolute; - top: 11px; - right: 11px; - background-image: url("../img/icons/list-retina.png"); - background-size: 72px 48px; - background-position: 0 -24px; -} -/* line 76, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal { - color: white; -} -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after { - background-position: -24px -24px; -} -/* line 86, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon { - width: 24px; - height: 24px; - position: absolute; -} -/* line 93, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset { - margin-left: 30px; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure { - right: 12px; - background-image: url("../img/icons/list-retina.png"); - background-size: 72px 48px; - background-position: 0 0; -} -/* line 106, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body { - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} -/* line 112, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13.8px; -} -/* line 117, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #bcbcbc; - background: white; -} -/* line 124, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal { - background: transparent; -} -/* line 126, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal > .x-dock-body { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c99d8), color-stop(100%, #416cc6)); - background-image: -webkit-linear-gradient(top, #7c99d8, #416cc6); - background-image: linear-gradient(top, #7c99d8, #416cc6); - color: white; -} - -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #989898), color-stop(10%, #656565), color-stop(100%, #656565)); - background-image: -webkit-linear-gradient(top, #989898, #656565 10%, #656565); - background-image: linear-gradient(top, #989898, #656565 10%, #656565); -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label, .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-hasbadge .x-badge, .x-hasbadge .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge { - font-size: .9em; - line-height: 2em; -} -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-title { - font-size: 1em; - line-height: 1.4em; - color: #ffffff; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} - -/* - * Application dataview - */ -/* line 34, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller { - width: auto !important; - height: auto !important; -} -/* line 38, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller .x-dataview-container { - margin-top: 12px; - margin-left: 12px; -} -/* line 44, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item { - display: inline-block; -} -/* line 49, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item.x-item-pressed .item-inner, .x-dataview.icon-view .x-dataview-item.x-item-selected .item-inner { - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c99d8), color-stop(100%, #416cc6)); - background-image: -webkit-linear-gradient(top, #7c99d8, #416cc6); - background-image: linear-gradient(top, #7c99d8, #416cc6); - color: white; -} -/* line 55, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner { - display: inline-block; - width: 77px; - height: 77px; - border: 1px solid #bcbcbc; - background: white; - margin: -1px; -} -/* line 63, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.top-left { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 67, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.top-right { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 71, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.bottom-left { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 75, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view .x-dataview-item .item-inner.bottom-right { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-0 { - background-position: 0 0px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-0, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-0 { - background-position: -24px 0px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-1 { - background-position: 0 -24px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-1, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-1 { - background-position: -24px -24px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-2 { - background-position: 0 -48px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-2, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-2 { - background-position: -24px -48px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-3 { - background-position: 0 -72px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-3, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-3 { - background-position: -24px -72px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-4 { - background-position: 0 -96px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-4, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-4 { - background-position: -24px -96px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-5 { - background-position: 0 -120px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-5, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-5 { - background-position: -24px -120px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-6 { - background-position: 0 -144px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-6, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-6 { - background-position: -24px -144px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-7 { - background-position: 0 -168px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-7, .x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-7 { - background-position: -24px -168px; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .item-inner .text { - margin-top: 1.4em; - text-align: center; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.bullets .item-inner .icon { - width: 24px; - height: 24px; - margin: 1.4em auto; - background-image: url("../img/icons/bullets-retina.png"); - background-size: 48px 168px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-0 { - background-position: 0 0px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-0, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-0 { - background-position: -74px 0px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-1 { - background-position: 0 -74px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-1, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-1 { - background-position: -74px -74px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-2 { - background-position: 0 -148px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-2, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-2 { - background-position: -74px -148px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-3 { - background-position: 0 -222px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-3, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-3 { - background-position: -74px -222px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-4 { - background-position: 0 -296px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-4, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-4 { - background-position: -74px -296px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-5 { - background-position: 0 -370px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-5, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-5 { - background-position: -74px -370px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-6 { - background-position: 0 -444px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-6, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-6 { - background-position: -74px -444px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-7 { - background-position: 0 -518px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-7, .x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-7 { - background-position: -74px -518px; -} -/* line 118, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .item-inner .text { - position: relative; - top: 1.4em; - text-align: center; -} -/* line 124, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.numbering .item-inner .icon { - width: 74px; - height: 74px; - margin: 0 auto; - background-image: url("../img/icons/numbering-retina.png"); - background-size: 148px 518px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item .icon.outline-0 { - background-position: 0 0px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-0, .x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-0 { - background-position: -74px 0px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item .icon.outline-1 { - background-position: 0 -74px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-1, .x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-1 { - background-position: -74px -74px; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item .icon.outline-2 { - background-position: 0 -148px; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-2, .x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-2 { - background-position: -74px -148px; -} -/* line 140, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .item-inner .text { - position: relative; - top: 1.4em; - text-align: center; -} -/* line 146, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-dataview.scss */ -.x-dataview.icon-view.outline .item-inner .icon { - width: 74px; - height: 74px; - margin: 0 auto; - background-image: url("../img/icons/outline-retina.png"); - background-size: 148px 222px; -} - -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ececec, #cbcbcb); - background-image: linear-gradient(top, #ececec, #cbcbcb); - -webkit-box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - border: 1px solid #797979; -} -/* line 7, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top { - background-color: #797979; - margin-top: -0.62em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #ececec)); - background-image: -webkit-linear-gradient(top, #f1f1f1, #ececec); - background-image: linear-gradient(top, #f1f1f1, #ececec); - top: 1px !important; -} -/* line 27, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom { - height: 0.8em; - background-color: #797979; - margin-top: -0.15em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 36, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.8em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(100%, #bebebe)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #bebebe); - background-image: linear-gradient(top, #cbcbcb, #bebebe); - top: -1px !important; -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-panel-inner { - background: transparent; -} -/* line 52, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar { - border-bottom: none; - margin-top: -6px; - background: transparent; - overflow: hidden; -} -/* line 58, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar .x-title { - color: #323232; - text-shadow: white 0 0.08em 0; -} -/* line 66, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner { - background: transparent; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 69, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after { - content: none; -} -/* line 75, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner { - background-color: #efefef; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 78, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - pointer-events: none; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: inset 0 1px 2px 2px #c8c8c8; - box-shadow: inset 0 1px 2px 2px #c8c8c8; - border: 1px solid #797979; -} - -/* line 88, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-label.info .x-innerhtml { - color: #7f7f7f; - text-shadow: 0 1px 0 white; - text-align: center; -} - -/* line 94, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.btn-input-image input[type="file"] { - opacity: 0; - position: absolute; - left: 0; - top: 0; -} - -/* line 102, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-mask.transparent { - background: transparent; -} - -/* line 106, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.round { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons { - background: transparent; -} -/* line 6, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons.x-field { - min-height: 0; -} -/* line 10, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - background: transparent; -} -/* line 13, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span { - font-size: inherit; -} -/* line 18, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-button { - margin-top: 9px; - margin-bottom: 9px; - padding: 0 8px !important; -} -/* line 24, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - padding: 0.16em; -} -/* line 28, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input { - -webkit-box-shadow: #b2b2b2 0 3px 4px -2px inset; - box-shadow: #b2b2b2 0 3px 4px -2px inset; - background: white; - min-width: 2.3em; -} -/* line 33, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el { - text-align: center; - -webkit-border-radius: 0; - border-radius: 0; - padding: 3px 0 4px; - min-height: 0; - border-top: 1px solid #898989; - border-bottom: 1px solid #898989; -} -/* line 47, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button { - width: auto; - border: 1px solid #939393 !important; - margin: 0; -} -/* line 53, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: 0; - -webkit-border-top-right-radius: 0; - border-top-right-radius: 0; - -webkit-border-bottom-right-radius: 0; - border-bottom-right-radius: 0; -} -/* line 59, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up { - -webkit-border-top-left-radius: 0; - border-top-left-radius: 0; - -webkit-border-bottom-left-radius: 0; - border-bottom-left-radius: 0; -} - -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - border-color: #4c4c4c; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button, -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-back:before, .x-toolbar-edit .x-button.x-button-forward:before, .x-toolbar .x-toolbar-edit .x-button.x-button-back:before, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar-edit .x-button.x-button-forward:after, .x-toolbar .x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-edit .x-button .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-pressing, .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar-edit .x-button.x-button-active, .x-toolbar-edit .x-button.x-button-active:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-edit .x-button.x-button-active, .x-toolbar .x-toolbar-edit .x-button.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-label, -.x-toolbar-edit .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 12, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(20%, #e7e7e7), color-stop(100%, #e7e7e7)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - background-image: linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - border-color: #4c4c4c; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button, -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-back:before, .x-toolbar-search .x-button.x-button-forward:before, .x-toolbar .x-toolbar-search .x-button.x-button-back:before, .x-toolbar .x-toolbar-search .x-button.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar-search .x-button.x-button-back:after, .x-toolbar-search .x-button.x-button-forward:after, .x-toolbar .x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button.x-button-back:after, .x-toolbar .x-toolbar-search .x-button.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-search .x-button .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, /Users/ayuzhin/Develop/Web/Office-default/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-pressing, .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar-search .x-button.x-button-pressed, .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar-search .x-button.x-button-active, .x-toolbar-search .x-button.x-button-active:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressing, .x-toolbar .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressed, .x-toolbar .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-search .x-button.x-button-active, .x-toolbar .x-toolbar-search .x-button.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-label, -.x-toolbar-search .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.save, -.list-icon.save { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 0px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.save, -.x-button-pressing .list-icon.save, -.x-button-pressed .x-button-icon.save, -.x-button-pressed .list-icon.save, -.x-button-active .x-button-icon.save, -.x-button-active .list-icon.save, -.x-item-pressed .x-button-icon.save, -.x-item-pressed .list-icon.save { - background-position: -24px 0px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.undo, -.list-icon.undo { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.undo, -.x-button-pressing .list-icon.undo, -.x-button-pressed .x-button-icon.undo, -.x-button-pressed .list-icon.undo, -.x-button-active .x-button-icon.undo, -.x-button-active .list-icon.undo, -.x-item-pressed .x-button-icon.undo, -.x-item-pressed .list-icon.undo { - background-position: -24px -24px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.share, -.list-icon.share { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -48px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.share, -.x-button-pressing .list-icon.share, -.x-button-pressed .x-button-icon.share, -.x-button-pressed .list-icon.share, -.x-button-active .x-button-icon.share, -.x-button-active .list-icon.share, -.x-item-pressed .x-button-icon.share, -.x-item-pressed .list-icon.share { - background-position: -24px -48px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-style, -.list-icon.font-style { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -72px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-style, -.x-button-pressing .list-icon.font-style, -.x-button-pressed .x-button-icon.font-style, -.x-button-pressed .list-icon.font-style, -.x-button-active .x-button-icon.font-style, -.x-button-active .list-icon.font-style, -.x-item-pressed .x-button-icon.font-style, -.x-item-pressed .list-icon.font-style { - background-position: -24px -72px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-color, -.list-icon.font-color { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -96px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-color, -.x-button-pressing .list-icon.font-color, -.x-button-pressed .x-button-icon.font-color, -.x-button-pressed .list-icon.font-color, -.x-button-active .x-button-icon.font-color, -.x-button-active .list-icon.font-color, -.x-item-pressed .x-button-icon.font-color, -.x-item-pressed .list-icon.font-color { - background-position: -24px -96px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.bold, -.list-icon.bold { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -120px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.bold, -.x-button-pressing .list-icon.bold, -.x-button-pressed .x-button-icon.bold, -.x-button-pressed .list-icon.bold, -.x-button-active .x-button-icon.bold, -.x-button-active .list-icon.bold, -.x-item-pressed .x-button-icon.bold, -.x-item-pressed .list-icon.bold { - background-position: -24px -120px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.italic, -.list-icon.italic { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -144px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.italic, -.x-button-pressing .list-icon.italic, -.x-button-pressed .x-button-icon.italic, -.x-button-pressed .list-icon.italic, -.x-button-active .x-button-icon.italic, -.x-button-active .list-icon.italic, -.x-item-pressed .x-button-icon.italic, -.x-item-pressed .list-icon.italic { - background-position: -24px -144px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.underline, -.list-icon.underline { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -168px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.underline, -.x-button-pressing .list-icon.underline, -.x-button-pressed .x-button-icon.underline, -.x-button-pressed .list-icon.underline, -.x-button-active .x-button-icon.underline, -.x-button-active .list-icon.underline, -.x-item-pressed .x-button-icon.underline, -.x-item-pressed .list-icon.underline { - background-position: -24px -168px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-left, -.list-icon.align-left { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -192px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-left, -.x-button-pressing .list-icon.align-left, -.x-button-pressed .x-button-icon.align-left, -.x-button-pressed .list-icon.align-left, -.x-button-active .x-button-icon.align-left, -.x-button-active .list-icon.align-left, -.x-item-pressed .x-button-icon.align-left, -.x-item-pressed .list-icon.align-left { - background-position: -24px -192px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-center, -.list-icon.align-center { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -216px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-center, -.x-button-pressing .list-icon.align-center, -.x-button-pressed .x-button-icon.align-center, -.x-button-pressed .list-icon.align-center, -.x-button-active .x-button-icon.align-center, -.x-button-active .list-icon.align-center, -.x-item-pressed .x-button-icon.align-center, -.x-item-pressed .list-icon.align-center { - background-position: -24px -216px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-right, -.list-icon.align-right { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -240px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-right, -.x-button-pressing .list-icon.align-right, -.x-button-pressed .x-button-icon.align-right, -.x-button-pressed .list-icon.align-right, -.x-button-active .x-button-icon.align-right, -.x-button-active .list-icon.align-right, -.x-item-pressed .x-button-icon.align-right, -.x-item-pressed .list-icon.align-right { - background-position: -24px -240px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-fill, -.list-icon.align-fill { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -264px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-fill, -.x-button-pressing .list-icon.align-fill, -.x-button-pressed .x-button-icon.align-fill, -.x-button-pressed .list-icon.align-fill, -.x-button-active .x-button-icon.align-fill, -.x-button-active .list-icon.align-fill, -.x-item-pressed .x-button-icon.align-fill, -.x-item-pressed .list-icon.align-fill { - background-position: -24px -264px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.bullets, -.list-icon.bullets { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -288px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.bullets, -.x-button-pressing .list-icon.bullets, -.x-button-pressed .x-button-icon.bullets, -.x-button-pressed .list-icon.bullets, -.x-button-active .x-button-icon.bullets, -.x-button-active .list-icon.bullets, -.x-item-pressed .x-button-icon.bullets, -.x-item-pressed .list-icon.bullets { - background-position: -24px -288px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spacing, -.list-icon.spacing { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -312px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spacing, -.x-button-pressing .list-icon.spacing, -.x-button-pressed .x-button-icon.spacing, -.x-button-pressed .list-icon.spacing, -.x-button-active .x-button-icon.spacing, -.x-button-active .list-icon.spacing, -.x-item-pressed .x-button-icon.spacing, -.x-item-pressed .list-icon.spacing { - background-position: -24px -312px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.page-number, -.list-icon.page-number { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -336px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.page-number, -.x-button-pressing .list-icon.page-number, -.x-button-pressed .x-button-icon.page-number, -.x-button-pressed .list-icon.page-number, -.x-button-active .x-button-icon.page-number, -.x-button-active .list-icon.page-number, -.x-item-pressed .x-button-icon.page-number, -.x-item-pressed .list-icon.page-number { - background-position: -24px -336px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert, -.list-icon.insert { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -360px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert, -.x-button-pressing .list-icon.insert, -.x-button-pressed .x-button-icon.insert, -.x-button-pressed .list-icon.insert, -.x-button-active .x-button-icon.insert, -.x-button-active .list-icon.insert, -.x-item-pressed .x-button-icon.insert, -.x-item-pressed .list-icon.insert { - background-position: -24px -360px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search, -.list-icon.search { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -384px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search, -.x-button-pressing .list-icon.search, -.x-button-pressed .x-button-icon.search, -.x-button-pressed .list-icon.search, -.x-button-active .x-button-icon.search, -.x-button-active .list-icon.search, -.x-item-pressed .x-button-icon.search, -.x-item-pressed .list-icon.search { - background-position: -24px -384px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.fullscreen, -.list-icon.fullscreen { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -408px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.fullscreen, -.x-button-pressing .list-icon.fullscreen, -.x-button-pressed .x-button-icon.fullscreen, -.x-button-pressed .list-icon.fullscreen, -.x-button-active .x-button-icon.fullscreen, -.x-button-active .list-icon.fullscreen, -.x-item-pressed .x-button-icon.fullscreen, -.x-item-pressed .list-icon.fullscreen { - background-position: -24px -408px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-down, -.list-icon.spinner-down { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -432px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-down, -.x-button-pressing .list-icon.spinner-down, -.x-button-pressed .x-button-icon.spinner-down, -.x-button-pressed .list-icon.spinner-down, -.x-button-active .x-button-icon.spinner-down, -.x-button-active .list-icon.spinner-down, -.x-item-pressed .x-button-icon.spinner-down, -.x-item-pressed .list-icon.spinner-down { - background-position: -24px -432px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-up, -.list-icon.spinner-up { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -456px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-up, -.x-button-pressing .list-icon.spinner-up, -.x-button-pressed .x-button-icon.spinner-up, -.x-button-pressed .list-icon.spinner-up, -.x-button-active .x-button-icon.spinner-up, -.x-button-active .list-icon.spinner-up, -.x-item-pressed .x-button-icon.spinner-up, -.x-item-pressed .list-icon.spinner-up { - background-position: -24px -456px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.superscript, -.list-icon.superscript { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -480px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.superscript, -.x-button-pressing .list-icon.superscript, -.x-button-pressed .x-button-icon.superscript, -.x-button-pressed .list-icon.superscript, -.x-button-active .x-button-icon.superscript, -.x-button-active .list-icon.superscript, -.x-item-pressed .x-button-icon.superscript, -.x-item-pressed .list-icon.superscript { - background-position: -24px -480px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.subscript, -.list-icon.subscript { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -504px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.subscript, -.x-button-pressing .list-icon.subscript, -.x-button-pressed .x-button-icon.subscript, -.x-button-pressed .list-icon.subscript, -.x-button-active .x-button-icon.subscript, -.x-button-active .list-icon.subscript, -.x-item-pressed .x-button-icon.subscript, -.x-item-pressed .list-icon.subscript { - background-position: -24px -504px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.table, -.list-icon.table { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -528px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.table, -.x-button-pressing .list-icon.table, -.x-button-pressed .x-button-icon.table, -.x-button-pressed .list-icon.table, -.x-button-active .x-button-icon.table, -.x-button-active .list-icon.table, -.x-item-pressed .x-button-icon.table, -.x-item-pressed .list-icon.table { - background-position: -24px -528px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.picture, -.list-icon.picture { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -552px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.picture, -.x-button-pressing .list-icon.picture, -.x-button-pressed .x-button-icon.picture, -.x-button-pressed .list-icon.picture, -.x-button-active .x-button-icon.picture, -.x-button-active .list-icon.picture, -.x-item-pressed .x-button-icon.picture, -.x-item-pressed .list-icon.picture { - background-position: -24px -552px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spacing, -.list-icon.spacing { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -576px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spacing, -.x-button-pressing .list-icon.spacing, -.x-button-pressed .x-button-icon.spacing, -.x-button-pressed .list-icon.spacing, -.x-button-active .x-button-icon.spacing, -.x-button-active .list-icon.spacing, -.x-item-pressed .x-button-icon.spacing, -.x-item-pressed .list-icon.spacing { - background-position: -24px -576px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.indent-inc, -.list-icon.indent-inc { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -600px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.indent-inc, -.x-button-pressing .list-icon.indent-inc, -.x-button-pressed .x-button-icon.indent-inc, -.x-button-pressed .list-icon.indent-inc, -.x-button-active .x-button-icon.indent-inc, -.x-button-active .list-icon.indent-inc, -.x-item-pressed .x-button-icon.indent-inc, -.x-item-pressed .list-icon.indent-inc { - background-position: -24px -600px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.indent-dec, -.list-icon.indent-dec { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -624px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.indent-dec, -.x-button-pressing .list-icon.indent-dec, -.x-button-pressed .x-button-icon.indent-dec, -.x-button-pressed .list-icon.indent-dec, -.x-button-active .x-button-icon.indent-dec, -.x-button-active .list-icon.indent-dec, -.x-item-pressed .x-button-icon.indent-dec, -.x-item-pressed .list-icon.indent-dec { - background-position: -24px -624px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.numbering, -.list-icon.numbering { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -648px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.numbering, -.x-button-pressing .list-icon.numbering, -.x-button-pressed .x-button-icon.numbering, -.x-button-pressed .list-icon.numbering, -.x-button-active .x-button-icon.numbering, -.x-button-active .list-icon.numbering, -.x-item-pressed .x-button-icon.numbering, -.x-item-pressed .list-icon.numbering { - background-position: -24px -648px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.outline, -.list-icon.outline { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -672px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.outline, -.x-button-pressing .list-icon.outline, -.x-button-pressed .x-button-icon.outline, -.x-button-pressed .list-icon.outline, -.x-button-active .x-button-icon.outline, -.x-button-active .list-icon.outline, -.x-item-pressed .x-button-icon.outline, -.x-item-pressed .list-icon.outline { - background-position: -24px -672px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-row, -.list-icon.insert-row { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -696px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-row, -.x-button-pressing .list-icon.insert-row, -.x-button-pressed .x-button-icon.insert-row, -.x-button-pressed .list-icon.insert-row, -.x-button-active .x-button-icon.insert-row, -.x-button-active .list-icon.insert-row, -.x-item-pressed .x-button-icon.insert-row, -.x-item-pressed .list-icon.insert-row { - background-position: -24px -696px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-column, -.list-icon.insert-column { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -720px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-column, -.x-button-pressing .list-icon.insert-column, -.x-button-pressed .x-button-icon.insert-column, -.x-button-pressed .list-icon.insert-column, -.x-button-active .x-button-icon.insert-column, -.x-button-active .list-icon.insert-column, -.x-item-pressed .x-button-icon.insert-column, -.x-item-pressed .list-icon.insert-column { - background-position: -24px -720px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.highlightcolor, -.list-icon.highlightcolor { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -744px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.highlightcolor, -.x-button-pressing .list-icon.highlightcolor, -.x-button-pressed .x-button-icon.highlightcolor, -.x-button-pressed .list-icon.highlightcolor, -.x-button-active .x-button-icon.highlightcolor, -.x-button-active .list-icon.highlightcolor, -.x-item-pressed .x-button-icon.highlightcolor, -.x-item-pressed .list-icon.highlightcolor { - background-position: -24px -744px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textcolor, -.list-icon.textcolor { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -768px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textcolor, -.x-button-pressing .list-icon.textcolor, -.x-button-pressed .x-button-icon.textcolor, -.x-button-pressed .list-icon.textcolor, -.x-button-active .x-button-icon.textcolor, -.x-button-active .list-icon.textcolor, -.x-item-pressed .x-button-icon.textcolor, -.x-item-pressed .list-icon.textcolor { - background-position: -24px -768px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textbigger, -.list-icon.textbigger { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -792px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textbigger, -.x-button-pressing .list-icon.textbigger, -.x-button-pressed .x-button-icon.textbigger, -.x-button-pressed .list-icon.textbigger, -.x-button-active .x-button-icon.textbigger, -.x-button-active .list-icon.textbigger, -.x-item-pressed .x-button-icon.textbigger, -.x-item-pressed .list-icon.textbigger { - background-position: -24px -792px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textless, -.list-icon.textless { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -816px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textless, -.x-button-pressing .list-icon.textless, -.x-button-pressed .x-button-icon.textless, -.x-button-pressed .list-icon.textless, -.x-button-active .x-button-icon.textless, -.x-button-active .list-icon.textless, -.x-item-pressed .x-button-icon.textless, -.x-item-pressed .list-icon.textless { - background-position: -24px -816px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-prev, -.list-icon.spinner-prev { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -840px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-prev, -.x-button-pressing .list-icon.spinner-prev, -.x-button-pressed .x-button-icon.spinner-prev, -.x-button-pressed .list-icon.spinner-prev, -.x-button-active .x-button-icon.spinner-prev, -.x-button-active .list-icon.spinner-prev, -.x-item-pressed .x-button-icon.spinner-prev, -.x-item-pressed .list-icon.spinner-prev { - background-position: -24px -840px; -} - -/* line 3, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-next, -.list-icon.spinner-next { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -864px; - background-size: 72px 888px; -} - -/* line 15, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-next, -.x-button-pressing .list-icon.spinner-next, -.x-button-pressed .x-button-icon.spinner-next, -.x-button-pressed .list-icon.spinner-next, -.x-button-active .x-button-icon.spinner-next, -.x-button-active .list-icon.spinner-next, -.x-item-pressed .x-button-icon.spinner-next, -.x-item-pressed .list-icon.spinner-next { - background-position: -24px -864px; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-toolbar .x-button.x-button-base { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-icon, .x-toolbar .x-button.x-button-base .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-forward:before, .x-button.x-button-base.x-button-forward:after, .x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-label, .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base .x-badge, .x-toolbar .x-button.x-button-base .x-button-label, .x-toolbar .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-forward:before { - background: #989898; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-button.x-button-base.x-button-back:after, .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base, .x-toolbar .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing, .x-button.x-button-base.x-button-pressing:after, .x-button.x-button-base.x-button-pressed, .x-button.x-button-base.x-button-pressed:after, .x-button.x-button-base.x-button-active, .x-button.x-button-base.x-button-active:after, .x-toolbar .x-button.x-button-base.x-button-pressing, .x-toolbar .x-button.x-button-base.x-button-pressing:after, .x-toolbar .x-button.x-button-base.x-button-pressed, .x-toolbar .x-button.x-button-base.x-button-pressed:after, .x-toolbar .x-button.x-button-base.x-button-active, .x-toolbar .x-button.x-button-base.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing .x-button-label, .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressing .x-badge, .x-button.x-button-base.x-button-pressed .x-button-label, .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressed .x-badge, .x-button.x-button-base.x-button-active .x-button-label, .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-active .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-toolbar .x-button.x-button-light { - border: 1px solid #c7c7c7; - border-top-color: #d9d9d9; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: #262626; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-icon, .x-toolbar .x-button.x-button-light .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-forward:before, .x-button.x-button-light.x-button-forward:after, .x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-label, .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light .x-badge, .x-toolbar .x-button.x-button-light .x-button-label, .x-toolbar .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light .x-badge { - color: #666666; - text-shadow: white 0 0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-forward:before { - background: #cccccc; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-button.x-button-light.x-button-back:after, .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light, .x-toolbar .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:after { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing, .x-button.x-button-light.x-button-pressing:after, .x-button.x-button-light.x-button-pressed, .x-button.x-button-light.x-button-pressed:after, .x-button.x-button-light.x-button-active, .x-button.x-button-light.x-button-active:after, .x-toolbar .x-button.x-button-light.x-button-pressing, .x-toolbar .x-button.x-button-light.x-button-pressing:after, .x-toolbar .x-button.x-button-light.x-button-pressed, .x-toolbar .x-button.x-button-light.x-button-pressed:after, .x-toolbar .x-button.x-button-light.x-button-active, .x-toolbar .x-button.x-button-light.x-button-active:after { - background-image: none; - background-color: #999999; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(10%, #8c8c8c), color-stop(65%, #999999), color-stop(100%, #9a9a9a)); - background-image: -webkit-linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); - background-image: linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing .x-button-label, .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressing .x-badge, .x-button.x-button-light.x-button-pressed .x-button-label, .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressed .x-badge, .x-button.x-button-light.x-button-active .x-button-label, .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-active .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-light.x-button-active .x-button-label, .x-toolbar .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-active .x-badge { - color: white; - text-shadow: gray 0 0.09em 0; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-first) { - border-left: 1px solid #c7c7c7; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue { - border: 1px solid #2e519b; - border-top-color: #3760b7; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: white; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-icon, .x-toolbar .x-button.x-button-base-blue .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-forward:before, .x-button.x-button-base-blue.x-button-forward:after, .x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-label, .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue .x-badge, .x-toolbar .x-button.x-button-base-blue .x-button-label, .x-toolbar .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue .x-badge { - color: white; - text-shadow: #2e519b 0 -0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before { - background: #3155a3; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-button.x-button-base-blue.x-button-back:after, .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after { - background-image: none; - background-color: #688ad2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #9bb2e1), color-stop(100%, #688ad2)); - background-image: -webkit-linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); - background-image: linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing, .x-button.x-button-base-blue.x-button-pressing:after, .x-button.x-button-base-blue.x-button-pressed, .x-button.x-button-base-blue.x-button-pressed:after, .x-button.x-button-base-blue.x-button-active, .x-button.x-button-base-blue.x-button-active:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressing, .x-toolbar .x-button.x-button-base-blue.x-button-pressing:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressed, .x-toolbar .x-button.x-button-base-blue.x-button-pressed:after, .x-toolbar .x-button.x-button-base-blue.x-button-active, .x-toolbar .x-button.x-button-base-blue.x-button-active:after { - background-image: none; - background-color: #416cc6; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3155a3), color-stop(10%, #3760b7), color-stop(65%, #416cc6), color-stop(100%, #436dc7)); - background-image: -webkit-linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); - background-image: linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-button.x-button-base-blue.x-button-active .x-button-label, .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-active .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge { - text-shadow: #2e519b 0 0.09em 0; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first) { - border-left: 1px solid #2e519b; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back { - padding: .3em 8px; -} -/* line 2, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-icon, .x-toolbar .x-button.x-button-back .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-forward:before, .x-button.x-button-back.x-button-forward:after, .x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-label, .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back .x-badge, .x-toolbar .x-button.x-button-back .x-button-label, .x-toolbar .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-forward:before { - background: #989898; -} -/* line 43, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-button.x-button-back.x-button-back:after, .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back, .x-toolbar .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing, .x-button.x-button-back.x-button-pressing:after, .x-button.x-button-back.x-button-pressed, .x-button.x-button-back.x-button-pressed:after, .x-button.x-button-back.x-button-active, .x-button.x-button-back.x-button-active:after, .x-toolbar .x-button.x-button-back.x-button-pressing, .x-toolbar .x-button.x-button-back.x-button-pressing:after, .x-toolbar .x-button.x-button-back.x-button-pressed, .x-toolbar .x-button.x-button-back.x-button-pressed:after, .x-toolbar .x-button.x-button-back.x-button-active, .x-toolbar .x-button.x-button-back.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing .x-button-label, .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressing .x-badge, .x-button.x-button-back.x-button-pressed .x-button-label, .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressed .x-badge, .x-button.x-button-back.x-button-active .x-button-label, .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-active .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-back.x-button-active .x-button-label, .x-toolbar .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} -/* line 79, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - -webkit-border-radius: 4px; - border-radius: 4px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -/* line 89, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 .2em; -} -/* line 92, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first) { - border-left: 0 !important; -} -/* line 105, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-last) { - margin-right: 7px; -} -/* line 116, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, /Users/ayuzhin/Develop/Web/Office-default/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* - * unsupport - */ -/* line 115, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-base.scss */ -.unsuported-view { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url(../img/ios-only.png) no-repeat center #efefef; - background-attachment: fixed; - z-index: 90000; -} - -/* - * Additional styles - */ -/* line 130, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-12 { - padding-left: 12px; - padding-right: 12px; -} - -/* line 135, /Users/ayuzhin/Develop/Web/Office-default/apps/documenteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-30 { - padding-left: 30px; - padding-right: 30px; -} +html,body{position:relative;width:100%;height:100%}.x-fullscreen{position:absolute !important}.x-body{position:relative;z-index:0}.x-inner,.x-body{width:100%;height:100%}.x-sized{position:relative}.x-innerhtml{width:100%}.x-layout-box{display:flex;display:-webkit-box;display:-ms-flexbox}.x-layout-box.x-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{min-width:0 !important}.x-layout-box.x-vertical{-webkit-box-orient:vertical !important;-ms-flex-direction:column !important;flex-direction:column !important}.x-layout-box.x-vertical>.x-layout-box-item.x-flexed{min-height:0 !important}.x-layout-box>.x-layout-box-item{display:flex !important;display:-webkit-box !important;display:-ms-flexbox !important}.x-layout-box.x-align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.x-layout-box.x-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-layout-box.x-align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.x-layout-box.x-align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.x-layout-box.x-pack-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.x-layout-box.x-pack-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-layout-box.x-pack-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.x-layout-box.x-pack-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-layout-box-item.x-sized>.x-inner,.x-layout-box-item.x-sized>.x-body,.x-layout-box-item.x-sized>.x-dock-outer{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-webkit .x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{width:0 !important}.x-webkit .x-layout-box.x-vertical>.x-layout-box-item.x-flexed{height:0 !important}.x-firefox .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-firefox .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px;min-height:0;min-width:0}.x-firefox .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-layout-card{position:relative;overflow:hidden}.x-layout-card-perspective{-webkit-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.x-layout-card-item-container{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-card-item{position:absolute;top:0;right:0;bottom:0;left:0;position:absolute !important}.x-dock{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock>.x-dock-body{overflow:hidden}.x-dock.x-sized,.x-dock.x-sized>.x-dock-body>*,.x-dock.x-sized>.x-dock-body>.x-body>.x-inner{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-sized>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-unsized,.x-dock.x-stretched{height:100%}.x-dock.x-unsized>.x-dock-body,.x-dock.x-stretched>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0;min-width:0}.x-dock.x-unsized>.x-dock-body>*,.x-dock.x-stretched>.x-dock-body>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-dock-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-dock.x-dock-horizontal>.x-dock-item{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-inner,.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-body{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-ie .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-ie .x-has-width>.x-dock.x-unsized.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-stretched.x-container{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-stretched.x-container>.x-inner,.x-stretched.x-container>.x-body,.x-stretched.x-container>.x-body>.x-inner{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0px}.x-layout-fit.x-stretched>.x-layout-fit-item{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-layout-fit{position:relative}.x-layout-fit-item.x-sized{position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-fit-item.x-unsized{width:100%;height:100%}.x-ie .x-stretched>.x-inner,.x-ie .x-stretched>.x-body{min-height:inherit}.x-center,.x-centered{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-center>*,.x-centered>*{position:relative}.x-center>.x-floating,.x-centered>.x-floating{position:relative !important}.x-floating{position:absolute !important}.x-layout-float{overflow:hidden}.x-layout-float>.x-layout-float-item{float:left}.x-layout-float.x-direction-right>.x-layout-float-item{float:right}@-webkit-keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}@keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}.x-paint-monitored{position:relative}.x-paint-monitor{width:0 !important;height:0 !important;visibility:hidden}.x-paint-monitor.cssanimation{-webkit-animation-duration:0.0001ms;-webkit-animation-name:x-paint-monitor-helper;animation-duration:0.0001ms;animation-name:x-paint-monitor-helper}.x-paint-monitor.overflowchange{overflow:hidden}.x-paint-monitor.overflowchange::after{content:'';display:block;width:1px !important;height:1px !important}.x-size-monitored{position:relative}.x-size-monitors{position:absolute;left:0;top:0;width:100%;height:100%;visibility:hidden;overflow:hidden}.x-size-monitors>*{width:100%;height:100%;overflow:hidden}.x-size-monitors.scroll>*.shrink::after{content:'';display:block;width:200%;height:200%;min-width:1px;min-height:1px}.x-size-monitors.scroll>*.expand::after{content:'';display:block;width:100000px;height:100000px}.x-size-monitors.overflowchanged>*.shrink>*{width:100%;height:100%}.x-size-monitors.overflowchanged>*.expand>*{width:200%;height:200%}.x-size-change-detector{visibility:hidden;position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;overflow:hidden}.x-size-change-detector>*{visibility:hidden}.x-size-change-detector-shrink>*{width:200%;height:200%}.x-size-change-detector-expand>*{width:100000px;height:100000px}.x-translatable{position:absolute !important;top:500000px !important;left:500000px !important;overflow:visible !important;z-index:1}.x-translatable-hboxfix{position:absolute;min-width:100%;top:0;left:0}.x-translatable-hboxfix>.x-translatable{position:relative !important}.x-translatable-container{overflow:hidden;width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-translatable-container::before{content:'';display:block;width:1000000px;height:1000000px;visibility:hidden}.x-button{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;border:1px solid #ccc;position:relative;overflow:hidden;z-index:1}.x-button .x-button-icon{position:relative;background-repeat:no-repeat;background-position:center}.x-button .x-button-icon.x-shown{display:block}.x-button .x-button-icon.x-hidden{display:none}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-iconalign-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-button-label,.x-badge,.x-hasbadge .x-badge{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;text-overflow:ellipsis;text-align:center;display:block;overflow:hidden}.x-badge{background-color:#ccc;border:1px solid #aaa;z-index:2;position:absolute !important;width:auto;font-size:.6em;right:0;top:0;max-width:95%;display:inline-block}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;-webkit-text-size-adjust:none;margin:0;cursor:default}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}*:focus{outline:none}body.x-desktop{overflow:hidden}@-ms-viewport{width:device-width}*,*:after,*:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;-ms-touch-action:none;-moz-user-select:-moz-none}input,textarea{-webkit-user-select:text;-ms-user-select:auto;-moz-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;-ms-user-select:auto;line-height:1.5;color:#333;font-size:.8em;padding:1.2em}.x-html body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%}.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6{font-weight:normal;color:#222}.x-html h1 img,.x-html h2 img,.x-html h3 img,.x-html h4 img,.x-html h5 img,.x-html h6 img{margin:0}.x-html h1{font-size:3em;line-height:1;margin-bottom:0.50em}.x-html h2{font-size:2em;margin-bottom:0.75em}.x-html h3{font-size:1.5em;line-height:1;margin-bottom:1.00em}.x-html h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}.x-html h5{font-size:1em;font-weight:bold;margin-bottom:1.50em}.x-html h6{font-size:1em;font-weight:bold}.x-html p{margin:0 0 1.5em}.x-html p .left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{float:right;margin:1.5em 0 1.5em 1.5em;padding:0}.x-html a{text-decoration:underline;color:#06c}.x-html a:visited{color:#004d99}.x-html a:focus{color:#09f}.x-html a:hover{color:#09f}.x-html a:active{color:#bf00ff}.x-html blockquote{margin:1.5em;color:#666;font-style:italic}.x-html strong,.x-html dfn{font-weight:bold}.x-html em,.x-html dfn{font-style:italic}.x-html sup,.x-html sub{line-height:0}.x-html abbr,.x-html acronym{border-bottom:1px dotted #666666}.x-html address{margin:0 0 1.5em;font-style:italic}.x-html del{color:#666}.x-html pre{margin:1.5em 0;white-space:pre}.x-html pre,.x-html code,.x-html tt{font:1em "andale mono","lucida console",monospace;line-height:1.5}.x-html li ul,.x-html li ol{margin:0}.x-html ul,.x-html ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}.x-html ul{list-style-type:disc}.x-html ol{list-style-type:decimal}.x-html dl{margin:0 0 1.5em 0}.x-html dl dt{font-weight:bold}.x-html dd{margin-left:1.5em}.x-html table{margin-bottom:1.4em;width:100%}.x-html th{font-weight:bold}.x-html thead th{background:#c3d9ff}.x-html th,.x-html td,.x-html caption{padding:4px 10px 4px 5px}.x-html table.striped tr:nth-child(even) td,.x-html table tr.even td{background:#e5ecf9}.x-html tfoot{font-style:italic}.x-html caption{background:#eee}.x-html .quiet{color:#666}.x-html .loud{color:#111}.x-html ul li{list-style-type:circle}.x-html ol li{list-style-type:decimal}@-webkit-keyframes x-loading-spinner-rotate{0%{-webkit-transform:rotate(0deg)}8.32%{-webkit-transform:rotate(0deg)}8.33%{-webkit-transform:rotate(30deg)}16.65%{-webkit-transform:rotate(30deg)}16.66%{-webkit-transform:rotate(60deg)}24.99%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.32%{-webkit-transform:rotate(90deg)}33.33%{-webkit-transform:rotate(120deg)}41.65%{-webkit-transform:rotate(120deg)}41.66%{-webkit-transform:rotate(150deg)}49.99%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.32%{-webkit-transform:rotate(180deg)}58.33%{-webkit-transform:rotate(210deg)}66.65%{-webkit-transform:rotate(210deg)}66.66%{-webkit-transform:rotate(240deg)}74.99%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.32%{-webkit-transform:rotate(270deg)}83.33%{-webkit-transform:rotate(300deg)}91.65%{-webkit-transform:rotate(300deg)}91.66%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(330deg)}}@keyframes x-loading-spinner-rotate{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.32%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.33%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.65%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.66%{-ms-transform:rotate(60deg);transform:rotate(60deg)}24.99%{-ms-transform:rotate(60deg);transform:rotate(60deg)}25%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.32%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.33%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.65%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.66%{-ms-transform:rotate(150deg);transform:rotate(150deg)}49.99%{-ms-transform:rotate(150deg);transform:rotate(150deg)}50%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.32%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.33%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.65%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.66%{-ms-transform:rotate(240deg);transform:rotate(240deg)}74.99%{-ms-transform:rotate(240deg);transform:rotate(240deg)}75%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.32%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.33%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.65%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.66%{-ms-transform:rotate(330deg);transform:rotate(330deg)}100%{-ms-transform:rotate(330deg);transform:rotate(330deg)}}@font-face{font-family:"Pictos";src:url('data:application/font-woff;base64,d09GRgABAAAAADJoAA0AAAAAR2QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABwAAAAcWF3wvkdERUYAAAFMAAAAHQAAACAAkQAET1MvMgAAAWwAAABIAAAAYIMUf1ljbWFwAAABtAAAAKkAAAFKznYCbGdhc3AAAAJgAAAACAAAAAj//wADZ2x5ZgAAAmgAACuvAAA9aCcOMcFoZWFkAAAuGAAAADEAAAA29KtLLWhoZWEAAC5MAAAAHgAAACQGhQMnaG10eAAALmwAAAEzAAABkElMDS1sb2NhAAAvoAAAAMoAAADKAij1am1heHAAADBsAAAAHgAAACAAvATkbmFtZQAAMIwAAAEyAAADaDtfCVNwb3N0AAAxwAAAAKYAAADtXH4MXwAAAAEAAAAAxtQumQAAAADIj74XAAAAAMj6BA142mNgZGBg4ANiCQYQYGJgBMJkIGYB8xgACIsAlgAAAHjaY2BiVmKcwMDKwMK0h6mLgYGhB0Iz3mUwYvjFgAqYkTkFlUXFDA4MCgz/md79ZwNKmjBsAQozguSYpjKtBVIKDIwAh2YNZHjaY2BgYGaAYBkGRgYQcAHyGMF8FgYNIM0GpBkZmBjqGP7//w/kK4Do/4//J0PVAwEjGwOcw8gEJJgYUAFQkpmFlY2dg5OLm4eXj19AUEhYRFRMXEJSSlpGVk5eQVFJWUVVTV1DU0tbR1dP38DQyNjE1MzcwtLK2sbWzt7B0cnZxdXN3cPTy9vH188/IDAoOCQ0LDwiMio6JjYuPiGRgVYgiUh1AHjTHZwAAAAAAAAB//8AAnjadXsJgBvFlXa/qj50Sy31MYdGGkmj7vHMeMYjqdX2jGfG53h8cNhgbINvY7ANDtiY08SYK0A4HSDYEBKuQFggwG4AGwxZQjAJ5NzdJCSBJBzJJhDC7iaY3azVs++1NNjkzz8adVdXVVe9evXe996rKglcGBz/ET+bPSeEBV1oFoSiIRdyecuFasnkpWrFKuRlzXBThRRfV6yM1W4dKxeh2nFmx1IzmzWNbHZ6y2UtZw6vWDHMjOHh2pPtPdlsT/uNUPG+J+AfEyrjf+QWe0hoEkqCkBoWXT0v60q5ZOiqJndD3nLUYmWY/53sSgWinbO3Hz9rQDw52dKSfCvZAgdilDO7kfObVAvkZp5+5mifdPeqjdCS8jzKBqb8vUwJ6ZGFzvEb2Is43g6hIswRThZOF3YIAhjdgP3SyB21kLdGoDoITsW/lbJgtEG5ZBb18hBU+sBC8uIg61LFziF3kGCjnCtVHfgU8dVyqn4fbOQXyn/zzF4MqlNCSm1cCVUUScwGkwsjUyLJ15ORSnReMuid4kWCkeRdyYgcgbGE94cVSiikwDlKyHtFCYcVnS6X1FNYcDpdDL/K27HadynB3IDcG5ulhfoj2KQ6EkuKYloLhSLYYnJ3goUVr8N/4WBI8a72Uzux9Q31+7F59bTPPwPn81Q2U+CCIsQFUygLU5F/BXsQlIIrlwxNzluVjsY9Zeiawn2+2hz5WqnzM+dWyyXu5swcfHx24tKnkpvgm1MnTZo6CboHOjsHOv/czJYrzd6aSIotvj2mabEnWpQkfCzJLcoFVa93MmyF1jlz5vyh06/t/8PTSguXvV82x8MwT0trLfPjTd7b//Qs0iwK7eOX8A1svzADZ3uXcC3Sq8mKiaTRZNnWELiY+NSzZSsFP1VxkWSz6tp+sozE48U0+DCKh43KEQfbVGS86i5qAyhl2zTKpRFKcLOUEU0DW8Wmepld6AVnGKRhMI0Ys6p8w8KZ4XBUv02PhpkcCbFwxKB0+BSrR0xG4vFIUuzOz2fN4XgsvLu55Z7PbHt2aO7qtde1NQWvZZETWpWFC5XcafHozmAh2tJkdgR3xr+qKEYm32GpgUAgEg40jU6Ki+EEqF4t1RMJB63uphDoJ9zQt1ZUo/F4VJWSoEqN5KnTV4mRiL5Xj0TEpVM/A5COK8oY33C69/lJF8294OSlIhx3RWDaMkO5LGCsHQyeu0BkXFy4A94BUY4kmhNKUyAYMLMBADUcSVynRcLhns6I0UM4AII6/hP2GrsZcUaAsl7QC07BKTtl+PFf/3oI/+F2uv5V8OcrOv4DfhnrwrqmYAvYQBHRqKQrecfKK/YwEKMrBatDKWplxbY6RCWv2261QyTUUiB4/JvHgwvul9ynlv723aUwFbZ4P97CDrCpbJP3e+8PmzDnIpgBI96VLQtaRq4/3q/tfmPp0JBfGbY8Q1UXLKCKFy5d6sWam0cElPjJ4//IzmPPCjGhVbBoHGpOLTso1AxVmttVx4dLXTOVFCa7WV5uA2YdV3t24aXLRHH5ztva2610q53LPT7cw6XuYTjTWwhP7V526aXLvNYbtWLastJW8ibYuLt7eLh7t4+fzeNP8hXYZ5vQhT2WEIoKjou8m2ifaMgRDQDHEsCuXn7plo6O4R4m9QwfV9sPey5dzr1aLme3ppEA9uzO5bvb8tFKz9BQz25vATy9e/nO2uhNSINtp4vaTf6c2eOvsrfYVf6cKaZiK7Zru6bL3nrppTsn/uG9l76976WX9n2bHpDezvEL+LnsBUQHF9toNxJyu5WQiFzERVQiuiPZPk7S3Rj0B+Xfq1hOCFGFDKw8fNh74DC7W49fHNeN+CS6XJTQ9cRFcUPHR8MvYC9QrcOw8lt+Bcyh7GMq1F8XAkjXxfws9ryQEBxhrjBfOE5YLCwVVvg0kub7WmrZllORjrLRMKtkkjTFIK12S9UylhMAVIv+S/QKZjj2CKBAo1TaplPWc/hFPinQBqf+pXdw2+rNG1dtH+pnPwrvv/yK/REu600zV0lioGvS5C6mMGnVDFOXvFqzlOgKR22Yqp9nv9g6p3Xm2tr7a7rTs1vZ8x89tmnZeUPlKdO3rdr0WG2SfcX+/VfYvcGEvHKmqjFEDtFIzlglx29MZWMhG9sBmX0UTK1Zs7B1TnqnhX/3t85O+/LUOX4u34byFCRrj6xP4CCsRBVozLn6jJA1g+9//fDhrz+OrN2bTnnXptLpFFyUSrNnP/Ye+PhjWPmxN2ZTpq21tgqkG67wY34JXIvtJlE7hBSxjUxAtb1uC5wJo+BUbi1WnUXVKszFyyIHdtKtCtdWixY9U5FVr2EV63jQOf4E38IOot4lBQMRgRBELehKzimoCCI5s6CXi8h27qCFLuuYo/sJlT311FPXek889RS8vnPz5to7cPZ111Vn1x6YWWXNl3n/6lz7PEy+7P43nF9u3Vpbe+2V7uUvv3xO0vU+Qj61jr/JV7PdgkZ6V8xCDJBPdjdzzW5iUanqIvQMQl1UlD4YRhcB5Zhdaaf7rj/hhpchzGbvuqycvnnj9M3fqVy2q5S5eePQ5jyVLr7+0L2drdPnfvuGXbtOv8l9btcutvHmaVPs9NDooesZ6l16/Hz2ffRR8thzGdnY3pC6IciyOBuCunQapC9l9kTbd723X3315kSw/25dv7s/qZy04/wHdmTez9z83VdvuvlVOGFe6W5du7s0upztOGnJjh1LMnU5OJ+fg/oQFHKfkoMqeTjk3+ANrxp6P6iRLrxG8vAYysOzsuzKSeXP8cTyRNyV5evjRoumsucbinjYew1Lq7L8lwRWSFSVpHxDPF63ARGB8+PZZpI81yLvinyrklu/awr45tcIhU4KtYauxS+ch5eTQiFvuClntzd9GErT0zWhEOwIhZZgmTfU1ITtDo6Ps/9B+WAod0EYZC/UZrGD3r3efZgzKAD7CHlJ/orgIlimEC8HQf46yN5fgT1bG6Vvnb5BgbHD2A5HvmMtdrg2lz3HUFn8su38BrYMPSABnCg4kgoPwW+9Vu82uPfpP/8Xithv/TZiwja+hp3i19Mng15U4S9eC/wOzgIb6z39tNfa0MMdiJMHkarQUZyEyfAJ9AGDx73F7GCDr94lr79etwdn8QB7WehEHBOKJuFoXdMIh3AKHZdQturSsw9dGYQhDTTThy0U17zMvrK5Sf0vcI934T8TzZth44kipvmJG72DLG2YrTzbkzn9jESzGLBd12YB1pw4I6D+aPkN6XCccmKR9I3LfqTC/0ohSQqgx5FBjsXG/x3ndiX6hFlhOtmLGFMQTrvBKSN4pkYAr27ZMRWHQDOVR8TFGrKCXkDJrbrDgJd6MXR3ibGwlAz2t2/cODiYu7qnPRGqtJ/y+OOnTJ3ReouZK3Sn5g23nbhgw4aWXFtJutZePG/5448vh/t6pHhESiid50Kn7v2iLx8LdLHVt31heacKTYY5OXXccNMMONdIlqQ97TNg5a23nlqfdz7+JixmFwsYIaRc1S445/3qV+fCnb+unf6rXxO2TRdG+W4ULgUtYZzmVdFRPHSO0uSaCDu7R478L5fm12768FfeBtj5RPPZ8OxWrwaW94vDhw7VMSw2fh7y523sIyakcfYaPRVR7u1qxXYkdEnRtalYtuNmgGcgMfG8i4h5YOHCfKEATSuPyw+Ojg7mjlu16oIbb7wgt+HCC0+HvT6lmdI3+menl6fZgpX7emblL7zhwjyb2XMXrJr1nvf792bOmvrKH1+Z6mM1yd52tNFBjMpOOFb7U1XfqVVkUyaDl6o6jec4mDg//ofcX99g+tOHH0Qi3SQkbEwjfB/NxuNf//jjV1MprS2toYHSUm3tV4QmWaP9HblMsDfEVCURiiqxTCCsRIJiMIz+aCQgAYSXB4KRWEaNsRcmDE1tTXIgqapoZzQVTmqyBgr5SFiTlwUgJMoiY6GwFo0kAmIgxBNJrcVIiQkxHGlJJGIxI6X6utY6fgO8xb6Jc9fqj1bXuNzfC8x3m9TSJ/beALbyyteamhftunKl2DV9elf39Onsm1eddpY3v+Q8AHOrK6/0fjC9u16CfEyPX8TXog63ITrMw5ZN2ULUbABbBr2BagNLCUVBzvdBL7imTKA3UgdarGL42Ceg5wpkH22wYHDU2thxi2VtsM6ybung7aOhxC3B1uCGUOiWBDxpbbH2FMT2ucGjmfpceqFYrL2Q7oyBHcOr9/MYdI+2i5h9dnGDhe1stOZqyVuC+EYLvuJdWizuKWy0RrXELaHQBmxpTyI82s6x37MseClNDXSmY2DF6nF8Uhjjy1hRKAq9OFKcfYznelkfZDhijW25VVTvquvbKRyRTasGtHzAfhVLR+zR88aOu/r4qeGwlBoYWFKc0a5HlaTzFSW2evaMldIZv021tFitLeC2mpmpM2zkr65zJRFQYq0zusOKWgoGktLs1ctG+i9stagq6mwHCvJmNldoR2oygAiIAlzIdSOHnQb6oaD6Rhlnm/dOXTeHyeAlgc1dN9mS5/RZuexF88/8AgwlTyrPWQewfnTycUYi1TenecbxezaFhAkbuRXh/9O+rD/BE1Yyf8wMa417acKyUT0bqTv1o4+8Bw8zIxzeGg5nI7nw2fjdGs6Fs34OZYb9jMjZ+MVM9uxh78GPPoJTvxNpj1DlYytixt/JJL3OCHP4OpbCqKkgdCPFpQzLgh4T/YlyhnnqGFGvNkJ0uHzX1esX63ogfdqqa44mvz2wePHAtMWLsxXLqhRZqm/27CYzEMweP70fk2ZTEJOD3kG/zrSBxa9hpWKFeOaMf559DnVCoqiBbK3qAmJlQf0NPFh7/BFY773zKDt45Afsc4/UUuwfHvUYyZeBvN6O9pB4XeJn88/z+/kh/jP+Jn+L/zv/kB8W7xcfEZ8RXxa/K/5A/BfxZ+Ib4m+OmRNF1soIQ1q/YWbAzVcLiFtOuWI5eTnv4FyV3DxJqZKXOWFa3s5bGEFWMUc20c2X9ZKrlWUTbyV6LBtOxUGt1JBTcXT99LyCH6tgl1C8KEqwSw5asbKLNjevaFhQkSm7YKFylxASewEfKgXMy/di6FQyXL1qlDXbMg3sF0vRl5QLMegjTQLqx3KmQ9UxB1jVKSmGk3eq1JXhomnIkG10jKqrIfoiwlpOCdFCK2Pftk+WVbbcMkp9ntB5GDBULtE7hp6XC3rJUDBuwVG5aE7cXnRjFWMEUE5LZsEgKi3ZREhHGs0SNW9X7Uq5alVLrkH5jqFjP04JWVLSyRktKHIGTDuPOFNykX8WMciRdUPPQBnHWK6gfcgbZt406EWLqMY2rTxeUBuraN1cjerJ/SUHP/hWhuPb6AUgrfhmQUPGWMgWHZ1smhcdm9LxjbyuFEagjHNawA8qW5yR+ckTI/UM07XCFJyTCs5FwSqgNBAkULkvGiUDiUM+WsjGEWYoeSJbM5SyU5KpHLmEjEfIQvrdaj/RU6KYDxNZKJtYI8sQ48rIKRybbmJtoywTU5BrJYfkLg4a0q75M4pETVGwYSTQxDSqHBHcBiRIWAcFr4RGFKtg/TZwKya9oyOlJnK/UnasqoPGHye1j5YTccZ9y1LF/HLFRaS1nQpOZC9zkLc0hw6KAf6TZGEJKrlFKqDLSD6KHAqng+LUi/JWKVj9yCILBYtggAIZLMUm8evYFZIazPJ1QtaROD3PMYdksIRigy/aJHCK7GAH6ALYWsH32vHFQrWMnibKWIkaMZGmiuEaCvEHvQkFmYsqhTNXUWQXB4Kyg19kdd4tG26pH6lEpuIsK9R9CZ1HZK2M3DCr6OVaBXQjkeeuhvzU0e3QiMvI4LJZ11PMyhMzdXJWkHbkZoMtlV4oV/w0Wl+kEzlkIduIWVgT2ZL3mUMcQQZXSKer5Yazg3peRakpV8s+mperKK3ICx37RWL0AbLyyOAyCTTKBbLbMCmtyEXN1ey8WyqTfCOliDlkE7JQQBtftlF4UALyZbeky/i1FDOvFRQEAE2quPLR9Y9nAdBuiRACDphURLyLjHNAZ4lJTJZGICiKuoxFEmMKY0zEAh7CK2eciSL+i4EIV0QZy0HCqxRgIarDGZOxThTfAcVvXQSsj3EHF7E5GRuQReyJnrAivoMtcFBErgBSFA9TeyKWBhnVDOKbnF7GNxhAAK8S3olYxoNMweaZCXIMSVMjzAAJsxM8KWEJl8EfngJ91yz63Dp8B3gARyhyQA+PKGNBJBaIUinM6hwBFpQVGiUERBpNCLtEHkgsgG9hhqiExTDSEpTBfxGZg8qIpDJiIZd8XnLsB0cvE9VAHIEG2WEIRSR8H/sNIBHAJUkiKrmMw6B/5tdFBkCQOIdPIiYiRKXEYzTuAF38VmUZu6+PA6LIIyZBRMFu/AmQaIoi/vhBlJBeSiKN1KI/aKrD5IAkgYRMJScZ/AFSfSB6kSQu4kUhuaA3/I5EZCBrRQokzOQoHsQXjjVFmlSsSvIQkHFeozjrWBLh2LISDNBs4jQjV6hVpBV7CisBBqHcKzcsuakPu0FaRBaiEfE6w5DauayZelaQDF9UOPUSxMRtIOGkIemi4g8QX7EZcRzlDakDhd7mEZGGrYCBaVEiftLoONW7B/irzO8IaGoMWjODbXJIlohL2EcQYr6Y0Ft+o/gXVyAVJ2GWaPLAb04UZZnzMERDIVBCPCgGiBd1mUcisCuRdIDaQOqlIASiKIiBUEJmgWBD/Jgky8TZEBLkbeDUr0qcBxYQUUQKRHiUuIfMZVlRwqkHi/vjSSBZn8VGnm2E9GWag4AYpon21QfqMo58Ih1kkvfPp56VCqLsIxVIqeITh+rCJVQi7g8Uo3N8G6cJx6iIESkSQ+6HxaBIvA/6QkdDi5DIY7uAQCKGSOTxJZwcH0a4zCPYnVKX0STy35ctHH7IFySSeRw0Igiw+kcWA3VtQZEh+eMhRuqEcBQNiNxXDRwYaS3xViJ9njrjNKwtkxb68kmi66sEdUFdohCHFCQvRAoS9qVfIuoh7DftDyTuq7ooh+pSzUizRJSJIAFPlPuIhQ8k1yQ4vuCjNJEukJBFSQIJZmgCcYzIklBdLRkyF2VURncMAigGARoaI+FnMRVll/olWSVFp26wH4mgkxSSKzJhGUlYCCbEEOryjwMOBugtTliE/ElKoUiMY/MI1ViBwBfxIkA8wykWiSsyCg5xihNrRKorBovBGIlBMiHmxEAUZy4oSZwrnKlIDdITDUk+OEkEQkBQz6JJrigipRQsBjQTDFkJhOTBEGcxbgbmLLrh0IIRFlbjNDilLi4oN2Eg1kscq2f8eeYEuDIJiE8oiqOySfJHzH0Moj8+mYbpaw+yWQLCXgmBhFQWAgkm+zCJlwgKuYb8ieIQlSApSpTkeidKdJi4ihTgJ9Yky9iRrxaKGPMVNRAMYRMBtD/hcFBENuJ0JoMxWQzLMd/oEOqh6KuiKHGSvTBiN00k0QkcJUvyzYwvc0lOQs1JTMIBHiO8xlHGsdwlHKC6ZDSkiK8W/sRzXyqwRgsNeAc+1deP9PG7+SL2j7SSB2rBKWC0UwgC+/qTe5/ZB1+Cu8D0Pvf++3AJ3OVtpBhpyvgTfAe7AWOkqCAU/TVJXuZFXjbLfMeRg3ez0J5Dm73Vm17uv+I97xAMwH3eapgF3vNrBX8PNjZ+IT8RYyUZ308IKYyemv0dGillumAXua3YKdN2dVuyTcUx+YmXLPFu6l58Se2NJbAN7/d/7eU330/DEF2ZccmSLtiGhb9Y0u3dtOSS+2HLnOQJS0/809zU8UsX+3FwbPxi7O85QRPSghAEvb8bHBymLftbuhRhd1CsjzE/S8Lw12D37qHO7q1f+tIvvuTdtaBSWeDAGu9bX7t891Dsrjfuuusz3eEK5dJYJD/GPpc97+8mN9VXFyaiOqG9mrDa5QQ0QtUq7cPWw9csVM1Gl8bRFdM8iAcOeEcOwMiZt37hR7fe2pGbmxEDQ+dAl/V4osnMNzV9skztmftB3r/f+yvsvBVr/ujWf8gVO+EzQzJvH32sCWvmm+rrdtPGPX4ZKyOvVaGF1sqLUKT9+2IfFKvlXMmUFMjlbUDOk12gLX5+qfchqNxbNdbhfRAS2dtiyPugAybVMmjAtS1nQSpw5D1QvQ95O8jvBRSvL3BoIPM+Y+9nvJ8imC1b5n3MWPI976+BAPxYIToUjKt/wi9gX8a5LgqThMlCv+AI0+qrWf6hg1xh4ngBLX1gyN2Googf2ljLcb3gSPg1/W8O0zmHr1AjEfXs2q/mpcsRdWVEZZfU7uyfZyjzWP5Pv4Y3D+CfV4A3vQL7ckStbVMjTgu8pUbWqJHaZrZxQcmbDc97FcVgxV//Olssbi8W9xaL5xUbezZTxsf5dnYlrQwj3zK+ZqgFf8fUPwJBoZa/F4juslRWC3z76Pl9tX+rzKn+sH3undFkMropqqpR74tz54LnAYzT9+rFnckWVW1JRjzAGWkRgK9mBzEVFCKoCaaQre/KOrxo2pKS8hf7JTPnmq4p12VVYz+8ubb1SXZmquw99NAWlxVrv4QDA96JZ87aaXk9mUxPBv7DUwG+/8H3rr56hvc+DHtr4PLbXzi368l5PEMVfJ3Ija/j3Si3WVppqa9A+ds0GPtg7KTU92cwpMCYYxhYfW78uWIPD81913vh3dEhzVFVri3f94t9sFzjSdX5CS2iWCxYvWPpvb/97b1L91axPOWox1+w9c47t55/fLKipbh3g9UCd7RYVou3uaW+NjdJEPhWdh6iAcmnQ7scOYqOlIIKkpNXYjwOlWFxBBz2pU21IsxDfF1Wncve8F45tdy/uLddljtHjj9uRNM2Lxv1/srCCKP2dO8VmPqv12G0X8yHI9WVg71NCcZ2Ed4lx6/lsxAP5tPJGYzEZIqlTb2+LtwNVmNNzA87K9hrlXIoTSEV7SZVHT+8MujIBMZNmGUafCCETlV0P/ohi9F3T0FCe4HH2FPJpB4KiGNouA6E5HAgqETiv5MlZbYoRTUtypVZiiT/LhiOwdXhaDQuhi6GiCh+EI7EQwmI3cX5nTFgajiuxP4oIpZfoijReCwU5BJ6ax/GlCQ6PKL6oUSBjI/lveM7fTzSaHclDrZrcztlk+hkoWhKJu8fuW/lSOzh34xc9ETKqqaegF+OeDd+7cCM0+6fcdvD3o0j8MvHNcdKPX7RyFtfw/baxt/h67C9TmwvA1lAzaPjTsPM9Tli1VfUMxiy0pp6hrH/7nU4P3IQwlp3W+TkU/tzNpphnt19WRZ9vpCVL61YeqfWH4udcgoLGEYmKk2xgvnT02PKlELknHMihb7AWHqtFbD6J/a0uvgu5tB4wFVtR5845lQh9DJ0duv777ekPJZqaUmBl2qBe87xRs6BM/3nJ+kq+HsGA+PP8dsRf9qEDtqBJSn7VEumkjt6FioIJvQrrmkr7J9XjpU9rTw2VoY/qsoKbympNvwxmkSMXH+V9+WXRnas6K4+tcr7k1/ng/IYOzUZ9VJYDVS/xshLW1Zc6dsKlG5+OsugtqfQVnQIU3xU6UUQQUnndHXcsmrZetkpmP4GdMHfF8sdk+anz4pWZzmxN27KVaNnnbM/9617NxyX6e7OZLu64AO8ZPGBZbwVbYVCGzzk7Su0fWOn9+7kzQNXve6XZRp18E78lcZ38VH2AqIcgpFNAmO2csXm8PCeXYuN3vvWPnL3lTuG3Ovg996ZLy7S7DtuhXdq98Pd3o2Jf/QW1/W3MP5Zvh5xLOjvLqm5CShBsnMqfAHOe937wes/O7zv596NbI13877XX9+39/XVP98H2+tznMS5OYV9xd9zVHP0DjwP+7wzvaXsK957BxDDtvs2ZNr4Wt6GfkMrzmBZGBFmCxuELcecY6EN7E/f9YKulf1zGbQN5K8XYZp2vI/Jxz7VIvHXdmk9yaE9rKq/PmU3jk/ohqvYODUFdmhZLb2ic2xSZdJYJ34nnVtIqWqq8AP8Yur79SfWUdsL1VG3o6gUrKZ0rnukq61dyZcmV2bOP7uinJYdYbNrbeyd3gKtr/bmaS0Hr3Z+Z3tc3anG2/0vpevPtQhjNe/Q5FKsEjNUlPmKlEvHK/GOdMkAbZFW6fFeJz4qyMeFdT5KaESIj1/xNsFeeHQu6AfA8G6qz9f08XXsA5yvdkJeoIWrGM9bbpV2w2x1mOGQaW2RdsOKaPX8PRH2gdHclAq0jE0fzkrxkaGLiy3G2N6NGPSEM+vytZeXNifVZja995SltzMxIibVKYz1xsJws5xs5yY3TTOKERgsP/JD3q82Nzd0+xD7H7iR9qtdJ6cPshcOvfIK2t7B8dv5Z9h3fP9Q8/e8bEXNKSYCQM61XQdBLaeiy6KYRdWE0t41oK/ZC59b472/Zu+yZfiorfYKeMdnuGTfWir1Llnj/XHNHcvuqGd7P6ZqoK/1+RFH/7AVdWCFsF4Q/GMetBYpHz1UY+cnXMU2NJWmQZuJE+4jol+56vrbNr6wyIpmYE653oytFLJAO0uoEIK/XIlOH/u3rrY2HUPfruJJC+alYosXndhpY5ijZzJdbcFStG9du8ivrcRSalOTaoRfYNDeOTipa7Azy+H5sEG5eti5Rs6dMKnUC97DWcPMtvfc0taVgQ7T1XsmG05rO2Sok0AgHcyyO9avjqhm3kyONYWcfNfgYFfOCSmzzSTmqZF/vlNszrQzUYcjdPo16/s/5fHr+Ea0kRJqdRR9RwEkVSqqoOJ3MjqKqqTC92Gvt8k7Ay70fgAnQ4/3E+/f2G7v++y5bbUnt29nJ9RugWdO8ebBPScvWeJFYP9Sb8yf94LAEAfn0onauufRzRw6NtWwu8Yg07u58/d2wth4r7t2TvBQZlFEVvYEzMCegBxdlDmEAc6cdT2WNHuKnaF9sT0wnFpSnrP2vmjosRD+R+8DWD+nd5GZTPTNbppx/J4zQ/4+8vkoZ3R2OPXJzmoDZuuAAdUizRm5xq99/aOP/PMjvz9wxelL4OnB2vX7rzjzRG/BIHvu8GP1Qm/VFfsHvAWLN+INnjlJqOPrdczy+Yj4WgYEB+vFL3vsw3vYc94/eB1wBdIxFW32xT5++hFKqoQyVqDtGLUkGklMso5CshFETL39yG1wD9u2/d6Hofybq+AeeMp77emZK2fiP3zl1iO337ttOzx/1a+91x5+BpxveCN+Ud0GtiEJ6+A2HOs04TS0gXphiPyaumdTMhsWHI25WaRjehXU/wk7f8y+uXzUDzi2fKI4w/i6O8RyKCJB9IyoGI9pHQUxpUPt5DuYnpJyHVosLkK4UkY8iAcd2N/cxphX4m0tcm+pNanLoN6QRHcile7v7yj0QXcmkQ23FcWenkmZkB0X4ykW0DBo6SvgPcA0zLFDGSoXi5lQR6Q9Gm4NBPr6eDgd4S26pDvRbocPDXFnUryqSVq6HoPmcO43o18zTZglLBSuF24XvkJY6B+Ko10t3wmmg68wgjyqA8HECVqM4ibcnjgQGJRL/racgq9zW0al93dezMbOMh1CIASwG3hCBxJ8XJHpXJ7iH9RTKN04nUAHSsqlomaS8Lu2DHnFP/3iWvzE5uZQRhYVdzsT4/Gxsflj8bjIzh1QuNIWamkJtfGAPHBuvWzhKJVtmyYHeFvGNB7UtOmdXau7O4fmzrEjUpMWlgOBRCIQUEKpZiUUCIWVnG3llHAoEJGaU1SqJoJBMZJIS5FjSr28+VVNf9CES+ZglNzbhw3Cw3P2zkkDO2dASaTl5mY5nSAKIT1622iawXlVP7tFwuyp24B5/zIye9aMSV2ru7zDX9W0r5pvK0G1RY6oqXbsIpmMyM1J9IHFREIUlWCyWY4kkx2FDrStYcUwQopfctuMWZMm90zumTQbBk2/FaFxNuQ89H+fQ10y/XM8n5wNMWOINP4pTZqPlNsHtAPjH5KvnxJpHBKhXXCaEYRq+J5/aOzjj9/JdrSa0GZH462cJaXYJJH3yrISb141mWPzGu+WQ0HVXINQ0DhFdgV0NTVnJ6XNmOpN4qIlxtIgKdGDze3JSGRaF58sZgNy/OlMpjkcGiAbZIw/zJex64RNwo9IM03d1yZ/h55b9Tik6jrDMMJQ6xy3cRlBTdQMzdD9XViFto3QdOuYoCFkuX+Wu1oXwb76QG0jywxTKxqkr7QJibFPnNU3nfx7H/Syik09VNBZqhJ/6GBEoxHeCI389uucMq0+ZtmVgmM7PhL4xwcYnw0pKZKbUb6ldFxfrhhmnIv1XaD6ihYtLkJanCayZtpnoFVUAFERQ9M6p+vZdm1GROZciq4HHumz29ndybD3uh3kIu2U1DeT6kvqjMnYCr0/0Q41xKkhe0gf1j9pRwxN6cxSO3AMYb/Hhgo9yebe/Ei5vGhKrljVwmoyEk8ByNQUrS/XLzJLS1P9Rd3m+pogLalRSTAaVwMR6gz7UsORUDgVWS+H9dScKZEM9qfDj+1KPBFuikSMeqv++jStf3P5/2kToF4cDv/dVk11ZrnRKv5Zkz6hnGxNFuPadWz9UVsWhyD0inULavQPi2zPigsrLS3eK94rYqwjbVyw4tSNKTHe1zeLrd+4tX9Ta9r7DkwVY729s7NbN56lS+rkXAMvp6Jy7fDPFir+ufaC0Ie9kLOOnhvQ9xjrmfr/pMFkq2r3N74yHdVutelA96fu7ODV3m+vvtp79+qr2cGJXO93E3W8dyfyGrHDIs4xJkjTuTY1Bg2XDN0T/8Rrfexqucg5nHbFypUzO/LePbByxkxMFvIMnmbPnlTzKmMLNi2IQuVkT63MX+BUFkQZbKJxBzFuPI9fieOOC3QupVXI4shtoZdOL078EGYiiJSQG1JBL9sUvqF9LKILbuMzJ9hxChLFGzmdfTywZMlA7Yd0ZSfXxhnU/rCW/i7AFD2NG/igx4bWspNjOuYc/KR2/8CSfzn/S9uvwc92ffvnz/c+H9PPP1+PLTm/HkcNjL/NL2Xbkc6/pW0Q3PpPV/iGcCwWPvIfdLXaws1fbg6nWS4eqv2Zclg0FB80jEGc5eD4BfxEtI8Bf2VKwIB4GijuNLzbGB0rNsvs8ypvz98CO5u9q5h258Z9rIg5C95pgp0tmLNh3+n7CNcy499FmbwG410M6DHKqps8hKFc3q66OeIJuoAKkUoT5q+x9AIdAfXDe76u0hkvR/TJcyuTvZ90FTItoC3Y3DfjIYzKf9p/hp3npURnZawCXy2P3dM1K9xtB+Rwe3Nva7J584L3pdEp51bGSj1hzqye8KzuD8rz55eFxvrXPr4B7UTcX3MbAVUr5HTbbQP6KVQxDmqlnHNMBWcsL+vsp02n7fb4I4/Auwmj9jo+QO2RR7x0wgCj6TTvyO6zH330PNlI3Nt0GoiXnf0IPpiJej/a+PV8nr8ek6Zfp+kTDoZvk/yj+1Z9GbjEp5haKt1u/nLBysufeQbYM32nnXHLGWfcIprZtlTK/OUUynvm8lMXrqLcMxrnIM9p+K89n/Zfk42156JBaF3wj+4VJn4PRGEMfA+d2cfQvvWAuH+/d+QAk2PBJkkWJelF2heWFLlXCfm+rX9wupY/UK/YEYrZMuOX0xb7u4okhZQXBZSS6eM/5ZexCz/5XVUWtaSbMIKWMGmPINlYvxQbd+FvfmvFMdJMOQV9Op995HlWq83f1tHS0tEMb/m32nc7mps7Wpjm31a/+7Wt7MLamlFm1N6DW1v8TP/q/fSYB5jjPQdzvT9ecEF9Llyhg+9kO1CLi39HQypltHkodOjbHv3lIF8fisdDR/5E18fAFI0QjDSHm95YuGXLwgVbtrDJsZDXSaoDr4diMCUYNaaAt3DzF7ds+eJmXyfd8Uf4+exhQSfvkuJrf1nRrdp0xAots8jPT7z56PDAys19QS4vD8w9JZB449FHEbhvvO6NlKKsCUtRUZx1gn3BvGvf1FIPUmyWH78IYzM6+66jVl1Ivy9y3CxT+sDNNw7FOBULlLzix6h2xc1AY2GjWq6SzEmVaqWX2/T7L8P3MkgqLd90+z7oCAyLFBnUBYdOjtDhDzo7RHdF7mcxtv761aFNxdF1yebmZKq52fvhejk0r71pwYWgjiSKbfMjQ3G+4KIEfB54INqc4KGmXwQSTPquBOHkpLE0569iSg2GvuVvDQPniR5I2HKKpcbUoKzJOVHUeEa8cH53/PSQvP76udam0Opqc6reH6xaz0bjFy3AzkJjmY7U9CRcvKA18zEPptMd2UzQ+HlbErAzFl7bxsRXOQ/zb8myGA1GY0pbsCinIvp8nP5cQmsRsY9/KqF8tI9f6q91LhXW+JEp/cyH3CMccv0HBf4T/RCIuFLPQt74T4RYmK7n4Av4MAykanSStp6FL5jSUclaGIxGg5cGZWkskpiTSG5R0P+ERHBdMIH3uLJZi89JRMYkGetQRSMyFsac1Oa/qbclmZgTD49FDO8/R5YvHxlevhzOnChmkcCWFDYenSdJwc9SM58NStK8CLWzJRBhn7Qjq1tSn+6uQVc8tUWV/3v5pStWXLrc96/z4+vZN33cLNBel4T+pUkjs2nZHAzuDzPvP9V/hkpwj05iiY5m5+HJvP6EHY978YR3X5wF4ARzCqxOJDwlKVOGyhLd8RR/3vhNLBbtbInGrJyJ9RNeIgGr4/o670mTHfDuT8THZRlWq9oLRqwnqrKRaGc02tIZjdXtYHj8VvYh+5m/nphDWMkB+7Cxjgjd9QWxRqxwAT/L9x16KFZI0fk2a8L0+BHw0d8UFf1feflw4df42x8cPc3pxCmsHFi8SY95D8R0PcYmT1uyZJr3gF+wS2vkwsqYBk2J1NzFA3+hks2bKfcvMX3zkoE/k5nHi3f5n+OaFqdLfTxX4HgO0XgQTcs4nnBjPQ8m19dJPx37KL6ncvRXGU7B9Xd16XdGSrkPnLJ+9ITWogf3nLvw3Fvu22Pvsr9Y+ySC8Vb9/qFrrnno97bdddtt/weKnOiWAHjaY2BkYGAAYn/ZBMN4fpuvDNzML4AiDCd+sfDCaeb/PsxTmR4BuRwMTCBRABIICg8AAAB42mNgZGBgevefjYGBeQ8DEDBPZWBkQAUpAFpTA7MAAHjaLVBNK4RRGD3vPWma8MqEYsaYd0Z5CY2MfG7sWWI1MsXSwkqz8BWlfDWSz82ULGyQNCUs/BALOxtLK1k493Lr9Nzuc855nnu8L7jjTQq68xqjLCBnPhFyBU3cRsq8oZ57qDVl9LCIZkbRwTP1j4Rz4R6DLKkWETcfSPBU93nUmG95ZYU+4cLBd7pAHsvwvV2QDxiTzlcv9H4Q18wElxDjIdp5LO4akuYVA05XQCOvkOWs+Av/Xo8Y5p36l3rfRwsnEKh2ckoem+jlKlpZ0ewnjGjXgHlUcQMZ1Rinpc0jwoh2yIlj/96FOu3fr/9meILQdItfwpDz2ZHezlxULuto463eQ/m8yPtGmEGUB0hyS7w5NLgcnuVt8ykLFaQ1O2XekVY21TY/V63n+F/+vzVQRI0AAAAAAAAAAAAAAAAwAHgBGAFyAjQCSgKWAtADDgMoA3QD+AQkBFIEjATKBPwFNgViBXAFhgWUBagFvAXYBiQGggaSBrQG+gdyB54IFAhcCI4I5gkoCUQPog+6D9oQEhBAEJAQ1BEsEV4RnBHiEhoSiBKwEvATFBNWE6ATwhPiE/YUhhSaFN4U6hUiFawV2hYeFlAWYhaWFxwYCBhkGYYZtBoAGjAahhqsGtAbHBtQG34bxBwWHFAceh0mHbgeCh4eHnIehh60HrQetAAAeNpjYGRgYEhhecggxgACTEDMyAAScwDzGQAlIAGlAAB42uVSS0rEQBB9yURBkfEKfQFzAFeiLmUcNDC4nGR6YiCmJYkGQXDrCTyAO6/g2Wbhq/6MEfEEpujqV1XvVVc3AXCIT0SQb+wTTOkniJI97qeMHJbq3OOYFvCE+SuPE+YD3sEGmce7iKPA38cmCpwCaTzzeIWD+NljjWn86vGa+TePS+L3eVX0plMLna9N0+MDCudoqRmIFqhQo4NBg2PGg7WU3R1jGNVTnm9whxdahltWOiqcX3LdU2PQU1dYv7L9NHLOJPre8hqbD9rGMiXn+MJsuZ/hmqZwstUeES3ZWTP7QLXsl5jhAjecTPEdNR65Wl+TrqU9QdtsZWPFTmHy76lc3BELT6av8bS9kfBzLnen9J/fPvuzw+8XSPnXu46GDJmx5PQ1b9L+qIzwF/y2jGwAAHjabc1XN4IBAIDhp89eyd6VzLKJZGRkbyEzcY6/6Mafo9O155z3+hWo+v227D9flUICNWrVqdegUZNmLVq1CWsX0aFTl249evXpN2DQkGEjomLiRiWMGTdh0pRpSSkzZs2Zt2DRUuW9Im3Vmox1WRs2bdmWs2PXnn15Bw4dOXbi1JlzFy5duXbjVsGdew+KHj159uLVm5J3ZR8+/YSCIF/4A0JgFjIAAA==') format('woff'),url('data:font/truetype;base64,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AQIFAw4BAQQCCAEBBAIBAQMDAgYGAgECAgEBAQICAQ0DAQICBQEMBwIFAgICBgMCBQQCBAQMAQMBAQEBBAUBAwkBAwEBAgEDAgIBBAICBgECBgMCBQIGCAUFAQUIAQMFAQELAQEGAQIDAQEBBAEBAQMCBgIEAwQGAgQHAgMDAQIGAQIBAQICAQQBBQECGwQCAQUDAQIDAgcFCAMBBgMEAwQEBAMDAQIDAwUCAgEIBgIKAQ0EBAIGAwQMAwELAQcJCAIDAgYDAQcBBwYDBAYCAgUBAwEBCwcIAgEKIceMUo4vBwIDBQUBBAIKAgEBAQMBAQMCBQIDAgJFAhkBAgEBBwQHAgoBAQUCAwMDAQIJAQUClAEFBQsCCAEDBAcBBAUBAwMBAScCBgEDAwIEAQIBBQEHAgMCAgMMBAMBAQIHARYCAgMEBQQCAgEBBAEBAwYBAwOgAQPKAgMBAQMCAQUCAQEWAgcCBQFxBgoGBQEDAgICCQEJAQ4EAgEBAQQCAgECBAECAQEBAQ8HARMPAgECAQUEAQMFAQIBAQQBBAQGBgMDCwENCgoBBwoDCQQIBAQDAwQEAgECAQIDAgEDAwQCBAEEAQIEAQMDAwUJAQgNAQMICAoQBgIICQYBAgICAQUCBQYGAQUBAgoDAQH+YwMEAgEBEQQHAgMBAggEBQUGIwICAQENAQcBBwIBCAIfBAUGAgEBJgMEAgIBARABAQF9AgICuvb+pPb2AVwzAwMFAggECwIBBAIECQIBAgECBgECAgIEBwECAQMEAgX+wFprEwkCCQIBAwgEBAMHAgQBBAEHAQMDBQoEAQMEAQIBAQIIAgEEAgYCAgMFAQcEDAUMDgIKAQsECQQBAgkBCQICAQEBAQIDAgwDAQQDBAcBAQEKAQQKAQIBBwQCBgkBBQEFAQECAwYDDAMEAgcBAgIBAQESAgMEAwEBAQQJAQgKAQICAQQDBgIEBgYBBAYFAQIBAgECAQIGBAgBAwMCAgEDAQsDAgYCAwoCAgcEAQIGBQ0IBAMCAgIBAQIIBAICCQIEAgECBQQCAQM4QFsBAwEGAgcCBgIBAQICBAEBAQIBAQECAQICAQIDBAMCBAMKBwEKAQoDAQICCwICAQQCBQEBAQEBCwIHBAECAQEBAQIPCAQBAgMEBgoCAQUDAQICAgYGAgQFAgEJAwECAQ0DAQMCBgQBCQMC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') format('truetype'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIHdlYmZvbnQgZ2VuZXJhdGVkIGJ5IEZvbnQgU3F1aXJyZWwuCkRlc2lnbmVyICAgIDogRHJldyBXaWxzb24KRm91bmRyeSAgICAgOiBEcmV3IFdpbHNvbgpGb3VuZHJ5IFVSTCA6IGh0dHBwaWN0b3NkcmV3d2lsc29uY29tCjwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0id2ViZm9udEl5Zlpic2VGIiBob3Jpei1hZHYteD0iOTIwIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSIxMDAwIiBhc2NlbnQ9Ijc1MCIgZGVzY2VudD0iLTI1MCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPGdseXBoIHVuaWNvZGU9IiAiICBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MDk7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4YTA7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iISIgaG9yaXotYWR2LXg9IjkzNiIgZD0iTTg2NSAxMDNxMzcgLTYyIDExIC0xMDYuNXQtOTggLTQ0LjVoLTYyMXEtNzIgMCAtOTcuNSA0NC41dDExLjUgMTA2LjVsMzEwIDUzNHEzNiA2MiA4Ny41IDYydDg3LjUgLTYyek00NzEgNDZxMjMgMCAzOC41IDE2dDE1LjUgMzh0LTE1LjUgMzcuNXQtMzguNSAxNS41cS0yMiAwIC0zNy41IC0xNS41dC0xNS41IC0zNy41dDE1LjUgLTM4dDM3LjUgLTE2ek01MDkgMTg3bDI2IDMwOGgtMTI3bDI2IC0zMDhoNzV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjI7IiBob3Jpei1hZHYteD0iODY1IiBkPSJNNTIgMjg5cTEgNjUgNy41IDExNXQyNi41IDEwMS41dDUzLjUgODYuNXQ5MC41IDU4LjV0MTM1IDI4LjV2LTE1N3EtNjYgMCAtOTUgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNXEtMTggMCAtMzEgMTN0LTEzIDMxdjI1OHY3ek00OTMgMjg5cTAgNjUgNyAxMTV0MjcgMTAxLjV0NTMuNSA4Ni41dDkwLjUgNTguNXQxMzUgMjguNXYtMTU3IHEtNjcgMCAtOTYgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNHEtMTkgMCAtMzIgMTN0LTEzIDMxdjI1OHEwIDUgMSA3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiMiIGhvcml6LWFkdi14PSI3NDgiIGQ9Ik03MDUgNDgycTkgLTE0IC04IC0xNGgtNDh2LTU2N3EwIC03IC01IC0xMnQtMTIgLTVoLTUxM3EtNyAwIC0xMiA1dC01IDEydjU2N2gtNTJxLTcgMCAtOS41IDR0MS41IDEwbDMxIDQ2cTkgMTQgMjcgMTRoNzV2NjZxMCAyMCAxMiAzMGw0OCA0OXExMiAxMiAzMCAxMmgyMTZxMTggMCAzMCAtMTJsNTIgLTUycTEzIC0xMyAxMyAtMzB2LTYzaDcxcTE4IDAgMjcgLTE0ek0yNDggNTQ2di00aDI1NHY0djI4cTAgMjAgLTEyIDMwbC05IDEwIHEtMTIgMTIgLTMwIDEyaC0xNTVxLTE4IDAgLTMwIC0xMmwtNiAtNnEtMTIgLTEyIC0xMiAtMzB2LTMyek01NzYgNDUwcTAgMTYgLTE2IDE4aC0yNzloLTg5cS03IDAgLTEyIC01LjV0LTUgLTEyLjV2LTQ3NnEwIC03IDUgLTEydDEyIC01aDM2N3E3IDAgMTIgNXQ1IDEydjQ3NnpNMjYzIDQxOHE3IDAgMTIuNSAtNXQ1LjUgLTEydi0zNzlxMCAtNyAtNS41IC0xMnQtMTIuNSAtNWgtMjFxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTIgdDEyLjUgNWgyMXpNMzY0IDVxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTJ0MTIuNSA1aDIxcTcgMCAxMiAtNXQ1IC0xMnYtMzc5cTAgLTcgLTUgLTEydC0xMiAtNWgtMjF6TTQ4NSA1cS03IDAgLTEyIDV0LTUgMTJ2Mzc5cTAgNyA1IDEydDEyIDVoMjJxNyAwIDEyIC01dDUgLTEydi0zNzlxMCAtNyAtNSAtMTJ0LTEyIC01aC0yMnoiIC8+CjxnbHlwaCB1bmljb2RlPSIkIiBob3Jpei1hZHYteD0iODkzIiBkPSJNNTAzIDI4M2gtMTA4bC0xNiA2OGgxMjR2LTY4ek02ODQgMzUxbC0xOCAtNjhoLTEwNGwxIDY4aDEyMXpNNDAwIDExOHEyOCAwIDQ4LjUgLTIwdDIwLjUgLTQ5dC0yMC41IC00OXQtNDguNSAtMjB0LTQ4LjUgMjB0LTIwLjUgNDl0MjAuNSA0OXQ0OC41IDIwek02NTkgMTE4cTI5IDAgNDkgLTIwdDIwIC00OXQtMjAgLTQ5dC00OSAtMjB0LTQ5IDIwdC0yMCA0OXQyMCA0OXQ0OSAyMHpNODMzIDUxNnEyNSAtNyAyNSAtMzNxMCAtMyAtMiAtOSBsLTg4IC0yOTNxLTcgLTI1IC0zMiAtMjVoLTQxN3EtMTIgMCAtMjEuNSA3LjV0LTExLjUgMTguNWwtODEgMzI3aC0xNDlxLTE0IDAgLTI0IDEwdC0xMCAyNHQxMCAyNHQyNCAxMGgxNzZxMjYgMCAzMyAtMjZsMTggLTczaDUwM2w1IDE1cTYgMjQgMzIgMjRxNyAwIDEwIC0xek03MTIgMjMxbDU0IDE3OWgtNDY2bDQ1IC0xODZoMzY1eiIgLz4KPGdseXBoIHVuaWNvZGU9IiUiIGhvcml6LWFkdi14PSI5MDMiIGQ9Ik04NjcgMjc3cTAgLTc5IC0zNy41IC0xNDl0LTEwMi41IC0xMTdsMTEgLTk2di00cTAgLTE3IC0xMSAtMzBxLTEzIC0xNSAtMzQgLTE1aC0xNDhxLTIxIDAgLTM0IDE1cS0xMSAxMyAtMTEgMzB2NWwyIDE4cS02IC0xIC0xOCAtMWgtMTBsMiAtMTd2LTVxMCAtMTcgLTExIC0zMHEtMTIgLTE1IC0zNCAtMTVoLTE0OHEtMjEgMCAtMzQgMTVxLTExIDEzIC0xMSAzMHY1bDExIDkwcS04NiA2MCAtMTI0IDE1M2wtNDQgLTRoLTRxLTE4IDAgLTMwIDEyIHEtMTUgMTIgLTE1IDMzdjE1MnEwIDIxIDE1IDMzcTEyIDEyIDMwIDEyaDRsNDMgLTRxMzQgODUgMTA3IDE0MWwtMiAxMTB2MXYxcTAgMjggMjUgNDNxMTEgNyAyNiA3cTE0IDAgMjUgLTdsMTI4IC03MnEyNSAzIDUxIDNxMTYwIDAgMjcwIC05OXExMTMgLTEwMCAxMTMgLTI0NHpNNjgxIDQ3cTYxIDQxIDk1LjUgMTAxdDM0LjUgMTI5cTAgMTE4IC05NCAyMDJxLTk2IDg1IC0yMzMgODVxLTI5IDAgLTUzIC00bC05IC0xbC0xMzYgNzdsMiAtMTMwIGwtMTIgLThxLTc5IC01NyAtMTA2IC0xNDRsLTcgLTIybC03NSA3di0xMjdsNzUgOGw3IC0yMnEzMyAtOTYgMTI0IC0xNTVsMTUgLTlsLTEzIC0xMTJoMTIzbC05IDc0bDM1IC00cTEzIC0yIDM5IC0ycTI0IDAgNDcgM2wzNiA0bC05IC03NWgxMjNsLTE1IDExNnpNNTAxIDUyMWw3IC0xcTcgMCAxOCAtMnQyNiAtNXQzMiAtOXQzNSAtMTR0MzcgLTIwLjV0MzYgLTI4LjVxOCAtNyA4IC0xOXQtOCAtMjBxLTggLTkgLTIwIC05cS0xMSAwIC0xOSA4IHEtMjQgMjMgLTU5IDM4LjV0LTU1LjUgMTkuNXQtMzUuNSA1aC00cS0xMSAxIC0xOSA5LjV0LTggMTkuNXExIDEyIDkuNSAyMHQxOS41IDh6TTIzMSAzODRxMTkgMjAgNDEgMjZ0MzQgLTVxMTEgLTExIDYuNSAtMzN0LTIzLjUgLTQydC00MC41IC0yNnQtMzMuNSA1dC03IDMzdDIzIDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDI2OyIgaG9yaXotYWR2LXg9IjczMiIgZD0iTTQ2NSA0MDVoMjUwdi0xOThoLTI1MHYtMjUwaC0xOTh2MjUwaC0yNTB2MTk4aDI1MHYyNTBoMTk4di0yNTB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJyIgaG9yaXotYWR2LXg9IjkwOCIgZD0iTTI2NSAxMzlxNzggNzggMTg4LjUgNzh0MTg4LjUgLTc4cTEgMCAxIC0xbC01NSAtNTVxLTEgMCAtMSAxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1ek0xNDAgMjY0cTg1IDg1IDE5OS41IDExNS41dDIyOC41IDB0MTk5IC0xMTUuNWwxIC0xbC01NiAtNTZxMCAxIC0xIDFxLTEwNiAxMDYgLTI1Ny41IDEwNi41dC0yNTcuNSAtMTA1LjV6TTg5MyAzOTJxMCAtMiAyIC0ybC01NiAtNTZsLTIgMnEtMTA0IDEwNCAtMjQ0IDE0MXQtMjc5LjUgMCB0LTI0My41IC0xNDFxLTEgMCAtMSAtMWwtNTYgNTZsMSAxcTEyMCAxMTkgMjgwIDE2MS41dDMxOS41IDB0Mjc5LjUgLTE2MS41ek0zOTIgMTNxMjYgMjUgNjMgMjV0NjMgLTI1bC02MyAtNjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKCIgaG9yaXotYWR2LXg9IjY3MSIgZD0iTTU1MCAzNTloNzd2LTQzN2gtNTgydjQzN2g3NXYxMjhxMCA4NyA2MiAxNDl0MTQ5IDYyaDRoNHE4OCAwIDE0OS41IC02MnQ2MS41IC0xNDl2LTEyOHpNNDAyIDJsLTMyIDE0MXEzMiAyMCAzMiA1N3EwIDI4IC0xOSA0N3QtNDcgMTlxLTI3IDAgLTQ2LjUgLTE5dC0xOS41IC00N3EwIC0zOCAzMyAtNTZsLTMzIC0xNDJoMTMyek00NDUgMzU5djEyOHEwIDQzIC0zMSA3NHQtNzUgMzFoLTNoLTVxLTQzIDAgLTc0IC0zMXQtMzEgLTc0di0xMjggaDIxOXoiIC8+CjxnbHlwaCB1bmljb2RlPSIpIiBob3Jpei1hZHYteD0iODg5IiBkPSJNNjQ1IDY5OHE4OCAwIDE1MCAtNjEuNXQ2MiAtMTQ5LjV2LTEyOGgtMTA2djI5bDM2IDM0djEzaC0zNnY1MnEwIDQ0IC0zMSA3NC41dC03NSAzMC41aC0yaC01cS00NCAwIC03NSAtMzAuNXQtMzEgLTc0LjV2LTEyOGg3N3YtNDM4aC01ODR2NDM4aDQwMXYxMjhxMCA4OCA2MiAxNDkuNXQxNTAgNjEuNWgzaDR6TTM4MiAwbC0zMyAxNDJxMzMgMjAgMzMgNTdxMCAyOCAtMTkuNSA0Ny41dC00Ni41IDE5LjVxLTI4IDAgLTQ3LjUgLTE5LjUgdC0xOS41IC00Ny41cTAgLTM3IDMzIC01N2wtMzMgLTE0MmgxMzN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKiIgaG9yaXotYWR2LXg9Ijc3NyIgZD0iTTczNyA0OTBsLTE5NSAtMTk1bDE5NSAtMTk2bC0xNTQgLTE1M2wtMTk1IDE5NWwtMTk1IC0xOTVsLTE1NCAxNTNsMTk1IDE5NmwtMTk1IDE5NWwxNTQgMTU0bDE5NSAtMTk1bDE5NSAxOTV6IiAvPgo8Z2x5cGggdW5pY29kZT0iKyIgZD0iTTQ2MCA3MDJxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTcwOSAyNjJ2NDFxMCAxNSAtMTAuNSAyNS41dC0yNS41IDEwLjVoLTEyMXEtMTUgMCAtMjUuNSAxMXQtMTAuNSAyNnYxMjFxMCAxNSAtMTEgMjUuNXQtMjYgMTAuNWgtNDFxLTE1IDAgLTI1LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTEyMXEwIC0xNSAtMTEgLTI2dC0yNiAtMTFoLTEyMCBxLTE2IDAgLTI2LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTQxcTAgLTE1IDEwLjUgLTI2dDI2LjUgLTExaDEyMHExNSAwIDI2IC0xMC41dDExIC0yNS41di0xMjFxMCAtMTUgMTAuNSAtMjUuNXQyNS41IC0xMC41aDQxcTE1IDAgMjYgMTAuNXQxMSAyNS41djEyMXEwIDE1IDEwLjUgMjUuNXQyNS41IDEwLjVoMTIxcTE1IDAgMjUuNSAxMXQxMC41IDI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiwiIGhvcml6LWFkdi14PSI5MTUiIGQ9Ik00NTggNzAxcTE3MyAwIDI5NSAtMTIyLjV0MTIyIC0yOTUuNXEwIC0xMDQgLTQ2IC0xOTFxLTU5IC0xMTUgLTE3MiAtMTc2cS05NCAtNTEgLTE5OSAtNTFxLTEwMSAwIC0xOTQgNDhxLTExNCA2MCAtMTc1IDE3M3EtNDkgOTMgLTQ5IDE5N3EwIDE3MyAxMjIuNSAyOTUuNXQyOTUuNSAxMjIuNXpNNzYwIDIwM3ExMSA0MSAxMSA4MHEwIDEzMCAtOTIgMjIydC0yMjEgOTJxLTEzMCAwIC0yMjIgLTkydC05MiAtMjIycTAgLTM5IDEyIC04NSBxMyAtOSA5IC0yNXEyMSA2IDQ1IDZxNjUgMCAxMTEuNSAtNDZ0NDYuNSAtMTExcTAgLTE3IC01IC0zN3E0IC0yIDEyIC00cTQyIC0xMSA4MyAtMTFxNDUgMCA4NyAxMnEyIDAgNS41IDJ0NS41IDJxLTUgMjIgLTUgNDBxMCA2NCA0Ni41IDExMC41dDExMC41IDQ2LjVxMjMgMCA0NCAtNnE1IDE1IDggMjZ6TTQ5OCAzMzNxMjUgLTE5IDI1IC01MHEwIC0xNCAtNSAtMjRxLTE2IC0zOSAtNTggLTM5cS0xMSAwIC0yNCA1cS0zOSAxNiAtMzkgNTggcTAgMSAwLjUgNHQwLjUgNWwtNTYgMjQ1bDIxIDl6TTQ3OCA1NjV2LTk1aC0zOXY5NWgzOXpNNjMyIDQ5MGwyNyAtMjdsLTY4IC02OGwtMjcgMjh6TTYyOSAzMDB2MzhoOTZ2LTM4aC05NnpNMTkyIDMwMHYzOGg5NXYtMzhoLTk1ek0yNDQgNDYzbDI4IDI3bDY3IC02N2wtMjcgLTI4eiIgLz4KPGdseXBoIHVuaWNvZGU9Ii0iIGhvcml6LWFkdi14PSI5MjEiIGQ9Ik00NjEgNjk4cTE3NCAwIDI5NyAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk3IC0xMjMuNXEtMTc1IDAgLTI5OCAxMjMuNXQtMTIzIDI5Ny41dDEyMyAyOTcuNXQyOTggMTIzLjV6TTY5NCAyNTh2MzlxMCAxOSAtMTQgMzN0LTMzIDE0aC0zNzZxLTE5IDAgLTMzIC0xNHQtMTQgLTMzdi0zOXEwIC0yMCAxNCAtMzMuNXQzMyAtMTMuNWgzNzZxMTkgMCAzMyAxMy41dDE0IDMzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iLiIgaG9yaXotYWR2LXg9Ijk0NSIgZD0iTTE0NyAzOTJxMzcgMCA2NCAtMjd0MjcgLTY0cTAgLTM4IC0yNi41IC02NXQtNjQuNSAtMjd0LTY1IDI3dC0yNyA2NXQyNyA2NC41dDY1IDI2LjV6TTQ3MiAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY0LjUgMjd0LTI2LjUgNjVxMCAzNyAyNi41IDY0dDY0LjUgMjd6TTc5OCAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY1IDI3dC0yNyA2NXEwIDM3IDI3IDY0dDY1IDI3eiAiIC8+CjxnbHlwaCB1bmljb2RlPSIvIiBob3Jpei1hZHYteD0iOTEyIiBkPSJNNjkzIDUzN2gxODF2LTEyN3YtMzAxaC0xODF2LTUzbC0xMzYgLTEzNmgtMzM2djE4OWgtMTgxdjMwMXYxMjdoMTgxdjE2M2g0NzJ2LTE2M3pNODE2IDQ4MGgtMTA1di01M2gxMDV2NTN6TTI3NSA2NDZ2LTEwOWgzNjR2MTA5aC0zNjR6TTUwMiAtMjZ2MTM2aDEzN3YxMzF2NTVoNTR2LTEyOWg2N3YxOTdoLTYwNHYtMTk3aDY1djExMXYxOGg1NHYtNTV2LTI2N2gyMjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iMCIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTY0MyAxNjFsMzkgLTQwbDI4IC0yN3EtNDcgLTYwIC0xMTYuNSAtOTQuNXQtMTQ4LjUgLTM0LjVxLTE0MCAwIC0yMzguNSA5OHQtOTkuNSAyMzhoLTExaC0yaC02N2wxMjYgMTI2bDEyNyAtMTI2aC01MWgtMjhxMCAtMTAwIDcxLjUgLTE3MXQxNzIuNSAtNzFxNjAgMCAxMTIuNSAyNy41dDg1LjUgNzQuNXpNODEwIDMwMWg1MmwtMTI3IC0xMjZsLTEyNiAxMjZoNTBoMzB2MnEwIDEwMSAtNzEuNSAxNzIuNXQtMTcyLjUgNzEuNSBxLTYxIDAgLTExMy41IC0yOC41dC04Ni41IC03Ni41bC0zOSAzOWwtMjggMjhxNDcgNjEgMTE2LjUgOTZ0MTUwLjUgMzVxMTM5IDAgMjM4IC05OXQ5OSAtMjM4di0yaDI4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjEiIGhvcml6LWFkdi14PSI3NDMiIGQ9Ik02ODggMjM1aDI5di0zMHEwIC0xNDMgLTEwMC41IC0yNDMuNXQtMjQzLjUgLTEwMC41dC0yNDQgMTAxdC0xMDEgMjQzcTAgMTQzIDEwMSAyNDR0MjQ0IDEwMXExNiAwIDI1IC0xdjc5djcxbDQ5IC01MGwxNTcgLTE1N2wyMSAtMjFsLTIxIC0yMGwtMTU3IC0xNTdsLTQ5IC01MHY3MHY4OHEtMTggMiAtMjUgMnEtODMgMCAtMTQxIC01OHQtNTggLTE0MXEwIC04MiA1OC41IC0xNDB0MTQwLjUgLTU4dDE0MCA1OHQ1OCAxNDB2MzBoMzBoODd6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjIiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NTkgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjNxLTE3MyAwIC0yOTYgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk2IDEyM3pNNzI4IDM5MnE2IDYgNiAxNXQtNiAxNmwtNTUgNTRxLTYgNiAtMTUgNnQtMTYgLTZsLTI0MyAtMjQ0cS0xNSAtMTYgLTMxIDBsLTg4IDg4cS0xNiAxNiAtMzEgMGwtNTUgLTU0cS02IC03IC02IC0xNnQ2IC0xNWwxMzkgLTE0MHExNSAtMTUgMzcgLTE1aDI2cTIwIDAgMzcgMTV6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjMiIGhvcml6LWFkdi14PSI4NjgiIGQ9Ik0yMiAyMzlxLTEwIDEwIC0xMCAyNHQxMCAyNGw4MyA4M3ExMCAxMCAyMy41IDEwdDIzLjUgLTEwbDEzNiAtMTM1cTEwIC0xMCAyMy41IC0xMHQyMy41IDEwbDM3MSAzNzJxMTAgMTAgMjMuNSAxMHQyMy41IC0xMGw4MyAtODJxMTAgLTEwIDEwIC0yMy41dC0xMCAtMjMuNWwtNDUwIC00NTFxLTI0IC0yNCAtNTcgLTI0aC0zOXEtMzIgMCAtNTYgMjR6IiAvPgo8Z2x5cGggdW5pY29kZT0iNCIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTU5IDcwMGw3MDIgLTM1MWwtNzAyIC0zNTB2NzAxeiIgLz4KPGdseXBoIHVuaWNvZGU9IjUiIGhvcml6LWFkdi14PSI4MTYiIGQ9Ik01OSAxdjY5OGgyNjJ2LTY5OGgtMjYyek00OTUgNjk5aDI2MnYtNjk4aC0yNjJ2Njk4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjYiIGhvcml6LWFkdi14PSI4MTciIGQ9Ik03NTggMmgtNjk5djY5OGg2OTl2LTY5OHoiIC8+CjxnbHlwaCB1bmljb2RlPSI3IiBob3Jpei1hZHYteD0iOTIyIiBkPSJNNDIzIDQxN3YxODJsNDg1IC0yNDNsLTQ4NSAtMjQydjE4MWwtMzY0IC0xODF2NDg1eiIgLz4KPGdseXBoIHVuaWNvZGU9IjgiIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik01MDAgMjk1di0xODJsLTQ4NiAyNDNsNDg2IDI0MnYtMTgybDM2MyAxODJ2LTQ4NXoiIC8+CjxnbHlwaCB1bmljb2RlPSI5IiBkPSJNNDYwIDcwMHExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzdC0yOTcgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk3IDEyM3pNMjk4IDY0bDQzMSAyMTZsLTQzMSAyMTZ2LTQzMnoiIC8+CjxnbHlwaCB1bmljb2RlPSI6IiBob3Jpei1hZHYteD0iODAxIiBkPSJNNjcxIDEwMGwxMDUgLTEwMnEwIC0xNiAtMTIgLTI4LjV0LTI5IC0xMi41aC0yNDJxMSAtNCAxIC0xMnEwIC0zOSAtMjcuNSAtNjYuNXQtNjYuNSAtMjcuNXQtNjYuNSAyNy41dC0yNy41IDY2LjVxMCAyIDAuNSA2dDAuNSA2aC0yNDFxLTE2IDAgLTI4LjUgMTIuNXQtMTIuNSAyOC41bDEwNSAxMDJxLTEgOCAtMSAyNXYyMDhxMCA4OCA1MC41IDE1OHQxMzAuNSA5OHEtNCAxMSAtNCAyNnEwIDM5IDI3LjUgNjYuNXQ2Ni41IDI3LjUgdDY2LjUgLTI3LjV0MjcuNSAtNjYuNXEwIC0xNCAtMyAtMjZxODAgLTI4IDEzMC41IC05OC41dDUwLjUgLTE1Ny41di0yMDhxMCAtMTcgLTEgLTI1ek0zNDggNjE1cTAgLTUgMiAtMTVxMjggNSA1MCA1cTIzIDAgNTAgLTVxMyA4IDMgMTVxMCAyMiAtMTUuNSAzN3QtMzcuNSAxNXQtMzcgLTE1dC0xNSAtMzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iOyIgaG9yaXotYWR2LXg9Ijg4NyIgZD0iTTI5OSA0MThsLTQyIC00NHEtNCAtNSAtMTEgLTEyLjVsLTEyLjUgLTEzLjVsLTEwLjUgLTExcS0xOCAxNiAtMjcgMjNxLTQ5IDQwIC04MSA0MGgtMTAxdjExMmgxMDFxNTkgLTEgMTE4IC00MXEzMyAtMjEgNjYgLTUzek0zOTkgMTU2bDQ0IDQ3bDMyIDM0cTE2IC0xNCAyNiAtMjJxNTIgLTQyIDg0IC00MGg4NnY5NGwxNzUgLTE0OGwtMTc1IC0xNDZ2ODhoLTg2cS01NiAwIC0xMjAgNDBxLTI3IDE3IC02NiA1M3pNNTgyIDQwMCBxLTIzIDAgLTU2IC0yMnEtMzUgLTIzIC03OCAtNjhxLTE5IC0xOSAtNTQuNSAtNTcuNWwtNjYuNSAtNjkuNXQtNjAgLTU1cS04MCAtNjQgLTE1NCAtNjVoLTk5djExMmg5OXEyNiAwIDU5IDIycTI5IDE4IDc5IDY4cTUgNSA3MyA3Ny41dDEwNyAxMDQuNXE4MSA2NCAxNTIgNjVoODh2OTJsMTc1IC0xNDdsLTE3NSAtMTQ3djkwaC04OGgtMXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gzYzsiIGhvcml6LWFkdi14PSIzOTUiIGQ9Ik0xMTUgNDEwbDIyMiAyMjN2LTY2OGwtMjIyIDIyMmgtMTEydjIyM2gxMTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iPSIgaG9yaXotYWR2LXg9Ijk0NyIgZD0iTTg5NiAzNzl2LTE3NmwtNjMgLTI1di0xMDhoLTc3M3Y0NDJoNzczdi0xMDl6TTc2MCAxNDR2Mjk0aC02MjZ2LTI5NGg2MjZ6TTM3MyAzOTBsMjIyIC0xOThoLTQxM3YxOThoMTkxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDNlOyIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTEyNiA0MDhsMjIyIDIyM3YtNjY4bC0yMjIgMjIyaC0xMTJ2MjIzaDExMnpNNDM0IDQzOHE3NSAtNTAgNzUgLTE0MHQtNzUgLTEzOWwtMzQgNjdxMzUgMjggMzUgNzJ0LTM1IDcydjJ6TTY4MCAyOThxMCAtOTIgLTQ2IC0xNjguNXQtMTIzIC0xMjAuNWwtMzQgNjZxNTkgMzQgOTQgOTMuNXQzNSAxMjkuNXQtMzUgMTI5LjV0LTk0IDkzLjV2MmwzMyA2NXE3NyAtNDQgMTIzLjUgLTEyMS41dDQ2LjUgLTE2OC41ek01ODcgNzM4IHExMTggLTY2IDE4OC41IC0xODN0NzAuNSAtMjU3dC03MC41IC0yNTd0LTE4OC41IC0xODJsLTMzIDY2cTk5IDU2IDE1OC41IDE1NS41dDU5LjUgMjE3LjV0LTU5LjUgMjE3LjV0LTE1OS41IDE1NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Ij8iIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik00NjEgNzAycTE3NSAwIDI5OCAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk4IC0xMjMuNXEtMTc0IDAgLTI5Ny41IDEyMy41dC0xMjMuNSAyOTcuNXQxMjMuNSAyOTcuNXQyOTcuNSAxMjMuNXpNNDg5IDI5cTE5IDE4IDE5IDQ3dC0xOSA0N3EtMjAgMTcgLTQ5IDE3cS0yOCAwIC00OCAtMTdxLTIwIC0yMCAtMTggLTQ3cS0yIC0yNyAxOCAtNDdxMTkgLTE3IDQ4IC0xN3EzMiAwIDQ5IDE3ek02MDIgMzUxcTEwIDI0IDEwIDYyIHEwIDU4IC00MSA5M3EtMzggMzQgLTEwOCAzNHEtNDkgMCAtODUgLTEycS0zMyAtMTEgLTYzIC0zMWwtOSAtNmw0NiAtODdsMTAgOHEyIDEgMTkgMTFxNyA0IDIzIDEwcTEwIDQgMjMgNnE3IDIgMjEgMnEzMCAwIDM4IC0xMHExMSAtMTEgMTEgLTMxcTAgLTEzIC03IC0yNXEtMTIgLTE2IC0yMSAtMjRxLTQgLTQgLTguNSAtOGwtMTAgLTl0LTkuNSAtOHEtMTcgLTE2IC0zMCAtMzRxLTEyIC0yMCAtMjAgLTQ2cS01IC0yMiAtNSAtNDEgcTAgLTQgMC41IC0xMnQwLjUgLTEybDEgLTExaDExaDg4djEycTAgMjYgOCA0MnE5IDE2IDIxIDMwcTE0IDE0IDI5IDI1dDMyIDMwcTE0IDE3IDI1IDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IkAiIGhvcml6LWFkdi14PSI1MDgiIGQ9Ik0yNTggNzAzcTkyIDAgMTU3LjUgLTY2dDY1LjUgLTE1N3EwIC0xMDcgLTIwMyAtNTQ2bC0yNCAtNTBsLTYzIDEzNXQtMTAxIDI0NC41dC02MyAyMTYuNXEwIDkyIDY1LjUgMTU3LjV0MTU3LjUgNjUuNWg0aDR6TTI1NCAzOTdxNDIgMCA3MiAzMHQzMCA3M3EwIDQyIC0zMCA3MnQtNzIgMzBxLTQzIDAgLTczIC0zMHQtMzAgLTcycTAgLTQzIDMwIC03M3Q3MyAtMzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iQSIgaG9yaXotYWR2LXg9Ijg5MyIgZD0iTTMxNSAyOTlsNzAgLTcwcS0zOCAtMzIgLTg4LjUgLTMwdC04Ni41IDM4bC0xNDQgMTQ0cS0zOCAzNyAtMzggOTF0MzggOTFsOTkgOTlxMzggMzggOTEuNSAzOHQ5MS41IC0zOGwxNDQgLTE0NHEzNiAtMzYgMzcuNSAtODYuNXQtMzAuNSAtODguNWwtNzAgNjlxMTAgMjAgLTYgMzhsLTE0NCAxNDRxLTkgOSAtMjIuNSA5dC0yMi41IC05bC05OSAtOTlxLTEwIC0xMCAtMTAgLTIzdDEwIC0yM2wxNDQgLTE0NHExNiAtMTYgMzYgLTZ6TTcyOCAtOTkgcS0zOCAtMzcgLTkxIC0zN3QtOTEgMzdsLTE0NSAxNDVxLTM1IDM1IC0zNyA4NS41dDMwIDg4LjVsNjkgLTcwcS05IC0yMCA3IC0zNmwxNDQgLTE0NHE5IC0xMCAyMi41IC0xMHQyMi41IDEwbDk5IDk5cTEwIDkgMTAgMjIuNXQtMTAgMjIuNWwtMTQ0IDE0NXEtMTYgMTYgLTM3IDVsLTY5IDcwcTM4IDMyIDg4LjUgMzAuNXQ4Ni41IC0zNy41bDE0NCAtMTQ0cTM3IC0zOCAzNyAtOTEuNXQtMzcgLTkxLjV6TTI2MyA0NjVxMTQgMTQgMzQgMTQgdDM0IC0xNGwyOTUgLTI5NXExNCAtMTQgMTQgLTM0dC0xNCAtMzR0LTM0IC0xNHQtMzQgMTRsLTI5NSAyOTRxLTE0IDE0IC0xNCAzNC41dDE0IDM0LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQiIgaG9yaXotYWR2LXg9Ijg4MSIgZD0iTTczNCAzMTFxLTE0IC0yNyAtNDIgLTUwcS0xMiAtMzAgLTMxLjUgLTU4dC01NC41IC02MHQtOTIuNSAtNTEuNXQtMTI5LjUgLTE5LjVxLTc3IDAgLTE0My41IDIxdC0xMDUuNSA1MXQtNjcgNjB0LTM5IDUxbC0xMSAyMXE1IC0zIDE0LjUgLTYuNXQzOC41IC0xMS41dDU4IC0xMnQ3MCAtMC41dDc4IDE3LjVxLTY0IDI3IC05NiA5MXEtMjEgNDMgLTggNTRxNyA3IDI1IC0xMHE1MyAtNTAgMjEyIC00MXE3IDggMjEgMjZ2NXEwIDY3IDQ3IDExNCB0MTE0IDQ3cTY0IDAgMTEwIC00My41dDUxIC0xMDYuNWwxMDIgLTQ5ek02MjYgNDY5cS0xOSAwIC0zMiAtMTMuNXQtMTMgLTMyLjV0MTMgLTMydDMyIC0xM3QzMi41IDEzdDEzLjUgMzJ0LTEzIDMyLjV0LTMzIDEzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQyIgaG9yaXotYWR2LXg9IjkxMyIgZD0iTTc3MSAzMTdxNDYgLTE4IDc0IC01OS41dDI4IC05Mi41cTAgLTY4IC00OC41IC0xMTYuNXQtMTE2LjUgLTQ4LjVxLTIgMCAtNSAwLjV0LTQgMC41aC00OTRoLTFoLTJxLTY5IDEgLTExNy41IDUwdC00OC41IDExOXEwIDQ1IDIyLjUgODMuNXQ2MC41IDYwLjVxLTYgMTYgLTYgMzVxMCA0NyAzNCA4MXQ4MSAzNHEzOCAwIDcxIC0yNXEzMSA2NCA5MSAxMDN0MTMzIDM5cTEwMyAwIDE3NiAtNzIuNXQ3MyAtMTc2LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkQiIGhvcml6LWFkdi14PSI5MTciIGQ9Ik00NTkgNjk4cTE3MyAwIDI5NS41IC0xMjN0MTIyLjUgLTI5NnQtMTIyLjUgLTI5NS41dC0yOTUuNSAtMTIyLjV0LTI5NiAxMjIuNXQtMTIzIDI5NS41dDEyMyAyOTZ0Mjk2IDEyM3pNNTc0IDI1MnEtMTEgMTIgLTExIDI4dDExIDI4bDEwOSAxMDhxMTEgMTIgMTEgMjguNXQtMTEgMjcuNWwtMzEgMzFxLTEyIDExIC0yOC41IDExdC0yNy41IC0xMWwtMTA4IC0xMDlxLTEyIC0xMSAtMjguNSAtMTF0LTI3LjUgMTFsLTEwOSAxMDkgcS0xMSAxMSAtMjcuNSAxMXQtMjcuNSAtMTFsLTMxIC0zMXEtMTEgLTExIC0xMSAtMjcuNXQxMSAtMjguNWwxMDkgLTEwOHExMSAtMTIgMTEgLTI4dC0xMSAtMjhsLTEwOSAtMTA4cS0xMSAtMTIgLTExIC0yOC41dDExIC0yNy41bDMxIC0zMXExMSAtMTEgMjcuNSAtMTF0MjcuNSAxMWwxMDkgMTA5cTExIDExIDI3LjUgMTF0MjguNSAtMTFsMTA4IC0xMDlxMTEgLTExIDI3LjUgLTExdDI4LjUgMTFsMzEgMzFxMTEgMTEgMTEgMjcuNXQtMTEgMjguNXogIiAvPgo8Z2x5cGggdW5pY29kZT0iRSIgaG9yaXotYWR2LXg9Ijg5NSIgZD0iTTQ0OCA1MzFxNjMgMCAxMjkuNSAtMjMuNXQxMTUuNSAtNTd0ODkuNSAtNjd0NjEuNSAtNTcuNWwyMSAtMjN2LThsLTIyIC0yNC41dC01OS41IC01NC41dC05MiAtNjl0LTExNCAtNTQuNXQtMTMwLjUgLTI0LjV0LTEyOS41IDIzLjV0LTExNS41IDU3dC04OS41IDY3dC02MS41IDU2LjVsLTIxIDI0djlsMjIgMjQuNXQ1OS41IDU0LjV0OTIgNjguNXQxMTQgNTR0MTMwLjUgMjQuNXpNNDQ2IDE1OHE1OCAwIDk4LjUgNDAuNXQ0MC41IDk4LjUgcTAgNTcgLTQwLjUgOTcuNXQtOTguNSA0MC41cS01NyAwIC05Ny41IC00MC41dC00MC41IC05Ny41cTAgLTU4IDQwLjUgLTk4LjV0OTcuNSAtNDAuNXpNNDQ2IDM2MXEyNiAwIDQ1IC0xOXQxOSAtNDV0LTE5IC00NC41dC00NSAtMTguNXQtNDQuNSAxOC41dC0xOC41IDQ0LjV0MTguNSA0NXQ0NC41IDE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IkYiIGhvcml6LWFkdi14PSI3MDQiIGQ9Ik0yMjQgNzAwaDQyMnYtODE4aC01OTN2NjQ2bDE3MSAxNzF2MXpNNTc4IC01MHY2ODJoLTI4NXYtMTcyaC0xNzJ2LTUxMGg0NTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iRyIgZD0iTTQ2MCA2OThxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTczOCA0MDFsLTEgLTNxLTEgLTMgLTEgLTUuNXQyIC0yLjVxMCAtMiAzIC02dDMgLTh2LTExcTEgLTIgNSAtM3ExIC00IDYgLTV0NiAzcS0zIDAgLTIuNSA0LjV0LTAuNSA0LjVxMCAyIC0xIDNxLTIgMiAtMiAzaDdxMCAyIC0yIDV0LTIgNHEtMSAwIC0yLjUgLTF0LTIgLTF0LTAuNSAyIHQtNCA2bC0yIDdxMyAwIDYgMXEtMSAwIDQgMnEtMSAxIC0yIDRxLTIgNCAtNyAycS0yIDAgLTUgLTIuNXQtNSAtMi41ek03MzUgODFxNjMgOTAgNjMgMTk3cTAgMTkgLTEgMjhxLTkgMCAtMTMgMnEtNCAwIC0xNC41IDQuNXQtMTYuNSAyLjVxMCAxIC0xIDFxMiAzIC01IDExcS01IDQgLTcgMHEtMiAtMyA1IC0xMHEwIC0yIDIgLTZxMiAtMSAxIC0zdC0xIC0zcTQgMCA1IDdxMCAtMSAxIC0xcS0yIC0zIDEgLTZ2LTVxMTAgMCAxNCAxMCBxMSAwIDEgLTJ0MSAtM3EzIC0zIDIgLTV0MiAtMnEyIC0xIDIgMXYycTQgLTIgNCAtNnQtNCAtNnEwIC0xIC0xIC0zdC0xIC00cTAgLTYgLTQgLThsLTQgLTJxLTQgLTMgLTggLTUuNXQtNCAtMy41cS0xMiAwIC0xNSAtN3EtNyAwIC0xMSAtNHEtNiAwIC04LjUgNnQtNC41IDZsLTIgNXExIDAgLTEuNSA2bC01LjUgMTN0LTMgOWwtNSAxMHEtMiAxIC03IDEycS04IDQgLTEwIDEzcTEwIDAgMTAgNHEtMSAwIC0yIDFxLTIgMiAxIDJsMyA5IHEwIDEgMSA1LjV0MSA2LjVxLTIgMCAtOCAtMnEwIC0xIC0xLjUgLTAuNXQtMy41IDAuNWwtMyAxcTAgMSAtNi41IDB0LTguNSAycS0yIDIgLTQgMTRxLTEgMyAtOCAzcS0zIDEgLTMuNSAtMXQwLjUgLTVsMSAtNHEyIDAgLTIgLTdxLTEgLTEgLTEgLTJxLTQgMSAtNiA2dC00IDZxLTEgNCAtMyA0cTAgMTAgLTEgMTBsLTMgMXEtNCAyIC01IDNxLTIgMCAtNS41IDMuNXQtNi41IDUuNXQtNCAwbDMgLTZxMiAwIDUgLTQuNXQ3IC0zLjV2LTUgcTMgMSA0LjUgLTEuNXQyLjUgLTIuNXEwIC0xIC0zIDBxLTQgMiAtMyAtMXEyIC02IC00IC05cTAgMTIgLTMgMTJxLTIgMyAtNyA1dC02IDRxLTEgMCAtMy41IDMuNXQtNC41IDQuNXEtMiAtMiAtNSAtMnEtMSAtMiAtNC41IC0yLjV0LTcuNSAwLjVsLTMgMXEtNyAtMTggLTggLTIwcS0xIC0zIC0zIC01dC0zIC01cTAgLTEgLTcuNSAtMS41dC03LjUgLTEuNXEtMTEgNCAtMTEgMTN2NXQxIDl0MSA2bDIgLTJoMy41aDQuNXQzLjUgMXQxLjUgMiBxNCAwIDMgLTRxOSAtMyA5IDNxLTIgMCAtMiAycTMgNCAyIDd0LTQgNnQtMyA0bC00IDRxOSAtNiAxMSAtMXEwIDEgLTEgM3YxcTIgLTIgMy41IC0yLjV0Mi41IDEuNXEyIDEgMyAzdjZxMyAtNCA0LjUgMHQyLjUgNXEwIC0zIDMgMHEyIDIgMyAycTEgMiA1IDIuNXQ1IDMuNXEtMyAxIC0zIDEycTIgMCA0LjUgMS41dDMuNSAxLjV0MiAtMnEwIC02IDEgLTZxNCAyIDQgNXEtMiAwIC01IDEwcS0zIDAgLTUgLTJxLTMgMCAtNy41IDF0LTYuNSAxIHEtNyA3IC02IDdxLTIgNCAyIDVoMnEwIDIgMTEuNSA1dDEyLjUgOHEtNiAwIDggMTNxMTAgOCAxNCA4cTEgMCA5LjUgMmwxNC41IDMuNXQ4IC0wLjVxMjIgMCAyMiAtMnExIDAgMy41IC0xdDQgLTEuNXQzLjUgMC41cTMgMiAxMSAtMnQ4IC04cS0zIDAgLTEyIC0xdC0xNCAtMXYtMnEyIDAgNS41IC00LjV0Mi41IC02LjVxMyAwIDYgMnQ0IDJxMCAtMiAxIC0zcTMgLTIgNCAzbC0xIDRxMSAyIDQuNSAyLjV0NC41IDMuNXEtNDcgNTYgLTExNC41IDg4IHQtMTQzLjUgMzJxLTEzNCAwIC0yMzEgLTkxcTEgLTEgNSAybDIgMXEwIC02IDEgLThsMyAtN3E4IDAgOSAtMmgtNXExIC02IC0zIC00cS0zIDEgLTQgMXEwIDEgLTMgMnQtNSAwdDAgLTVxMSAwIDIgLTF0MyAtMnEyIDAgNi41IC0xdDYuNSAtMnEyIDAgNSAwLjV0NCAwLjVxMiAxIDMgMnQtMSAycTEgMiAtNCA0cTAgMSAxMSAxcTIgMiAxLjUgMy41dDAuNSAzLjV0NCAydDQgM3E0IC0yIDUgLTZxMSAwIDMgLTNxOSAtMTAgOSAtM3E2IC0xIDYgLTExIHE3IDEgNyAxMXEtMSAwIC0xIDNoNHEyIC0xIDIgMXExIDAgMSAtMmg4di0xMXEwIC0yIC0yIC0zdC0zIC0xbC0yIC0xcS0zIC00IC0xLjUgLTV0Ni41IC0zLjV0NiAtMy41bC04IDFxLTEgMCAtNC41IC0wLjV0LTYgLTF0LTQuNSAwLjVxNSAwIDcgMTFxLTggMiAtMTEgLTVxLTEgLTQgLTQgLTMuNXQtNCAtMS41bC0yIC0xcS0zIC0xIC01IC0xLjV0LTIgMC41cS03IC0yIC03IC0xN3ExMSAtOCAxMSAtMTJxNCAtMSA5LjUgLTJ0OC41IC0xIHExIC0zIDQgLTNxMCAtNCA5IC00cTAgNiA2IC00cTEgLTIgMSAtM3EtMSAwIDAgLTIuNXQzIC01LjVxLTIgMCAtMSAtMXEyIC0yIDUuNSAtMXQzLjUgM3EtMiAwIC0yIDZxLTYgNiAxIDhxMCAtNCA2IDFxMiAyIC0xIDNxMiA5IDAgMTJxLTEgMSAtMi41IDF0LTIuNSAycTQgMSAxIDE0aDVxMiAwIDUuNSAtMS41dDUuNSAtMXQzIDMuNXEzIC0yIDQuNSAtNXQ0LjUgMXEwIC0xIDQgLTUuNXQ1IC00LjVxMCAtMyAyIC0zbC0xIC0ycTcgMCA3IDEgcTYgMCA2IDhxMSAwIDIuNSAtM2wzIC02dDIuNSAtM2wyLjUgLTIuNWwzIC0zdDIuNSAtM3QxIC0yLjVxMiAtMiAyIC01cTEgMCAyIDJxMyAzIDMgLTFxMiAwIDQuNSAtMi41dDIuNSAtMy41cS0yIDAgLTEuNSAtMnQtMC41IC0ycTAgLTEgLTExIC0xcS0xIC01IC02IC02dC0xMSAwLjV0LTExIC0wLjVxLTQgLTIgLTkuNSAtOC41dC01LjUgLTEwLjVxMyAwIDcuNSAzLjV0Ni41IDQuNXEyIDAgMTAgNHEwIC0xIDEgLTF2LTFxLTYgMCAtMiAtNyBxMSAtMSAxIC0ycTMgLTUgOCAtNXEwIC0xIC0yLjUgLTF0LTIuNSAtMmwtNSAtM2gtNmwxIDFsMSAxaDN2NHEtMyAwIC02IC0xLjV0LTUgLTEuNXEtNCAtNCAtNiAtNHEtMiAtMTAgLTYgLTEybC0yIC0xbC00IC0ybC0yIC0ybC0yIC0ycS0xIC0yIC0yIC01cS0zIC03IC0zIC05cS0xIDAgLTMuNSAtNS41dC02LjUgLTUuNXEtMSAtMiAtNS41IC02dC00LjUgLTEwcTEgLTEgMS41IC00dDEuNSAtNi41dDEgLTQuNXEwIC04IC00IC04bC0yIDN0LTEgMyBxMCA0IC00IDEycTAgMiAtNC41IDEuNXQtNS41IC0wLjVxLTEgMyAtMTMgM3EwIC0xIDEgLTJ0MSAtM3EtNiAtMiAtNyAtMnEtMiAwIC00LjUgMi41dC01LjUgMS41cS0xNCAtMiAtMTQgLTE2cS0xIDAgLTEgLTguNXQxIC04LjVxMCAtMiAyIC02dDIgLTVxMiAwIDYgLTR0NSAtNHExIC00IDUgLTRsMiAxbDIgNHEtMyAxIC0xLjUgMy41dDMuNSAzLjVxMCAtMiA2IDJsNiAybDIgMnExIC0zIC0xIC00cS0yIDAgLTMgLTNsLTEgLTIgcS0xIC0yIC0yIC01dC0xIC01dDEgLTQuNXQwIC00LjVoMTN2M3EzIDAgMi41IC02LjV0MS41IC02LjVxMCAtMiAxIC02dDEgLTVxNSAtMyA0IC04cTEyIDAgMTIgM3E3IDAgNSAtN3E1IDAgNiAzdDEgNS41dDIgMi41cTAgMyAyIDFsNiAzbDMgMnEyIC0xIDIgLTJxNSAwIDkgNHEyIDAgNCAtNXQ2IC01cTEyIDAgMTMgMXEzIC0yIDMgLTNxMSAwIDIgLTFsMSAtMWgxbDQgLTRxMCAtMiAyLjUgLTN0Mi41IC0ybDEgLTFsMyAtMmw5IC0zcTEgMyA0IDAgcTEgLTEgMiAtMWwyIC0ycTEgLTEgNCAtN3EyIC0yIDQgLTExcS0xIDAgLTEgLThsNCAtMXEyIDAgMiAycTIgMCA1IC0ydDQgLTJxLTIgLTIgMSAtMy41dDMgMi41cTMgMCAzIC0xMXEyIDAgNC41IDEuNXQ0LjUgMS41cTYgMCA2IDFxOCAtMiAxMyAtOHE1IC01IDUuNSAtMTR0LTQuNSAtMTRsLTggLTEwcTAgLTEyIC0xIC0xMnEwIC0xNCAtMyAtMTRxMCAtMyAtMi41IC03dC0zLjUgLTZxLTEgLTEgLTYuNSAtNC41dC02LjUgLTUuNSBxLTEgMCAtNCAtMXQtNCAtMWwtMiAtM3EtMyAtMyAtMiAtM3EwIC0xIC0wLjUgLTcuNXQtMS41IC04LjVxLTQgLTIgLTMgLTRxLTEgMCAtMS41IC0xdC0zLjUgLTFxLTIgMCAtNSAtMi41dC0zIC01LjVxLTIgLTggLTYgLTExbC0zIC0ycS00IC0yIC00IC00di04cS02IDAgLTggLTRxLTQgMCAtMTEgLTRxMCAtNCAtMiAtNHEwIC00IC0zIC0zdC00IDBxMiAwIDIgLTZxMCAtMSAtNiAtOWwtMSAtMnEtMiAtMyAtMyAtM3EwIC0xIC0wLjUgLTQgdC0wLjUgLTV2LTNsMiAycTAgMSAyIC0xcS0xIC0yIC0zIC00dC0zIC01cS01IDAgLTUgLThxMCAtMiAxIC0ycTAgLTEgMiAtNWwtMjcgOXEwIDM3IDQgMzdxMCA5IDIgOXYxNHEtMSAyIDEuNSA2LjV0Mi41IDYuNXEzIDEgMy41IDEwdDAuNSAxN3QyIDhxMCA0IDEuNSAyMC41dC0wLjUgMjAuNWwtNyA4cS01IDAgLTkgNi41dC00IDEyLjVxLTMgOSAtMyAxMHExIDAgLTIgNC41dC02IDkuNWwtNCA1cS0zIDMgLTMgNC41dDIgNXQyIDYuNSBxLTQgMiAtMiAxMC41dDUgOC41cTAgMyAzIDRxMSAtMyAzIC0ycTMgMyAwIDV2MTNxMCAxMCAtNSAxMHEtMiAwIC00IC01cS0xIDEgLTUgMS41dC03IDJ0LTMgNC41cTIgNiAtOCAxMXExIDQgLTUuNSA4LjV0LTEwLjUgNC41cTAgMSAtMiAxLjV0LTIgMS41cS0yIDAgLTUgM3QtNiAzcS00IDAgLTEwIDIuNXQtOSAyLjVxLTEgMiAtNi41IDN0LTYuNSAzcS03IDAgLTcgMTNxMCAxOCAtOSAxOHEwIDMgLTQgNi41dC02IDMuNXEtMyA3IC01IDcgcTAgNCAtNiA5cS0zIDIgLTMgMHEtMSAtMiAyLjUgLTUuNXQzLjUgLTUuNXExIDAgOCAtMTNxNiAtMTAgMyAtMTFxLTQgLTEgLTEwIDhxLTIgNCAtMiA2cS0yIDEgLTQuNSA2LjV0LTIuNSA3LjVxLTEgMSAtMi41IDR0LTIuNSA2bC0xIDJxMCAxMCAtMTEgMTBsLTcgOXEwIDEwIC04IDEzcTAgMiAtMSA5dDAgMTBxMCAyMyAtMTAgMzFxLTMzIC02OCAtMzMgLTE0NHEwIC0xNDAgOTkuNSAtMjM5dDIzOS41IC05OXE4MiAwIDE1MyAzN3QxMTggMTAwIHEtNyAtMiAtOSA5cS0zIDE3IDIgMzJxNSAtMiA2IDBxLTQgMSAtMiA2cTEwIC03IDEwIDJsLTIgMnEwIDIgMSAzdDEuNSAwLjV0MC41IC0yLjVxMyAwIDMuNSA0LjV0MS41IDUuNXEwIC0xMSAzIC0xMnEyIC0yIC0wLjUgLTQuNXQtMi41IC0zLjVxLTIgLTEgLTIgLTZoLTNxMCAtMyAtMSAtOC41dC0xIC03LjVxLTIgMCAtMiAtMTZ6TTY2NiAzODNxMiAtMSAyIC00cTI1IDAgMjUgM3ExIC0yIDIgLTN0MiAycTEgMCA0LjUgLTN0Ny41IC0ybDcgNCBsLTIgMXEwIDYgLTUgOS41dC02IDQuNXEtMSAwIC0zLjUgMXQtNC41IDFxLTMgMiAtNiAtMXEtMyAtMiAtMyAwcS0xIDIgLTMgMnEwIDggLTkgN3EtMSAtMyAtMy41IC03dC0zLjUgLTcuNXQtMSAtNy41ek01MTggNDkxcTAgLTUgLTEgLTVxLTUgLTMgLTEwIC0zaC0xMXEtMiAwIC0xMCAycTAgMSAxIDJxMyA0IC0xIDRxNyAzIDggM3YtMXYtNHEwIC0xIDIgLTAuNXQ0LjUgMXQzLjUgMS41cTMgMCA2IDFxMSAxIDEuNSAwLjV0MC41IC0zLjV6IE01NTEgNDQ0cTAgMiAtMSA0dC0xIDRxMCAzIDMgMi41dDQgMy41cTMgLTEgMCAtM3YtNHEyIDAgNCAydDMgMnEtMiAtNyAtMSAtOHE1IC01IDQgLTZxNyAwIDUgLTExcTMgMCAzIDNxMiAtMSAyIC0yLjV0LTIgLTEuNXEtMyAtNSAtMTUgLTVxMCA2IC00IDNxLTMgLTEgLTIgNHExIDIgMSAzcS0yIDEgNSAycS0xIDggLTggOHpNNTM2IDQyOHEtMiAyIDAgOHEtMyAxIDEgMmw1IDJxLTQgMCAtMiA0aDJxMSAtMiAyIC0xaDRxMSAtMSAwIC0zIHEtMyAtMTIgLTEyIC0xMnpNNTUxIDQyMnExIDAgMSAxaDNxMCAtMiAtMS41IC0ydC0yLjUgMXpNMzkyIDQwMXExIDEgNCAzcTAgLTMgLTQgLTN6TTU5OCAzODhxMiAwIC0xIC02cS0xIDIgLTIgNXEzIDAgMyAxek01OTggMzgwcTIgMCAxLjUgLTQuNXQtNS41IC0zLjVxMCA3IDIgN2wxIC0ycTEgMSAxIDN6TTYyMCAzNjVxMCAtNCAtMSAtNC41dC00LjUgMS41dC01LjUgMmg1cTEgLTEgNiAxek03MjggMjQwcTYgMCA2IDFxMTAgMCAxNiAzIHEwIC00IC0yLjUgLTkuNXQtMS41IC05LjVxLTMgMCAtMyAtNWwtMiAtMnEtMiAtMyAtNCAtNHEwIC0yIC05IC0xMXEtMSAtMiAtNS41IC02LjV0LTUuNSAtNi41cS0xNCAtMTQgLTEwIC0xNHEwIC0yNCAyIC0yNGwxIC02cTEgLTYgMSAtMTB0LTEgLTVxMCAtMyAtMiAtNy41dC0yIC02LjVsLTIgLTFsLTMgLTNxLTIgMCAtNCAtMy41dC0zIC0zLjVxMCAtNCAtMSAtMTF0LTEgLTExbC0xIC00bC0yIC02bC0xIC00cS0xNSAtOCAtMTUgLTE3IHEtNyAtMTAgLTggLTEycS0xOSAwIC0xOSAtNGgtMTVxMCAyIC0xIDZ0LTEgN3EtMSAwIC0yIDMuNXQtMiAzLjVxMCAxIC0yLjUgNi41dC00LjUgMTF0LTEgNS41cTAgOSAtMyA5cTAgNCAtMi41IDExdC0yLjUgMTBxLTEgMCAtMiA0dC0xLjUgNy41dDAuNSA0LjVxMCA0IDQgMjJxMSA5IC0zIDIzcS00IDAgLTQgNnEtNiA0IC02IDE1cTYgNiAzIDIwcS0zIDEgLTE0IDFxLTEgMyAtNy41IDR0LTE2LjUgMGwtMTAgLTFxLTEgLTIgLTQuNSAtMS41IHQtOC41IDIuNXQtNSAzcS0zIDAgLTcuNSA0LjV0LTQuNSA4LjVxLTQgMSAtOCA5LjV0LTQgMTIuNXEtNCA0IDAgOXEwIDMgLTMgMTJxMCAyIDEuNSA0dDEuNSA0cTAgMTEgNCAxOXEwIDEgMiA0dDIgNHEyIDMgMyAzcTIgMSAzIDNxMiAxIDUgNXEyIDMgMyA0cTMgMSAwIDRxNCAwIDQgMTBxMiAzIDYgM2wxIDFxNCA1IDUgNXEyIDMgNiAzcTEgLTEgMi41IC0xdDQuNSAxbDMgMXE1IDcgMTQgN3ExIDIgNSAxLjV0MTAuNSAtMS41dDcuNSAtMXYyIHEzIC0xIDcgLTEwdDQgLTEyaDhxMCAtNCAxMCAtNHExNiAwIDE2IDZxNiAwIDYgLTZoNnQ4LjUgLTAuNXQ3LjUgLTJ0MiAtMi41cTIgMCA0IC0zdDMgLTNxMCAtMyAyLjUgLTguNXQ0LjUgLTUuNXEwIC04IDUgLTExcTYgLTE0IDEyIC0xOHEtMSAtMiAxLjUgLTZ0Mi41IC01cTEgLTYgMyAtN3EwIC00IDUgLTExLjV0OCAtNy41cTAgLTEgLTEgLTJ0MiAtMnpNMzEyIDI5NnEwIC0zIDMgMHEwIC00IC00IC0ycS0yIDAgLTEgM3ExIDAgMiAtMXogTTMyOCAyOTdxNCAtMSA3LjUgLTMuNXQ1LjUgLTIuNXEzIC0zIDMuNSAtNHQtMS41IC0ycS04IC0yIC0xMiA1cS01IDAgLTEwIDVxNiAwIDcgMnpNMzYyIDI4M2wyIC0xcTIgLTIgMyAtNGwxIC0xaC0xM3EtMSAtMSAtNC41IC0xdC00LjUgMmg3bC0yIDRxMSAwIDUgLTF0NiAtMXYzek0zMzEgMjc4cTQgMCA0IC0zcS01IDAgLTQgM3pNMzM2IDI3NWwyIDNxMSAwIDEgLTJxLTEgLTEgLTMgLTF6TTM3NiAyNzhxMyAwIDMgLTFxLTQgMiAtMyAxeiBNMzczIDI3OGwyIC0xcS0xIDAgLTEgLTAuNXQtMSAtMC41djJ6TTM1NyAyNTBxMSAxIDEgMmwxIC0xcTAgLTEgLTIgLTF6TTc0MCAxMzRxMCAyIDIgM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJIIiBob3Jpei1hZHYteD0iODY1IiBkPSJNNjg2IDI3OXYtMzc4aC0xNzd2MjM1aC0xNTJ2LTIzNWgtMTgzdjM3OGgtMTUzbDQxMiA0MTFsNDExIC00MTFoLTE1OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJJIiBob3Jpei1hZHYteD0iOTMyIiBkPSJNODg0IDIzNHYtMzE0aC04MzZ2MzE0bDE1NyA0MThoNTIyek01ODIgMjM0aDE5OGwtMTA1IDMyMmwtNDE4IDFsLTEwNCAtMzIzaDE5N2w0OSAtOTZoMTMweiIgLz4KPGdseXBoIHVuaWNvZGU9IkoiIGhvcml6LWFkdi14PSI4NjIiIGQ9Ik04NDggNTM0bC0xMjIgLTEyMmw4MiAtODJsLTM3MCAtNDJsNDMgMzY5bDgxIC04MWwxMjIgMTIyek0xMzYgMTQ4bC04MiA4MmwzNjkgNDNsLTQzIC0zNzBsLTgxIDgybC0xMjIgLTEyMmwtMTYzIDE2M3pNMTgyIDM4OGwxOTcgLTY4bC0yMjEgMTh6TTM5MyA0MTd2LTg1bC0yOCA4MHpNNjgyIDE3NGwtMTk3IDY5bDIyMSAtMTl6TTQ3MSAxNDZ2ODVsMjggLTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IksiIGhvcml6LWFkdi14PSI4NjkiIGQ9Ik01MzAgMzUxbDMxOCAtMzE4di0xNjh2MGgtMTY4aC0xdjEyOWgtMTI4djEyOGgtMTI4bC02MSA2MXEtNDAgLTE0IC04MyAtMTRxLTEwOSAwIC0xODcgNzcuNXQtNzggMTg3LjV0NzggMTg3LjV0MTg3IDc3LjV0MTg3IC03Ny41dDc4IC0xODcuNXEwIC00MyAtMTQgLTgzek0yMjQgNDAycTM3IDAgNjMgMjZ0MjYgNjN0LTI2IDYzdC02MyAyNnQtNjMuNSAtMjZ0LTI2LjUgLTYzdDI2LjUgLTYzdDYzLjUgLTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkwiIGQ9Ik00NjAgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjN0LTI5NyAxMjN0LTEyMyAyOTd0MTIzIDI5N3QyOTcgMTIzek00NjAgLTM0cTEzMCAwIDIyMi41IDkydDkyLjUgMjIzdC05Mi41IDIyM3QtMjIyLjUgOTJ0LTIyMi41IC05MnQtOTIuNSAtMjIzdDkyLjUgLTIyM3QyMjIuNSAtOTJ6TTQ2NCA1MjlxMTAzIDAgMTc2LjUgLTczLjV0NzMuNSAtMTc3LjV0LTczIC0xNzcuNXQtMTc3IC03My41IHQtMTc3LjUgNzMuNXQtNzMuNSAxNzcuNXQ3My41IDE3Ny41dDE3Ny41IDczLjV6TTM5NiAzNTlxMzMgMzMgMTAyIDcwbC0zMCA0MHEtNCAxIC0xMiAxcS02MSAwIC0xMTYuNSAtNTV0LTU1LjUgLTExNnEwIC02IDEgLTlsNDIgLTMycTM4IDcwIDY5IDEwMXpNNTQwIDE1NXExNiAwIDI4IDEydDEyIDI5dC0xMS41IDI5dC0yOC41IDEydC0yOSAtMTJ0LTEyIC0yOXQxMiAtMjl0MjkgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9Ik0iIGhvcml6LWFkdi14PSI5NTIiIGQ9Ik04OTIgMzJsLTI3MyAyNjJsMjczIDIzNHEzIC04IDMgLTE1di00NjVxMCAtOCAtMyAtMTZ6TTQ3NiAyMzhsLTcyIDU4bC0zNiAzMGwtMjc1IDIzNXExMCAyIDE0IDJoNzM4cTQgMCAxNCAtMmwtMjc1IC0yMzVsLTM2IC0zMHpNODQ1IC0yaC03MzhxLTUgMCAtMTMgMmwyNzYgMjY1bDEwNiAtODdsMTA3IDg3bDI3NSAtMjY1cS04IC0yIC0xMyAtMnpNNjAgNTI4bDI3MyAtMjM0bC0yNzMgLTI2MnEtMyA4IC0zIDE2djQ2NXEwIDcgMyAxNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJOIiBob3Jpei1hZHYteD0iOTQzIiBkPSJNODU3IDY3MHExNyAwIDIzIC02dDYgLTIzdi02NTVxMCAtMTcgLTYgLTIzdC0yMyAtNmgtMTA4aC01NDZoLTcxcS0yOCAwIC01My41IDI2LjV0LTI1LjUgNTIuNXY0ODFxMCAxNyA2IDIzdDIzIDZoOTJ2OTVxMCAxNyA2IDIzdDIzIDZoNjU0ek04MzcgN3Y2MTNoLTYxNHYtNzR2LTUwdi00NDVoLTQ5djQ0NWgtNzF2LTQ2MHEwIC03IDExIC0xOHQxOCAtMTFoNzFoNTQ2aDg4ek01MTEgNTU2di0yMjNoLTIyM3YyMjNoMjIzek03NjUgNTI1di0zNyBoLTE4NXYzN2gxODV6TTc2NSA0MTF2LTM3aC0xODV2MzdoMTg1ek03NjUgMjU5di0zN2gtNDc3djM3aDQ3N3pNNzY1IDE0NHYtMzdoLTQ3N3YzN2g0Nzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjkzMCIgZD0iTTg4MiA1MTB2LTUxMWgtNzB2NTExaDcwek02OTUgNTEwaDQ3di01MTFoLTU1NnY1MTFoNTJxNjggMTMzIDEyMiAxMzNoMjA3cTMyIDAgNjYuNSAtNDAuNXQ2MS41IC05Mi41ek01MTQgNTIycTEzIDAgMjIgOXQ5IDIydC05IDIxLjV0LTIyIDguNWgtMTA0cS0xMyAwIC0yMS41IC04LjV0LTguNSAtMjEuNXQ4LjUgLTIydDIxLjUgLTloMTA0ek00OCA1MTBoNjl2LTUxMWgtNjl2NTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IlAiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik03MTkgNDk2aDE0M3YtNDk1aC02NTl2MWwtMTc3IDQ2MWw2MTUgMjM3ek02NjAgNDk2bC01MSAxMzNsLTM0NSAtMTMzaDM5NnpNOTcgNDMybDEwNiAtMjc3djMxOHpNMjU4IDU2aDU0OXYzODVoLTU0OXYtMzg1ek02OTkgMjkybDU4IC0xOTBoLTQzMmwxMDMgMTEybDY2IC00MmwxMjMgMTc3bDM4IC03MXpNMzc5IDI3NXEtMjIgMCAtMzcgMTV0LTE1IDM3dDE1IDM3dDM3IDE1dDM3IC0xNXQxNSAtMzd0LTE1IC0zN3QtMzcgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IlEiIGhvcml6LWFkdi14PSI4NDQiIGQ9Ik02ODEgNTIxcTYxIC01NCA5NS41IC0xMjkuNXQzNC41IC0xNjAuNXEwIC0xNjEgLTExNCAtMjc1LjV0LTI3NSAtMTE0LjV0LTI3NSAxMTQuNXQtMTE0IDI3NS41cTAgODUgMzUgMTYxdDk2IDEzMHEyMCAxNyA0Ni41IDE1LjV0NDMuNSAtMjEuNXExNyAtMTkgMTUuNSAtNDUuNXQtMjEuNSAtNDMuNXEtODggLTc4IC04OCAtMTk2cTAgLTEwOSA3Ni41IC0xODZ0MTg1LjUgLTc3dDE4NS41IDc3dDc3LjUgMTg2cTAgMTE3IC04OCAxOTUgcS0yMCAxOCAtMjEuNSA0NHQxNi41IDQ2cTE3IDE5IDQzLjUgMjAuNXQ0NS41IC0xNS41ek00MjMgMTY2cS0yNiAwIC00NC41IDE5dC0xOC41IDQ1djQwN3EwIDI2IDE4LjUgNDV0NDQuNSAxOXQ0NSAtMTl0MTkgLTQ1di00MDdxMCAtMjYgLTE5IC00NXQtNDUgLTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik02NjggMTA1djg3bDEwNCA3MHYtMjYyaC03MzF2NTIzaDMyN3EtMiAtMSAtNi41IC0zdC02LjUgLTNxLTg3IC0zOSAtMTQxIC05OWgtNjl2LTMxM2g1MjN6TTg3NyA0MTdsLTMxMyAtMjExdjEzN3EtOTAgMCAtMTQxIC03cS00OSAtNiAtODkuNSAtMjF0LTYzLjUgLTMzLjV0LTM5IC0zNS41dC0yMiAtMjhsLTYgLTEycTAgNTQgMjAgMTAwdDUxLjUgNzUuNXQ3MC41IDUyLjV0NzcuNSAzNXQ3MCAyMHQ1MS41IDEwbDIwIDJ2MTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSI4NTMiIGQ9Ik04MjYgMzg5cTEwIC0xMSA4IC0yNHEwIC0xMyAtMTAgLTI4cS0zIC00IC0xNiAtMTRsLTE4NCAtMTIxcS0yIC0xIC01LjUgLTd0LTIuNSAtMTB2LTRsODEgLTIzN3E0IC0xMSA0IC0yM3EwIC0xNSAtNyAtMjVxLTExIC0xNiAtMzAgLTE2aC0xcS0xNiAxIC0zNiAxNWwtMTkwIDE1NXEtMyAzIC0xMCAzdC05IC0zbC0xODEgLTE1NHEtMTggLTE0IC0zNiAtMTVxLTIxIC0yIC0zMSAxNXEtOCAxMSAtOCAyNnEwIDcgNCAyMWw3MiAyMzZ2NCBxMSA1IC0yIDExdC02IDdsLTE4NSAxMjJxLTEwIDcgLTE2IDE0cS0xMSAxMyAtMTEgMjhxMCAxNCA4IDI0cTkgOSAxNiAxMnExMiA1IDI3IDVoMjMwcTYgMCAxMSA0cTcgNSA3IDEwbDY3IDIzOXE0IDE0IDkgMjFxMTMgMTggMzMgMTlxMjAgLTEgMzMgLTE5cTMgLTQgMTAgLTIxbDY2IC0yMzlxMCAtNSA3IC0xMHE1IC00IDExIC00aDIzMHE5IDAgMjAgLTNxMTQgLTQgMjMgLTE0eiIgLz4KPGdseXBoIHVuaWNvZGU9IlQiIGhvcml6LWFkdi14PSI4OTkiIGQ9Ik04MTcgMTg1bDYzIC02NGwtMTYyIC05MWwtOTIgLTE2M2wtNjMgNjRsMTQgMTQ4bC0xNjkgMTY5bC0yMjQgLTM3MWwtNjMgNjNsMTIwIDQ3NWwtMTc2IDE3NXEtMTkgMjAgLTE5IDQ2LjV0MTkgNDUuNXQ0NiAxOXQ0NiAtMTlsMTc2IC0xNzVsNDc1IDEyMGw2MyAtNjNsLTM3MSAtMjI1bDE2OCAtMTY4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSI4OTQiIGQ9Ik03NjAgMTU0cTQ2IC0yMCA3Mi41IC00NC41dDI5LjUgLTM4LjVsMyAtMTR2LTg2aC04MzZ2ODZxMCAyIDAuNSA2dDYgMTV0MTUuNSAyMnQzMS41IDI2dDUwLjUgMjhxMTIgNSA1NCAyOXQ4NyA0M3Q5NCAyOHEtMzMgMzQgLTcyIDEzNHEtMTEgMjggLTExIDEwMHEwIDcgLTEgMzF0LTAuNSA0MS41dDMuNSAyOS41cTMxIDExMSAxNTkgMTExcTEyNyAwIDE1OCAtMTExcTQgLTEyIDQuNSAtMjkuNXQtMSAtNDF0LTEuNSAtMzEuNSBxMCAtNzIgLTEwIC0xMDBxLTM4IC05NiAtNzIgLTEzNHE1MCAtOCA5NC41IC0yN3Q4NyAtNDMuNXQ1NC41IC0yOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IlYiIGhvcml6LWFkdi14PSI5NDkiIGQ9Ik02NTkgNDE2bDIzNSAxMTF2LTQ0OWwtMjM1IDExMXYxdi0xMDNxMCAtMTkgLTEzIC0zMnQtMzIgLTEzaC01MTBxLTE5IDAgLTMyIDEzdC0xMyAzMnY0MzNxMCAxOSAxMyAzMnQzMiAxM2g1MTBxMTkgMCAzMiAtMTN0MTMgLTMydi0xMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0iVyIgaG9yaXotYWR2LXg9Ijk1NCIgZD0iTTcwNCA1NHYxODFsOTIgOTN2LTI3NHEwIC01MSAtMzYgLTg3dC04NyAtMzZoLTQ5MnEtNTEgMCAtODcgMzZ0LTM2IDg3djQ5M3EwIDUxIDM2IDg3dDg3IDM2aDQ5MnExNyAwIDI0IC0ybC04OSAtOTBoLTQyN3EtMTMgMCAtMjIgLTl0LTkgLTIydi00OTNxMCAtMTMgOSAtMjJ0MjIgLTloNDkycTEzIDAgMjIgOXQ5IDIyek00MzEgMzE0bDM1NCAzNTRsMTMyIC0xMzJsLTM1NCAtMzU0djBsLTE5NSAtNjNsNjMgMTk1djB6TTU0NyAyMDggbC04OSA4OWwtNDMgLTEzMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iOTIxIiBkPSJNODY4IDU0MnYtNDIzaC02NnEtMTMgMjkgLTQwIDQ2LjV0LTYwIDE3LjV0LTU5LjUgLTE3LjV0LTQwLjUgLTQ2LjVoLTIyMHY0MjNoNDg2ek0yNDAgMTgzcS0zMyAwIC02MCAtMTcuNXQtNDAgLTQ2LjVoLTEwN3YxODBsMTExIDEyM2gxODR2LTI4NHEtMzMgNDUgLTg4IDQ1ek0xMDEgMjg4di01OGgxNjF2MTMyaC05OXpNMjQwIDE0NnEzMCAwIDUxLjUgLTIxdDIxLjUgLTUycTAgLTMwIC0yMS41IC01MS41dC01MS41IC0yMS41IHEtMzEgMCAtNTIgMjEuNXQtMjEgNTEuNXEwIDMxIDIxIDUydDUyIDIxek03MDIgMTQ2cTMxIDAgNTIgLTIxdDIxIC01MnEwIC0zMCAtMjEgLTUxLjV0LTUyIC0yMS41cS0zMCAwIC01MS41IDIxLjV0LTIxLjUgNTEuNXEwIDMxIDIxLjUgNTJ0NTEuNSAyMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iODYxIiBkPSJNNDI1IDQ4OGwtMTQ1IC00MDlsLTEyNiAxOTNsLTgxIC03NmwtMjIgLTIwbC00NiAzOWwxNjIgMTUxbDk2IC0xNDdsMTcxIDQ4M2wxNTcgLTYwNWwxMzEgNDEzbDExNiAtMzcxbC02MSAtMTZsLTU1IDE3OGwtMTM3IC00MzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9Ijg5NyIgZD0iTTQwMiA2MDd2LTM2OWgzNzFxMCAtMTUzIC0xMDggLTI2MXQtMjYxIC0xMDh0LTI2MSAxMDh0LTEwOCAyNjFxMCAxNTIgMTA3LjUgMjYwdDI1OS41IDEwOXpNNDk2IDcwMHExNTMgMCAyNjEuNSAtMTA4LjV0MTA4LjUgLTI2MS41aC0zNzF2MzcwaDF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWyIgaG9yaXotYWR2LXg9Ijg2MSIgZD0iTTQ0NSA2NzF2LTI3OGg0MDl2LTE4NWgtNDA5di0yNzdsLTQyNyAzNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iXCIgaG9yaXotYWR2LXg9Ijg1NCIgZD0iTTcxMCA1NzloODd2LTczOWgtNzQwdjczOWg4OXY0NnEwIDM1IDIwIDU0dDU2IDE5dDU2LjUgLTE5LjV0MjAuNSAtNTMuNXYtNDZoNTJ2NDZxMCAzNCAyMC41IDUzLjV0NTYuNSAxOS41dDU2IC0xOXQyMCAtNTR2LTQ2aDUydjQ2cTAgMzQgMjAuNSA1My41dDU2LjUgMTkuNXQ1Ni41IC0xOS41dDIwLjUgLTUzLjV2LTQ2ek01OTggNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41IHQtMjcuNSA3LjVxLTM1IDAgLTM1IC0zMnpNMzkyIDYyNXYtMTIzcTAgLTE3IDguNSAtMjQuNXQyNy41IC03LjVxMzUgMCAzNSAzMnYxMjNxMCAzMiAtMzUgMzJxLTE5IDAgLTI3LjUgLTcuNXQtOC41IC0yNC41ek0xODcgNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41dC0yNy41IDcuNXEtMzUgMCAtMzUgLTMyek03MzUgLTk5djUxNGgtNjE2di01MTRoNjE2ek00MjkgOTkgcTAgLTQ1IC0zNSAtNzB0LTkwIC0yNXEtMzYgMCAtNzMgMTRsNyA1MnEzNSAtMTQgNzMgLTE0cTI0IDAgMzggMTF0MTQgMjhxMCAyMiAtMTYuNSAzMi41dC01OS41IDEyLjV2NTJxNjMgNSA2MyAzOHEwIDI4IC00MiAyOHEtMjkgMCAtNjEgLTE1bC03IDUycTM0IDE1IDg0IDE1cTQ1IDAgNzEgLTE4dDI2IC00NnEwIC01MCAtNjUgLTcydi0xcTczIC0yMCA3MyAtNzR6TTUzNyAyMjlsLTUyIC0yMGwtNyA1Mmw5MSA0NGgzMXYtMjk2aC02M3YyMjB6ICIgLz4KPGdseXBoIHVuaWNvZGU9Il0iIGhvcml6LWFkdi14PSI4NjEiIGQ9Ik00MTUgLTY5djI3N2gtNDA4djE4NWg0MDh2Mjc4bDQyOCAtMzcweiIgLz4KPGdseXBoIHVuaWNvZGU9Il4iIGhvcml6LWFkdi14PSI3NzUiIGQ9Ik03NDkgNTcycTIyIC00NiAtMyAtMTMycS0yNCAtODUgLTUgLTIzNHEtOCAtMiAtMjEgLTR0LTQ5IC04dC02NiAtOHQtNjEgLTJ0LTQ2LjUgOXQtMTAuNSAyNnExNSA0OCAtNDggNDZxLTYxIC0yIC0xODIgLTQ4cS0zNyAtMTQgLTYzIC0zdjM5OXEyMiA2IDU4IDE1dDExMiAyNXQxMjYuNSAxNC41dDUwLjUgLTI0LjVxMCAtMyAtMiAtMTQuNXQtMy41IC0yM3QtMS41IC0yM3Q1IC0xOHQxNiAtNS41cTMwIDQgNzguNSA3dDgyLjUgNHogTTE0NSA2NTh2LTgxN2gtODV2ODE3cTAgMTcgMTIuNSAyOS41dDMwLjUgMTIuNXExNyAwIDI5LjUgLTEyLjV0MTIuNSAtMjkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJfIiBob3Jpei1hZHYteD0iODIwIiBkPSJNNTkgMTk4djE5OWg3MDJ2LTE5OWgtNzAyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImAiIGhvcml6LWFkdi14PSI5MzYiIGQ9Ik0zMDYgMzc4bC0xNTIgMTUzbC05NSAtOTZ2Mjc3aDI3N2wtOTUgLTk1bDE1MiAtMTUyek03ODMgNzVsOTUgOTV2LTI3NmgtMjc3bDk1IDk1bC0xNTIgMTUxbDg3IDg3ek02MzEgMzc4bC04NyA4N2wxNTIgMTUybC05NSA5NWgyNzZ2LTI3N2wtOTQgOTV6TTMwNiAyMjdsODcgLTg3bC0xNTIgLTE1Mmw5NSAtOTVsLTI3NyAxdjI3N2w5NSAtOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iYSIgaG9yaXotYWR2LXg9IjgxMCIgZD0iTTc0NSAxNDRxMjEgMCAzNS41IC0xNC41dDE0LjUgLTM1LjV0LTE0LjUgLTM2dC0zNS41IC0xNXEtMiAwIC02IDAuNXQtNiAwLjVxLTQyIC0zNiAtNzkgLTU5cS04MyAtNTUgLTE1NyAtNzZxLTcxIC00NCAtOTAgLTQ0cS0xNCAwIC05NSA0NXEtNzYgMjIgLTE1NiA3NXEtNDAgMjcgLTc5IDU5cS0yIDAgLTUuNSAtMC41dC01LjUgLTAuNXEtMjEgMCAtMzYgMTV0LTE1IDM2dDE1IDM1LjV0MzYgMTQuNXQzNS41IC0xNC41dDE0LjUgLTM1LjV2LTggcTkgLTggMzQgLTIydDM4IC0yM3E0NyAtMzEgMTQ0IC0zM2wzMiAxNTFxNCA5OCA3IDE5MmgtMTM2bC01MiAxMnEtMTQgLTE3IC0zMyAtMTdxLTE3IDAgLTI5IDExLjV0LTEyIDI4LjV0MTIgMjguNXQyOSAxMS41cTIyIDAgMzMgLTE4aDE5MHEyIDcyIDMgOTZxLTMyIDEwIC01MiAzNi41dC0yMCA2MC41cTAgNDIgMjkuNSA3MS41dDcwLjUgMjkuNXE0MiAwIDcxLjUgLTI5LjV0MjkuNSAtNzEuNXEwIC0zMyAtMjAgLTU5LjV0LTUxIC0zNi41IHEwIC03IDEuNSAtNDAuNWwyLjUgLTU2LjVoMTg5cTExIDE4IDMzIDE4cTE3IDAgMjkgLTExLjV0MTIgLTI4LjV0LTEyIC0yOC41dC0yOSAtMTEuNXEtMjEgMCAtMzIgMTdsLTUzIC0xMmgtMTM1bDYgLTE5MmwzMyAtMTU0cTc5IC00IDEyMCAyMXE1MCAzMCA5NiA2MnEtMSAyIC0xIDZxMCAyMSAxNSAzNS41dDM2IDE0LjV6TTM1MSA2MDFxMCAtMjIgMTUuNSAtMzcuNXQzNy41IC0xNS41cTIzIDAgMzguNSAxNS41dDE1LjUgMzcuNXQtMTYgMzcuNSB0LTM4IDE1LjV0LTM3LjUgLTE1LjV0LTE1LjUgLTM3LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjkxOSIgZD0iTTQ2MSA2OTlsNDA4IC0xMTN2LTU5MWwtNDA4IC0xMTRsLTQxMCAxMTR2NTkxek00MjYgLTM4djQzOWwtMzA2IDg2di00NDF6TTQ2MCA0NjJsMzAwIDg0bC0yOTkgODJsLTMwMCAtODJ6TTgwMSA0NnY0NDBsLTMwNyAtODV2LTQ0MHoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iOTA4IiBkPSJNNzY3IDMxOHE0NiAtMTkgNzMuNSAtNjB0MjcuNSAtOTJxMCAtNjggLTQ4IC0xMTZ0LTExNiAtNDhoLTloLTE5OHYxNjJoMzBoNzZxMTIgMCAxNSA2LjV0LTQgMTYuNWwtMTQ1IDE3M3EtOCAxMCAtMTkuNSAxMHQtMTkuNSAtMTBsLTE0NSAtMTczcS04IC0xMCAtNSAtMTYuNXQxNiAtNi41aDc2aDMwdi0xNjJoLTE5OGgtMWgtMWgtMnYxcS02OCAxIC0xMTYuNSA1MHQtNDguNSAxMTdxMCA0NiAyMiA4NHQ2MCA2MXEtNSAxOCAtNSAzNCBxMCA0NyAzMy41IDgwLjV0ODEuNSAzMy41cTM5IDAgNjkgLTI0cTMxIDY0IDkxIDEwM3QxMzMgMzlxMTAzIDAgMTc1LjUgLTcyLjV0NzIuNSAtMTc1LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSI5MTgiIGQ9Ik00NTkgNjk5cTE3NCAwIDI5Ni41IC0xMjN0MTIyLjUgLTI5NnEwIC0xNzQgLTEyMi41IC0yOTYuNXQtMjk2LjUgLTEyMi41cS0xNzMgMCAtMjk2IDEyMi41dC0xMjMgMjk2LjVxMCAxNzMgMTIzIDI5NnQyOTYgMTIzek03NzQgMjgwcTAgMTMwIC05Mi41IDIyMnQtMjIyLjUgOTJxLTEwMCAwIC0xODIgLTU4bDQzOCAtNDM4cTU5IDgxIDU5IDE4MnpNMTQ1IDI4MHEwIC0xMzAgOTIgLTIyMnQyMjIgLTkycTEwMyAwIDE4MyA1OGwtNDM4IDQzOSBxLTU5IC04MyAtNTkgLTE4M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJlIiBob3Jpei1hZHYteD0iNTU2IiBkPSJNNTUwIDY5OWwtMTkzIC0zNDJoMTU4bC01MTAgLTQ3NmwyMzkgMzg2aC0xNjB6IiAvPgo8Z2x5cGggdW5pY29kZT0iZiIgaG9yaXotYWR2LXg9IjkxMiIgZD0iTTU2IDQxNXExNDkgMCAyNzUgLTczLjV0MjAwIC0xOTkuNXQ3NSAtMjc1aC0xNjBxLTIgMTYxIC0xMTUgMjc0cS0xMTQgMTE0IC0yNzUgMTE0djE2MHpNNTYgNzAwcTE2OSAwIDMyMi41IC02NnQyNjUuNSAtMTc3LjV0MTc4IC0yNjZ0NjcgLTMyMy41aC0xNjBxLTEgMTgzIC05MS41IDMzNy41dC0yNDUgMjQ0LjV0LTMzNi41IDkwdjE2MXpNMTY3IDkwcTQ2IDAgNzguNSAtMzIuNXQzMi41IC03OC41dC0zMi41IC03OC41dC03OC41IC0zMi41IHQtNzguNSAzMi41dC0zMi41IDc4LjV0MzIuNSA3OC41dDc4LjUgMzIuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJnIiBob3Jpei1hZHYteD0iODk0IiBkPSJNODY1IDM2di0zNWgtMTUxdjQ3djFxLTQgNDMgLTU1IDczcS0xMCAxNiAtMjIgNDdxLTUgMTEgLTUgNDBxMCAzNyAxIDQxcTEzIDQ0IDY0IDQ0dDY0IC00NHYtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzkgLTI5IC01NHEyMCAtNCAzOCAtMTEuNXQzNS41IC0xN3QyMS41IC0xMS41cTE5IC04IDI5LjUgLTE4dDExLjUgLTE1ek0xODAgNDl2LTF2LTQ3aC0xNTF2MzVxMCAyIDEgNnQxMS41IDE0dDI5LjUgMThxNSAyIDIxLjUgMTJ0MzQuNSAxNy41IHQzOCAxMS41cS0xNCAxNSAtMjkgNTRxLTQgMTAgLTQgNDBxMCAzNyAxIDQxcTExIDQ0IDYzIDQ0cTUxIDAgNjQgLTQ0cTEgLTQgMSAtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzYgLTI0IC00OHEtNTMgLTMyIC01MyAtNzJ6TTYyMCAxMDJxMjUgLTExIDM5LjUgLTI0LjV0MTYuNSAtMjEuNWwyIC04di00N2gtNDYydjQ3cTAgMyAxLjUgOC41dDE2IDE5LjV0NDAuNSAyNnE2IDMgMjkgMTZ0NDggMjMuNXQ1MiAxNS41cS0xOCAyMSAtMzkgNzQgcS02IDEzIC02IDU2cTAgNTMgMSA1NnExNyA2MSA4NyA2MXQ4OCAtNjFxMSAtMyAxIC01NnEwIC00MSAtNiAtNTZxLTIxIC01NCAtNDAgLTc0cTI4IC01IDUyLjUgLTE1dDQ5IC0yNHQyOS41IC0xNnoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iOTA2IiBkPSJNODQ4IDQyNXEyNSAtNjggMjUgLTE0NHQtMjUgLTE0NHEtMTAgLTI4IC00MCAtMjhxLTYgMCAtMTAgMWwtNyAycS01NSAtMTExIC0xNjkgLTE2OWwyIC03cTQgLTE2IC0zLjUgLTMwdC0yMi41IC0yMHEtNzIgLTI1IC0xNDQgLTI1cS03MyAwIC0xNDUgMjVxLTE1IDYgLTIyLjUgMjB0LTMuNSAzMGwyIDdxLTExMiA1NSAtMTcwIDE2OWwtNyAtMnEtMyAtMSAtMTAgLTFxLTI5IDAgLTM5IDI4cS0yNiA3MCAtMjYgMTQ0dDI2IDE0NCBxMTAgMjggMzkgMjhxMyAwIDExIC0ybDYgLTFxNTggMTE1IDE3MCAxNjlsLTIgN3EtNCAxNiAzLjUgMzB0MjIuNSAyMHE3MiAyNSAxNDQgMjVxNzUgMCAxNDUgLTI2cTE1IC01IDIyLjUgLTE5dDMuNSAtMzBsLTIgLTdxMTEzIC01NiAxNzAgLTE2OWw2IDFxOCAyIDExIDJxMjkgMCAzOSAtMjh6TTgwOCAxNTFxMjMgNjMgMjMgMTMwcTAgNjYgLTIyIDEzMGwtMTY2IC00MXEyMCAtNDIgMjAgLTg5dC0yMCAtODl6TTU4MyAtNzRsLTQwIDE2NSBxLTQyIC0yMCAtODkgLTIwdC05MCAyMGwtNDAgLTE2NXE2MSAtMjMgMTMwIC0yM3E2OCAwIDEyOSAyM3pNNTYxIDEyOXExMiAtNyAxNyAtMTZxMjQgMTcgNDQgNDNxLTExIDYgLTE3IDE4cS04IDE3IDAgMzZxMTYgMzIgMTYgNzFxMCAzOCAtMTYgNzFxLTggMTggMCAzNnE3IDEyIDE3IDE4cS0xOSAyNSAtNDQgNDNxLTcgLTEyIC0xNyAtMTZxLTggLTQgLTE4IC00cS0xMSAwIC0xOCA0cS0zMyAxNiAtNzIgMTZxLTM4IDAgLTcxIC0xNiBxLTcgLTQgLTE4IC00cS0xMCAwIC0xOCA0cS0xMiA3IC0xNyAxNnEtMjUgLTE4IC00NCAtNDNxMTEgLTYgMTcgLTE4cTggLTE4IDAgLTM2cS0xNyAtMzYgLTE3IC03MXEwIC0zNiAxNiAtNzFxOSAtMTkgMCAtMzZxLTQgLTExIC0xNiAtMThxMTYgLTIyIDQ0IC00NHE1IDEwIDE3IDE3cTggNCAxOCA0cTExIDAgMTggLTRxMzMgLTE2IDcyIC0xNnEzOCAwIDcxIDE2cTcgNCAxOCA0cTEwIDAgMTggLTR6TTc1IDI4MXEwIC02NCAyMyAtMTMwbDE2NSA0MSBxLTIwIDQ1IC0yMCA4OXEwIDQ1IDIxIDg5bC0xNjYgNDFxLTIzIC02NyAtMjMgLTEzMHpNNDUzIDY1OXEtNjggMCAtMTI5IC0yM2w0MCAtMTY1cTQzIDIwIDg5IDIwcTQ3IDAgOTAgLTIwbDQwIDE2NXEtNjEgMjMgLTEzMCAyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJpIiBkPSJNNDYwIDY5OXExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzcS0xNzMgMCAtMjk2LjUgMTIzdC0xMjMuNSAyOTd0MTIzLjUgMjk3dDI5Ni41IDEyM3pNNTE0IDU2OXEtMzEgLTEgLTQ5IC0yMnQtMTggLTQ1cTAgLTI1IDEzLjUgLTQwLjV0MzYuNSAtMTUuNWgxcTI5IDAgNDguNSAyMC41dDE5LjUgNDguNXEwIDIzIC0xMyAzN3EtMTUgMTcgLTM5IDE3ek01NjUgOThsMyAzbC0yIDRsLTE4IDM4bC01IC00IHEtMTQgLTE0IC0zNC41IC0yOHQtMjQuNSAtMTV2NXEwIDcgMyAyMGw0NiAxODhxNiAyNSA2IDU3cTAgMTggLTYgMzBxLTcgMTIgLTIyIDEycS0yNSAwIC03MS41IC0yOC41dC05MS41IC03MC41bC0zIC0zbDE2IC00NWw2IDRxMzUgMzEgNTUgMzlxMCAtNiAtMyAtMjFsLTQzIC0xODJxLTYgLTMwIC02IC02MHEwIC0yNSAxMCAtMzZxOSAtMTAgMjYgLTEwcTIzIDAgNzAuNSAyOXQ4OC41IDc0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI4NzciIGQ9Ik04MzUgMjMydi0xbDEgLTF2LTFxMTkgLTM1IDE5IC03OXEwIC0xOCAtNSAtNDNxLTEyIC00NiAtNDUgLTgwbC02NCAtNjNxLTUxIC01MSAtMTIzIC01MXQtMTIyIDUxbC03NyA3NmwtNDcgNDhsLTMzIDMzcS0zNyAzNyAtNDggOTFxLTIgMjAgLTIgMzFxMCAxNyAzIDM1bDMgMTJxNCAxNSAxNCAzNHYxcTEgMSAyLjUgNGwyLjUgNWwxIDJsMSAxcTEgMSAyLjUgMy41dDIuNSAzLjV2MWwyIDJxMSAxIDMgMy41dDMgMy41djFsMiAybDQgNHQ0IDUgbDI4IDI4bDQgLTVsNTcgLTU2cTAgLTEgMiAtM3QyIC0zdDEgLTMuNXQxIC0zLjVsLTI1IC0yNXEtMSAtMSAtMyAtMy41dC00IC00LjVxMCAtMSAtMSAtMnYtMXEtMiAtMiAtNCAtNnEtMSAwIC0xIC0xdC0xIC0ydC0xLjUgLTMuNXQtMC41IC0zLjVsLTEgLTF2LTJxLTQgLTkgLTQgLTIycTAgLTE1IDcgLTMycTQgLTggMTQgLTIwbDU3IC01N2w0MCAtMzlsNjAgLTYxcTIxIC0yMSA1MiAtMjFxMzIgMCA1MiAyMWw2NCA2NHExMiAxMiAxOCAyOSBxMyAxMSAzIDIzcTAgMTAgLTMgMjFxLTUgMTkgLTE4IDMxbC05OCA5OHExIDYgMSAxN3EwIDIxIC0zIDQwcS0xMiA2OCAtNTkgMTE2cTM5IC0xMiA3MSAtNDJsMiAtMmwxNTcgLTE1N3ExOCAtMTggMjkgLTM5cTAgLTEgMSAtMXpNNTM4IDQ0MXEzOSAtMzkgNDggLTkxcTMgLTE1IDMgLTMxcTAgLTExIC00IC0zNWwtMyAtMTJxLTMgLTEyIC0xMyAtMzRsLTEgLTFxLTEgLTEgLTIuNSAtNGwtMi41IC01bC0xIC0ybC0xIC0xcS0yIC00IC01IC03IGwtMSAtMXEtMSAtMSAtMSAtMnEtMyAtMyAtNSAtN2wtMSAtMWwtMiAtMnEtMiAtMyAtOCAtOWwtMjggLTI4bC00IDVsLTU3IDU2cS0xIDEgLTIgM3QtMiAzdC0xIDMuNXQtMSAzLjVsMjUgMjVxMSAxIDMgMy41dDQgNC41cTAgMSAwLjUgMXQwLjUgMXYxcTIgMiA0IDZsMSAxcTEgMSAxIDJxMiA0IDMgN3YxcTAgMSAxIDJxMyAxMSAzIDIycTAgMTUgLTcgMzJxLTQgOCAtMTQgMjBsLTU3IDU3bC0zOSAzOWwtNjEgNjFxLTIxIDIxIC01MiAyMSB0LTUyIC0yMWwtNjQgLTY0cS0xMiAtMTIgLTE4IC0yOXEtMyAtMTEgLTMgLTIzcTAgLTEwIDMgLTIxcTUgLTE5IDE4IC0zMWw5OCAtOThxLTEgLTYgLTEgLTE3cTAgLTIzIDQgLTQwcTEwIC02NSA1OCAtMTE2cS00MCAxMiAtNzEgNDJsLTIgMmwtMTU3IDE1N3EtMTggMTggLTI5IDM5cTAgMSAtMSAxdjFsLTEgMXYxcS0xOSAzOCAtMTkgNzlxMCAxOCA1IDQzcTEyIDQ2IDQ1IDgwbDY0IDYzcTUxIDUxIDEyMyA1MXQxMjIgLTUxbDc3IC03NiBsNDcgLTQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9ImsiIGhvcml6LWFkdi14PSI4OTYiIGQ9Ik02NTcgNjEwcTg5IDAgMTQ4LjUgLTUwLjV0NTkuNSAtMTU5LjVxMCAtNDkgLTI2IC0xMDF0LTUyIC03OWwtMjYgLTI4bC0zMTMgLTMxMmwtMzEzIDMxMmwtMTEgMTF0LTI1IDMwdC0zMiA0NnQtMjUgNTYuNXQtMTEgNjQuNXEwIDEwOSA1OSAxNTkuNXQxNDggNTAuNXE5MCAwIDE5MSAtMTA3bDE5IC0yMXE0IDUgMTEuNSAxMy41dDMxIDMxdDQ3IDM5dDU2LjUgMzAuNXQ2MyAxNHoiIC8+CjxnbHlwaCB1bmljb2RlPSJsIiBob3Jpei1hZHYteD0iOTQyIiBkPSJNMjc5IDcwMGg2MDV2LTEzM2gtNjA1djEzM3pNMjc5IDI4NHYxMzNoNjA1di0xMzNoLTYwNXpNMjc5IDB2MTMzaDYwNXYtMTMzaC02MDV6TTEyMiA3MDBxMjggMCA0Ny41IC0xOS41dDE5LjUgLTQ2LjVxMCAtMjggLTE5LjUgLTQ3LjV0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ny41cTAgMjcgMTkuNSA0Ni41dDQ2LjUgMTkuNXpNMTIyIDQxOHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDcuNXEwIC0yNyAtMTkuNSAtNDYuNSB0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ni41cTAgMjggMTkuNSA0Ny41dDQ2LjUgMTkuNXpNMTIyIDEzNHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDYuNXEwIC0yOCAtMTkuNSAtNDcuNXQtNDcuNSAtMTkuNXEtMjcgMCAtNDYuNSAxOS41dC0xOS41IDQ3LjVxMCAyNyAxOS41IDQ2LjV0NDYuNSAxOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Im0iIGhvcml6LWFkdi14PSI4MDgiIGQ9Ik03NzEgNjk4di04M3YtNTE0cS0xIC01MiAtNDYuNSAtODh0LTExMC41IC0zNnQtMTExIDM3dC00NiA4OXQ0NiA4OXQxMTEgMzdxMzYgMCA3MCAtMTN2MzA4bC0zNTIgLTg0di00OTVxLTEgLTUyIC00NyAtODguNXQtMTEwIC0zNi41cS02NSAwIC0xMTEgMzd0LTQ2IDkwcTAgNTIgNDYgODl0MTExIDM3cTM1IDAgNjkgLTEzdjUxM2gybDQzOCAxMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0ibiIgaG9yaXotYWR2LXg9Ijk1NiIgZD0iTTc1OSA3MDBxNTggMCA5OSAtNDF0NDEgLTk5di01NjFxMCAtNTggLTQxIC05OXQtOTkgLTQxaC01NjFxLTU4IDAgLTk5IDQxdC00MSA5OXY1NjFxMCA1OCA0MSA5OXQ5OSA0MWg1NjF6TTc5NCA0OTBoLTUxM3YtMTE3aDUxM3YxMTd6TTI1OSAyMTdoLTk2di0xMTRoOTZ2MTE0ek0xNjMgMjM4aDk2djExNGgtOTZ2LTExNHpNMjgxIDIxN3YtMTE0aDUxM3YxMTRoLTUxM3pNMjgxIDIzOGg1MTN2MTE0aC01MTN2LTExNHpNMjU5IDQ5MGgtOTYgdi0xMTdoOTZ2MTE3ek0xNjMgLTFxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDYxdjExN2gtOTZ2LTgyek03NTkgLTM2cTE0IDAgMjQuNSAxMC41dDEwLjUgMjQuNXY4MmgtNTEzdi0xMTdoNDc4eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSI5NDEiIGQ9Ik04NjcgNTQ1cTExIDAgMTggLTcuNXQ3IC0xNy41di01MjVxMCAtMTEgLTcgLTE4dC0xOCAtN2gtNzg0cS0xMSAwIC0xOCA3dC03IDE4djUyNXEwIDEwIDcgMTcuNXQxOCA3LjVoMzhsMjkgNTlxMTEgMjIgMzYgMjJoMTU4cTI1IDAgMzYgLTIybDI4IC01OWg0NTl6IiAvPgo8Z2x5cGggdW5pY29kZT0icCIgaG9yaXotYWR2LXg9Ijg1NSIgZD0iTTU0MiA1NDlsMTUzIC0xNTNsLTQ2MCAtNDYwdjB2MGwtMjI2IC03NGw3MyAyMjd2MHYwek0xODggNjVsMzc5IDM3OWwtMjUgMjZsLTM4MCAtMzgwek02OTQgNzAxbDE1NCAtMTUzbC0xMDEgLTEwMGwtMTUzIDE1M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJxIiBob3Jpei1hZHYteD0iOTEwIiBkPSJNODY1IDE2MHEwIC00MiAtMjYgLTc1dC02NiAtNDRxMTUgLTQzIDY2IC04MnExMiAtOCAtOSAtMTRxLTQ1IC0xMSAtMTE0IDIxcS01MiAyNSAtOTcgNzFoLTI5OXEtNDIgMCAtNzcgMjdxMzAgMTggNTYgNDNoMjc2cTc0IDAgMTI2LjUgNTIuNXQ1Mi41IDEyNi41djIzNXE0NyAtNSA3OSAtNDB0MzIgLTgzdi0yMzh6TTY5OCAyODZxMCAtNTIgLTM2IC04OHQtODcgLTM2aC0yOThxLTQ5IC01MCAtMTAwIC03MnQtOTAgLTIycS0zNCAwIC0zNCAxMSBxMCAzIDMgNXE1MCAzOCA2NiA4MnEtNDAgMTEgLTY2IDQ0dC0yNiA3NnYyMzdxMCA1MSAzNiA4Ny41dDg4IDM2LjVoNDIxcTUxIDAgODcgLTM2LjV0MzYgLTg3LjV2LTIzN3oiIC8+CjxnbHlwaCB1bmljb2RlPSJyIiBob3Jpei1hZHYteD0iOTAwIiBkPSJNNzI2IDI3OGwyNCAyNGw5MSA5MXYtMjYwcTAgLTEyOCAtMTI4IC0xMjhoLTUwOXYtMTA4bC0xNzEgMTcybDE3MSAxNzJ2LTExNXYtNmg0ODRxMTYgMCAyNyAxMXQxMSAyN3YxMjB6TTE3NCAzMTlsLTI0IC0yNGwtOTEgLTkxdjI2MHEwIDEyNyAxMjggMTI3aDUwOXYxMDhsMTcxIC0xNzFsLTE3MSAtMTcydjExNXY2aC00ODRxLTE2IDAgLTI3IC0xMS41dC0xMSAtMjcuNXYtMTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSI4NjQiIGQ9Ik04MTYgNHEyMyAtMjMgMjMgLTU0cTAgLTI5IC0yMCAtNDhxLTE5IC0xOSAtNDcgLTE5cS0zMiAwIC01NSAyM2wtMjE5IDIxOXEtNzQgLTQ4IC0xNjYgLTQ4cS0xMjkgMCAtMjIwLjUgOTEuNXQtOTEuNSAyMjAuNXQ5MS41IDIyMC41dDIyMC41IDkxLjV0MjIwLjUgLTkxLjV0OTEuNSAtMjIwLjVxMCAtOTAgLTQ3IC0xNjV6TTUwNiAzODlxMCA3MiAtNTEgMTIzdC0xMjMgNTF0LTEyMyAtNTF0LTUxIC0xMjN0NTEgLTEyM3QxMjMgLTUxIHQxMjMgNTF0NTEgMTIzeiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NjAgNjk5cTE3MyAwIDI5NiAtMTIzdDEyMyAtMjk2cTAgLTE3NCAtMTIzIC0yOTd0LTI5NiAtMTIzcS0xNzQgMCAtMjk3IDEyM3QtMTIzIDI5N3EwIDE3MyAxMjMgMjk2dDI5NyAxMjN6TTQ2MCAtMzVxMTMwIDAgMjIyIDkyLjV0OTIgMjIyLjV0LTkyIDIyMnQtMjIyIDkydC0yMjIuNSAtOTJ0LTkyLjUgLTIyMnQ5Mi41IC0yMjIuNXQyMjIuNSAtOTIuNXpNNjYzIDE4NnExNCAtMTAgNSAtMjRsLTI0IC0zOXEtNSAtNiAtMTEgLThoLTQgcS01IDAgLTEwIDNsLTE5MyAxMjlxLTEgMSAtMi41IDJ0LTIuNSAxcS01IDcgLTUgMTN2MjI4cTAgNyA1IDEycTcgNSAxMyA1aDQ2cTcgMCAxMiAtNXQ1IC0xMnYtMTkzeiIgLz4KPGdseXBoIHVuaWNvZGU9InUiIGhvcml6LWFkdi14PSI5NTUiIGQ9Ik02MCA2MzFoODM1di02NzNoLTgzNXY2NzN6TTgyNSAyOHY1MzRoLTY5NXYtNTM0aDY5NXpNMjI1IDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNNzMxIDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNMjI1IDE1OXExOCAwIDMwLjUgLTEzIHQxMi41IC0zMXQtMTIuNSAtMzAuNXQtMzAuNSAtMTIuNXQtMzEgMTIuNXQtMTMgMzAuNXQxMyAzMXQzMSAxM3pNNzMxIDE1OXExOCAwIDMwLjUgLTEzdDEyLjUgLTMxdC0xMi41IC0zMC41dC0zMC41IC0xMi41dC0zMSAxMi41dC0xMyAzMC41dDEzIDMxdDMxIDEzek01OTMgNDU3di0zMjVoLTIyOHYzMjVoMjI4ek01MzMgMTgxdjExOGgtMTA5di0xMThoMTA5eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSI5NDUiIGQ9Ik04NjYgNTU3cTEwIDAgMTcuNSAtN3Q3LjUgLTE3di00NzJxMCAtMTEgLTcuNSAtMTh0LTE3LjUgLTdoLTc4NnEtMTAgMCAtMTcuNSA3dC03LjUgMTh2NDcycTAgMTAgNy41IDE3dDE3LjUgN2gxNzNxMCAxIDEgMWwyMyA0OHE0IDkgMTUgMTUuNXQyMSA2LjVoMzE5cTI1IDAgMzYgLTIybDI0IC00OHYtMWgxNzR6TTQ3MiAxMjBxNzUgMCAxMjggNTIuNXQ1MyAxMjcuNXQtNTMgMTI4dC0xMjggNTNxLTc0IDAgLTEyNyAtNTN0LTUzIC0xMjggdDUzIC0xMjcuNXQxMjcgLTUyLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjkyNyIgZD0iTTg4NSAzOTdxMTYgLTEzNyAtOTQuNSAtMjQ3dC0yODIuNSAtMTI5cS02MiAtNyAtMTIwIDBxLTkyIC05NSAtMTk3IC0xMDZxLTQ3IC01IC01NiA4cS0zIDQgMyA4cTg4IDY2IDgwIDE0NXEtNjkgMzkgLTExMiA5OHQtNTEgMTMwcS0xNiAxMzYgOTQgMjQ2LjV0MjgyIDEzMC41cTE3MiAxOSAzMDQuNSAtNjR0MTQ5LjUgLTIyMHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ4IiBob3Jpei1hZHYteD0iOTQ5IiBkPSJNNTI2IDEwMHEyIDEwIDIgMTZsOTggOThsMTM5IC0xMzlsOTQgLTY5bDEwIC0zOGwtMTA0IC0xMDRsLTM3IDEwbC03MCA5NHpNNzU1IDIycS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMS41cTAgLTE4IDEyLjUgLTMwLjV0MzAuNSAtMTIuNXExOSAwIDMxLjUgMTIuNXQxMi41IDMwLjVxMCAxOSAtMTIuNSAzMS41dC0zMS41IDEyLjV6TTQ2OSAzNzFsLTk4IC05OHEtNiAwIC0xNiAtMmwtNzEgNzBxLTMyIC0xNSAtNTYgLTE1IHEtNzQgMCAtMTMzLjUgNjB0LTYwLjUgMTM0cTAgMSAxNyAxOHE2MyAtNjMgNzEgLTY4dDQ1IC01cTI5IDAgNjUuNSAzNnQzNi41IDY2cTAgMzYgLTYgNDUuNXQtNjcgNjkuNXExNSAxOCAxOCAxOHE3NCAxIDEzNCAtNTkuNXQ2MCAtMTM0LjVxMCAtMjcgLTE2IC01N3pNNzg2IDIwMnEwIDMgMC41IDcuNXQwLjUgMTguNXQtMS41IDI4dC01LjUgMzJ0LTEwLjUgMzMuNXQtMTkgMzAuNXQtMjguNSAyNGgtM3EtMTAgMCAtMzQgLTIybC0yMTggLTIxNyBxOCAtMjkgLTggLTQ3cS0yIC0xIC03IC02bC0yMDEgLTIwMXEtNSAtNSAtNiAtN3EtMTEgLTExIC0yOSAtMTFxLTQxIDAgLTc3IDQ4dC04IDc3cTMgMiA2IDZsMjAyIDIwMnE1IDMgNiA2cTExIDExIDI4IDExcTkgMCAxOSAtM2wxOTQgMTk0bDQgNnE0IDYgNS41IDh0NSA4LjV0NC41IDExdDEuNSAxMXQtMSAxMy41dC00LjUgMTRxLTE2IDI5IC02MCAzOGgtMXEtMTYgMCAtNTUgMzdsLTYgNnEtMTkgMTkgLTIwIDI1dDE4IDI3bDcyIDczIHExNyAxNyAyNiAxN3E2IDAgMjYgLTIwbDYgLTZxMzMgLTMzIDM3IC00OXE0IC0yMCAyNCAtNDZxMyAtNCAxOCAtNHQxOSAtNGwxMTkgLTExOXE3MyAtNzMgMzAgLTI1MmwtMTUgLTUweiIgLz4KPGdseXBoIHVuaWNvZGU9InkiIGhvcml6LWFkdi14PSI4OTciIGQ9Ik04NDMgMzU5cTkgLTEgMTUuNSAtOXQ2LjUgLTE3di05N3EwIC05IC02LjUgLTE3dC0xNS41IC05bC0xMjQgLTIzcS05IC0yIC0xMiAtOHQyIC0xNGw3MiAtMTA2cTEyIC0xOSAtNCAtMzVsLTY4IC02OHEtMTYgLTE2IC0zNCAtM2wtMTA2IDcxcS03IDUgLTE0LjUgMi41dC04LjUgLTExLjVsLTIzIC0xMjVxLTEgLTkgLTkgLTE1LjV0LTE3IC02LjVoLTk3cS05IDAgLTE3IDYuNXQtOSAxNS41bC0yMyAxMjVxLTEgOSAtOC41IDExLjUgdC0xNC41IC0yLjVsLTEwNSAtNzFxLTIwIC0xMiAtMzUgM2wtNjggNjhxLTE2IDE2IC00IDM1bDcyIDEwNnE1IDggMiAxNHQtMTIgOGwtMTI0IDIzcS05IDEgLTE1LjUgOXQtNi41IDE3djk3cTAgOSA2LjUgMTd0MTUuNSA5bDEyNCAyM3EyMiA2IDEwIDIzbC03MiAxMDZxLTExIDE5IDQgMzRsNjggNjhxMTYgMTYgMzUgNGwxMDUgLTcycTcgLTUgMTQuNSAtMnQ4LjUgMTJsMjMgMTI0cTEgOSA5IDE1LjV0MTcgNi41aDk3cTkgMCAxNyAtNi41IHQ5IC0xNS41bDIzIC0xMjRxMSAtOSA4LjUgLTEydDE0LjUgMmwxMDYgNzJxMTggMTIgMzQgLTRsNjggLTY4cTE1IC0xNSA0IC0zNGwtNzIgLTEwNnEtMTIgLTE3IDEwIC0yM3pNNDQ4IDEzNHE2MyAwIDEwNyA0NHQ0NCAxMDZ0LTQ0IDEwNi41dC0xMDcgNDQuNXEtNjIgMCAtMTA2IC00NC41dC00NCAtMTA2LjV0NDQgLTEwNnQxMDYgLTQ0eiIgLz4KPGdseXBoIHVuaWNvZGU9InoiIGhvcml6LWFkdi14PSI3MzYiIGQ9Ik00MzMgLTMzcTM0IDAgNTUgMjNsMTc2IDE3NmwzOSAtMzlxMTUgLTE1IDAgLTMxbC0yNTQgLTI1NHEtMTUgLTE2IC0zMSAwbC0zNTAgMzUwcS0xNSAxNSAtMTcgMzZsLTggOTdsMzM1IC0zMzVxMjMgLTIzIDU1IC0yM3pNMzUzIDY2NGwzNTAgLTM0OXExNiAtMTYgMCAtMzFsLTI1NCAtMjU1cS03IC02IC0xNiAtNnQtMTUgNmwtMzUwIDM1MHEtMTUgMTcgLTE3IDM3bC0xNyAxOTBxLTIgMjIgMTQgMzZsNDMgNDRxMTUgMTMgMzQgMTNoMyBsMTg5IC0xN3EyMiAtMiAzNiAtMTh6TTExNSA2MTdxLTE0IC0xMyAtMTQgLTMzdDE0IC0zM3ExMyAtMTMgMzMgLTEzdDMzIDEzdDEzIDMzdC0xMyAzM3EtMTQgMTQgLTMzIDE0dC0zMyAtMTR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieyIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTc1MSAyOTloLTI3OHYtNDA4aC0xODV2NDA4aC0yNzdsMzcwIDQyOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ8IiBob3Jpei1hZHYteD0iOTE1IiBkPSJNMTgyIDI4MHEtMyAtMTYgLTMgLTM1di02OXEtNTggMCAtOTguNSA0MC41dC00MC41IDk4LjV2MjQ0cTAgNTggNDAuNSA5OC41dDk4LjUgNDAuNWgzNDhxNTggMCA5OC41IC00MC41dDQwLjUgLTk4LjV2LTEwNWgtMTA0djEwNXEwIDE0IC0xMC41IDI0LjV0LTI0LjUgMTAuNWgtMzQ4cS0xNCAwIC0yNC41IC0xMC41dC0xMC41IC0yNC41di0yNDRxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDN6TTczNiAzODVxNTcgMCA5OCAtNDEgdDQxIC05OXYtMjQzcTAgLTU4IC00MSAtOTl0LTk4IC00MWgtMzQ4cS01OCAwIC05OC41IDQxdC00MC41IDk5djI0M3EwIDU4IDQwLjUgOTl0OTguNSA0MWgzNDh6TTc3MCAydjI0M3EwIDE1IC0xMCAyNXQtMjQgMTBoLTM0OHEtMTQgMCAtMjQuNSAtMTB0LTEwLjUgLTI1di0yNDNxMCAtMTUgMTAuNSAtMjV0MjQuNSAtMTBoMzQ4cTE0IDAgMjQgMTB0MTAgMjV6IiAvPgo8Z2x5cGggdW5pY29kZT0ifSIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTExIDMwMWgyNzd2NDA5aDE4NXYtNDA5aDI3OGwtMzcwIC00Mjd6IiAvPgo8Z2x5cGggdW5pY29kZT0ifiIgZD0iTTQ2MCA2OTlxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTYyOCAzNHYyMzJoLTE2NmwxNDUgMTY3aC0xMTJ2MTM1aC03NXYtMTM1aC0xMTJsMTQ0IC0xNjdoLTE2MnYtMjMyaDE0NWwtMzkgLTM5aDEyNmwtMzkgMzloMTQ1ek0zMzMgNzZ2MTQ4aDI1M3YtMTQ4aC0yNTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZmY7IiBob3Jpei1hZHYteD0iODMzIiAvPgo8Z2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+IA==') format('svg')}.x-tab .x-button-icon:before,.x-button .x-button-icon:before{font-family:"Pictos"}.x-img.x-img-image{text-align:center}.x-img.x-img-image img{width:auto;height:100%}.x-img.x-img-background{background-repeat:no-repeat;background-position:center;background-size:auto 100%}.x-map{background-color:#edeae2}.x-map *{-webkit-box-sizing:content-box;box-sizing:content-box}.x-mask-map{background:transparent !important}.x-map-container{position:absolute !important;top:0;left:0;right:0;bottom:0}.x-mask{min-width:8.5em;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;z-index:10;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0,0,0,0.3) center center no-repeat}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask.x-mask-transparent{background-color:transparent}.x-mask .x-mask-inner{position:relative;background:rgba(0,0,0,0.25);color:#fff;text-align:center;padding:.4em;font-size:.95em;font-weight:bold}.x-mask .x-loading-spinner-outer{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;min-width:8em;height:8em}.x-mask.x-indicator-hidden .x-mask-inner{padding-bottom:0 !important}.x-mask.x-indicator-hidden .x-loading-spinner-outer{display:none}.x-mask.x-indicator-hidden .x-mask-message{position:relative;bottom:.25em}.x-mask .x-mask-message{position:absolute;bottom:5px;color:#333;left:0;right:0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-mask.x-has-message .x-mask-inner{padding-bottom:2em}.x-mask.x-has-message .x-loading-spinner-outer{height:168px}.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el{visibility:collapse}.x-video{height:100%;width:100%;background-color:#000}.x-video>*{height:100%;width:100%;position:absolute}.x-video-ghost{-webkit-background-size:100% auto;background:#000 url() center center no-repeat}audio{width:100%}.x-msgbox{min-width:15em;max-width:20em;max-height:90%;margin:6px;border:1px solid #ccc}.x-msgbox .x-docking-vertical{overflow:hidden}.x-msgbox .x-toolbar.x-docked-top{border-bottom:0}.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-msgbox-text{text-align:center}.x-msgbox-buttons .x-button{min-width:4.5em}.x-progressindicator{width:50%;height:1.3em}.x-progressindicator .x-progressindicator-inner{background:#222222;padding:10px;height:100%;border-radius:20px;box-shadow:0px 5px 17px rgba(40,40,40,0.5);box-sizing:content-box;position:relative}.x-progressindicator .x-progressindicator-text{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;position:absolute;top:0px;left:0px;color:white;text-shadow:1px 1px 2px black}.x-progressindicator .x-progressindicator-bar{height:100%;width:0%;border-radius:10px}.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill{height:100%;width:100%;background-color:gray;border-radius:10px;-webkit-animation-name:progressIndicator;-moz-animation-name:progressIndicator;-ms-animation-name:progressIndicator;-o-animation-name:progressIndicator;animation-name:progressIndicator;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background-repeat:repeat-x;background-size:30px 30px;background-image:-webkit-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-moz-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-o-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-ms-linear-gradient(-45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}@-webkit-keyframes progressIndicator{to{background-position:30px}}@-moz-keyframes progressIndicator{to{background-position:30px}}@keyframes progressIndicator{to{background-position:30px}}.x-panel,.x-msgbox{position:relative}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{padding:6px;background-color:#ccc}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{z-index:1;background-color:#fff}.x-panel.x-floating>.x-dock,.x-msgbox>.x-dock,.x-form.x-floating>.x-dock{z-index:1}.x-panel.x-floating>.x-dock.x-sized,.x-msgbox>.x-dock.x-sized,.x-form.x-floating>.x-dock.x-sized{margin:6px}.x-sheet,.x-sheet-action{height:auto}.x-toolbar{position:relative;background-color:#eee;min-height:2.6em;overflow:hidden}.x-toolbar.x-docked-top{border-bottom:1px solid}.x-toolbar.x-docked-bottom{border-top:1px solid}.x-toolbar.x-docked-left{width:50px;height:auto;border-right:1px solid}.x-toolbar.x-docked-right{width:50px;height:auto;border-left:1px solid}.x-title{font-size:1.2em;text-align:center;font-weight:bold;max-width:100%}.x-title.x-title-align-left{padding-left:10px}.x-title.x-title-align-right{padding-right:10px}.x-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-navigation-bar .x-container{overflow:visible}.x-toolbar-inner .x-field .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-ie .x-toolbar-inner{height:100% !important}.x-toast{min-width:15em;max-width:20em;max-height:90%;margin:6px}.x-toast .x-toast-text{text-align:center}.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-menu{background:#eee}.x-carousel-inner{position:relative;overflow:hidden}.x-carousel-item,.x-carousel-item>*{position:absolute !important;width:100%;height:100%}.x-carousel-indicator{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-carousel-indicator span{display:block;width:10px;height:10px;margin:3px;background-color:#eee}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#ccc}.x-carousel-indicator-horizontal{width:100%}.x-carousel-indicator-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.x-android-3 .x-surface-wrap,.x-android-3 .x-surface-wrap>*{-webkit-perspective:1}.x-draw-component{position:relative}.x-draw-component .x-inner{overflow:hidden}.x-surface{position:absolute}.x-chart-watermark{opacity:0.5;z-index:9;right:0;bottom:0;background:rgba(0,0,0,0.5);color:white;padding:4px 6px;font-family:"Helvetica";font-size:12px;position:absolute;border-top-left-radius:4px;white-space:nowrap;-webkit-border-top-left-radius:4px}.x-legend .x-legend-inner .x-legend-container{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #ccc;background:#fff}.x-legend .x-legend-inner .x-legend-container .x-legend-item{padding:0.8em 1em 0.8em 1.8em;color:#333;background:rgba(255,255,255,0);max-width:20em;min-width:0;font-size:14px;line-height:14px;font-weight:bold;white-space:nowrap;position:relative}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);opacity:.3}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker{position:absolute;width:.8em;height:.8em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;-webkit-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;left:.7em;top:1em}.x-legend.x-docked-top .x-legend-item,.x-legend.x-docked-bottom .x-legend-item{border-right:1px solid rgba(204,204,204,0.5)}.x-legend.x-docked-top .x-legend-item:last-child,.x-legend.x-docked-bottom .x-legend-item:last-child{border-right:0}.x-legend.x-docked-left .x-legend-inner,.x-legend.x-docked-right .x-legend-inner{display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center}.x-chart-toolbar{position:absolute;z-index:9;display:-webkit-box;display:-moz-box;display:-ms-box;display:box;padding:.6em}.x-chart-toolbar .x-button{margin:.2em}.x-chart-toolbar[data-side=left],.x-chart-toolbar[data-side=right]{top:0;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}.x-chart-toolbar[data-side=left]{left:0}.x-chart-toolbar[data-side=right]{right:0}.x-chart-toolbar[data-side=top],.x-chart-toolbar[data-side=bottom]{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal;right:0}.x-chart-toolbar[data-side=top]{top:0}.x-chart-toolbar[data-side=bottom]{bottom:0;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}.x-tab .x-button-icon.list:before,.x-button .x-button-icon.list:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"l"}.x-tab .x-button-icon.expand:before,.x-button .x-button-icon.expand:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"`"}.x-dataview-inlineblock .x-dataview-item,.x-dataview-inlineblock .x-data-item{display:inline-block !important}.x-dataview-nowrap .x-dataview-container{white-space:nowrap !important}.x-dataview-nowrap .x-container.x-dataview{white-space:nowrap !important}.x-list{overflow:hidden}.x-list .x-scroll-scroller{max-width:100%}.x-list .x-list-inner{width:100% !important}.x-list.x-list-indexed .x-list-disclosure{margin-right:50px}.x-list .x-item-selected .x-list-disclosure{background-color:#fff}.x-list .x-list-scrolldock-hidden{display:none}.x-list .x-list-item{position:absolute !important;left:0;top:0;width:100%}.x-list .x-list-item>.x-dock{height:auto}.x-list .x-list-item .x-dock-horizontal{border-top:1px solid #ccc}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-color:#ccc}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background-color:#ddd}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:5px}.x-list .x-list-item.x-list-item-relative{position:relative !important}.x-list .x-list-header{background-color:#eee;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-weight:bold}.x-list .x-list-header.x-list-item-relative{position:relative !important}.x-list .x-list-disclosure{margin:5px 15px 5px 0;overflow:visible;width:20px;height:20px;border:1px solid #ccc;background-color:#eee}.x-list .x-list-item-tpl .x-list-disclosure{position:absolute;right:0px;top:0px}.x-list .x-list-emptytext{text-align:center;pointer-events:none;font-color:#333333;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-list.x-list-indexed .x-list-disclosure{margin-right:35px}.x-list .x-list-scrolldockitem{position:absolute !important;left:0;top:0;width:100%}.x-ie .x-list-grouped .x-translatable-container .x-list-item:before,.x-ie .x-list-grouped .x-translatable-container .x-list-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-list-header{position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-list-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,.x-list-grouped .x-list-item-tpl.x-list-header-wrap{border-top:0}.x-list-inlineblock .x-list-item{display:inline-block !important}.x-list-nowrap .x-list-inner{width:auto}.x-list-nowrap .x-list-container{white-space:nowrap !important}.x-list-item-dragging{border-bottom:1px solid #ccc;background:#fff !important;z-index:1}.x-indexbar-wrapper{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;pointer-events:none}.x-indexbar{pointer-events:auto;z-index:2;min-height:0 !important;height:auto !important;-webkit-box-flex:0 !important;-ms-flex:0 0 auto !important;flex:0 0 auto !important}.x-indexbar>div{font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-indexbar-vertical{width:15px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px}.x-indexbar-horizontal{height:15px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-phone.x-landscape .x-indexbar>div{font-size:0.38em;line-height:1em}.x-indexbar-pressed{background-color:#ccc}.x-form-label{display:none !important}.x-form-label span{font-weight:bold}.x-form-label-nowrap .x-form-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-field{display:flex;display:-webkit-box;display:-ms-flexbox}.x-field .x-field-input{position:relative;min-width:3.7em}.x-field .x-field-input,.x-field .x-input-el{width:100%}.x-field.x-field-labeled .x-form-label{display:block !important}.x-field .x-component-outer{position:relative}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-label-align-left .x-component-outer,.x-label-align-right .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-label-align-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-label-align-bottom{-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.x-input-el{display:block}.x-field-mask{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-ie .x-field.x-field-text .x-field-mask,.x-ie .x-field.x-field-textarea .x-field-mask,.x-ie .x-field.x-field-search .x-field-mask{z-index:-1}.x-field-required .x-form-label:after{content:"*";display:inline}.x-spinner .x-component-outer{display:flex;display:-webkit-box;display:-ms-flexbox}.x-spinner .x-component-outer>*{width:auto}.x-spinner .x-field-input{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-spinner .x-field-input .x-input-el{width:100%;text-align:center}.x-spinner .x-field-input input::-webkit-outer-spin-button,.x-spinner .x-field-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-spinner .x-spinner-button{text-align:center;border:1px solid #ccc !important;background-color:#eee}.x-spinner.x-field-grouped-buttons .x-input-el{text-align:left}.x-select-overlay .x-list-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.x-field-number input::-webkit-outer-spin-button,.x-field-number input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-field-input .x-clear-icon,.x-field-input .x-reveal-icon{display:none;width:10px;height:10px;background-color:#ccc;position:absolute;top:50%;right:0}.x-field-clearable .x-clear-icon{display:block}.x-field-clearable .x-field-input{padding-right:10px}.x-field-revealable .x-reveal-icon{display:block}.x-field-revealable .x-field-input{padding-right:10px}.x-field-clearable.x-field-revealable .x-reveal-icon{right:20px}.x-android .x-input-el{-webkit-text-fill-color:#000}.x-android .x-empty .x-input-el{-webkit-text-fill-color:#A9A9A9}.x-android .x-item-disabled .x-input-el{-webkit-text-fill-color:#b3b3b3}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ccc;overflow:hidden}.x-form-fieldset .x-dock .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-form-fieldset-title{font-weight:bold}.x-form-fieldset-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-form-fieldset-instructions{text-align:center}.x-ie .x-field-select .x-field-mask{z-index:3}.x-sheet.x-picker{padding:0}.x-sheet.x-picker .x-sheet-inner{background-color:#fff;overflow:hidden}.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body{border-left:1px solid #999999;border-right:1px solid #ACACAC}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body{border-left:0}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body{border-left:0;border-right:0}.x-picker-slot .x-scroll-view{z-index:2;position:relative}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none}.x-picker-slot-title{position:relative;z-index:2}.x-picker-slot-title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold}.x-picker-slot .x-dataview-inner{width:100% !important}.x-picker-slot .x-dataview-item{vertical-align:middle;height:30px;line-height:30px}.x-picker-slot .x-dataview-item.x-item-selected{font-weight:bold}.x-picker-slot .x-picker-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-ie .x-picker-item{cursor:default}.x-ie .x-picker-item::before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;clear:both}.x-list-paging.x-loading .x-loading-spinner{display:block}.x-list-paging.x-loading .x-list-paging-msg{display:none}.x-list-pullrefresh{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;top:-5em;left:0;width:100%;height:4.5em}.x-list-pullrefresh .x-loading-spinner{display:none}.x-list-pullrefresh-arrow{width:2.5em;height:4.5em;background-color:#bbb}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;text-align:center}.x-list-pullrefresh-updated{text-align:center}.x-list-pullrefresh-loading *.x-loading-spinner{display:block}.x-list-pullrefresh-loading .x-list-pullrefresh-arrow{display:none}.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner{display:none}.x-slider,.x-toggle{position:relative;height:16px;min-height:0;min-width:0}.x-slider>*,.x-toggle>*{position:absolute;width:100%;height:100%}.x-thumb{position:absolute;height:16px;width:10px;border:1px solid #ccc;background-color:#ddd}.x-slider:before{content:'';position:absolute;width:auto;height:8px;top:4px;left:0;right:0;margin:0 5px;background-color:#eee}.x-toggle{border:1px solid #ccc;width:30px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-toggle-on{background-color:#eee}.x-tab{z-index:1;overflow:visible !important;background-color:#eee;border:1px solid #ccc}.x-tabbar{border-color:#ccc;border-style:solid;border-width:0;background-color:#eee}.x-tabbar.x-docked-top{border-bottom-width:1px}.x-tabbar.x-docked-top .x-tab .x-button-icon{position:relative}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown{display:inline-block}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden{display:none}.x-tabbar.x-docked-bottom{border-top-width:1px}.x-tabbar.x-docked-bottom .x-tab .x-button-icon{display:block;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown{visibility:visible}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden{visibility:hidden}.x-tab{position:relative;min-width:3.3em}.x-table-inner{display:table !important;width:100% !important;height:100% !important}.x-table-inner.x-fixed-layout{table-layout:fixed !important}.x-table-row{display:table-row !important}.x-table-cell{display:table-cell !important;vertical-align:middle}.x-orientation-inspector{display:none;content:"landscape"}@media (orientation: portrait){.x-orientation-inspector{content:"portrait"}}.x-grid .x-grid-header-container{border-width:0 1px 1px 0;border-style:solid;height:65px;font-weight:bold;overflow:hidden}.x-grid .x-grid-header-container .x-grid-column{display:inline-block}.x-grid .x-grid-header-container .x-grid-header-container-inner{width:100000px;position:absolute;top:0;left:0}.x-grid .x-grid-column{height:64px;border-width:1px 1px 0 1px;border-style:solid;line-height:64px;vertical-align:middle;padding:0 8px}.x-grid .x-grid-column .x-innerhtml{display:inline-block;width:auto;position:relative}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{position:absolute;width:12px;line-height:64px;top:0;height:64px;font-family:'Pictos';font-size:12px}.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after,.x-grid .x-grid-column.x-column-align-center .x-innerhtml:after{right:-16px}.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after{left:-16px}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after{content:"{"}.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{content:"}"}.x-grid .x-grid-headergroup{display:inline-block;position:relative;vertical-align:bottom;height:64px;padding-top:32px}.x-grid .x-grid-headergroup .x-inner>.x-innerhtml{height:32px;line-height:28px;vertical-align:middle;display:block;position:absolute;width:100%;top:0;left:0;text-align:center;border-style:solid;border-width:1px;overflow:hidden;text-overflow:ellipsis}.x-grid .x-grid-headergroup .x-grid-column{height:32px !important;line-height:27px !important;font-size:0.7em}.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after{line-height:27px;height:27px}.x-grid .x-grid-row{position:absolute;left:0;top:0;border-width:0 0 1px 0;border-style:solid}.x-grid .x-grid-cell{display:inline-block;vertical-align:middle;line-height:60px;padding:0 8px;height:60px;overflow:hidden;border-width:0 1px 0 0}.x-grid .x-grid-cell-align-center,.x-grid .x-grid-column-align-center{text-align:center}.x-grid .x-grid-cell-align-right,.x-grid .x-grid-column-align-right{text-align:right}.x-grid .x-grid-viewoptions{border-width:0 0 0 1px;border-style:solid}.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml{padding:0px !important}.x-grid .x-grid-viewoptions .x-column-options-header{height:32px;line-height:28px;vertical-align:middle;border-style:solid;border-width:1px;overflow:hidden;padding-left:10px}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,.x-grid .x-grid-viewoptions .x-column-options-groupindicator,.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:40px;height:48px;position:absolute;bottom:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{position:absolute;top:0;left:0;height:100%;width:100%;text-align:center;font-size:24px;font-family:'Pictos';line-height:48px;content:"l";vertical-align:middle}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle{left:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after{line-height:54px}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator{right:0}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after{font-size:30px;line-height:54px;content:"E"}.x-grid .x-grid-viewoptions .x-column-options-groupindicator{right:40px}.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after{font-size:30px;line-height:54px;content:"g"}.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:30px;left:40px}.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{line-height:52px;content:"o"}.x-grid .x-grid-viewoptions .x-column-options-leaf:after{content:"F"}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl{background:transparent}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml{background:transparent}.x-grid .x-grid-viewoptions .x-column-options-text{display:block;height:30px;margin:10px 50px 5px 80px;position:relative;vertical-align:middle;line-height:28px}.x-grid .x-grid-columnoptions{border-width:0 0 1px}.x-grid .x-grid-multiselection-column{position:relative;padding:0}.x-grid .x-grid-multiselection-column:after{position:absolute;top:0;left:0;width:60px;height:64px;line-height:64px;font-family:'Pictos';font-size:26px;text-align:center;content:"2"}.x-grid .x-grid-multiselection-cell{position:relative;padding:0}.x-grid .x-grid-multiselection-cell:after{position:absolute;top:0;left:0;width:60px;height:60px;line-height:60px;font-family:'Pictos';font-size:20px;text-align:center;content:"_"}.x-grid .x-item-selected .x-grid-multiselection-cell:after{content:"3"}.x-grid .x-grid-pagingtoolbar>.x-body{padding:0 30px 0 50px}.x-grid .x-grid-pagingtoolbar-currentpage{position:relative;height:22px}.x-grid .x-grid-pagingtoolbar-currentpage span{position:absolute;right:0;top:0;line-height:22px;height:22px}.x-grid .x-grid-summaryrow{height:32px;font-size:0.8em;position:relative}.x-grid .x-grid-summaryrow .x-grid-cell{height:32px;line-height:30px;border-width:0 0 1px;border-style:solid}.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after{content:''}.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before,.x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-grid-header{line-height:44px;font-weight:bold;position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-grid-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap{border-top:0}.x-scroll-view{position:relative;display:block;overflow:hidden}.x-scroll-container{position:absolute;width:100%;height:100%}.x-scroll-scroller{position:absolute;min-width:100%;min-height:100%;height:auto !important;width:auto !important}.x-scroll-stretcher{position:absolute;visibility:hidden}.x-scroll-bar-grid-wrapper{position:absolute;width:100%;height:100%}.x-scroll-bar-grid{display:table;width:100%;height:100%}.x-scroll-bar-grid>*{display:table-row}.x-scroll-bar-grid>*>*{display:table-cell}.x-scroll-bar-grid>:first-child>:first-child{width:100%;height:100%}.x-scroll-bar-grid>:first-child>:nth-child(2){padding:3px 3px 0 0}.x-scroll-bar-grid>:nth-child(2)>:first-child{padding:0 0 3px 3px}.x-scroll-bar{position:relative;overflow:hidden}.x-scroll-bar-stretcher{position:absolute;visibility:hidden;width:100%;height:100%}.x-scroll-bar-x{width:100%}.x-scroll-bar-x>.x-scroll-bar-stretcher{width:300%}.x-scroll-bar-x.active{height:6px}.x-scroll-bar-y{height:100%}.x-scroll-bar-y>.x-scroll-bar-stretcher{height:300%}.x-scroll-bar-y.active{width:6px}.x-scroll-indicator{background:#333;position:absolute;z-index:3}.x-scroll-indicator-x{height:100%}.x-scroll-indicator-y{width:100%}.x-scroll-indicator.rounded{background:none}.x-scroll-indicator.rounded>*{position:absolute;background-color:#333}.x-scroll-indicator.rounded>:nth-child(2){-webkit-transform-origin:0% 0%;background:none;content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-light>*{background-color:#eee}.x-scroll-indicator.rounded.x-scroll-indicator-light>:nth-child(2){content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-y>*{width:100%}.x-scroll-indicator.rounded.x-scroll-indicator-y>:first-child{height:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:nth-child(2){height:1px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:last-child{height:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>*{height:100%}.x-scroll-indicator.rounded.x-scroll-indicator-x>:first-child{width:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:nth-child(2){width:1px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:last-child{width:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-list-light .x-scroll-indicator,.x-dataview-light .x-scroll-indicator{background:#fff}.x-ios .x-scroll-scroller{-webkit-transform:translate3d(0, 0, 0)}.x-ie .x-scroll-bar-y{position:absolute;margin-left:-5px}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:.5em .5em;transform-origin:.5em .5em}.x-loading-spinner>span,.x-loading-spinner>span:before,.x-loading-spinner>span:after{display:block;position:absolute;width:.1em;height:.25em;top:0;-webkit-transform-origin:.05em .5em;transform-origin:.05em .5em;content:" "}.x-loading-spinner>span{left:50%;margin-left:-0.05em}.x-loading-spinner>span.x-loading-top{background-color:rgba(170,170,170,0.99)}.x-loading-spinner>span.x-loading-top::after{background-color:rgba(170,170,170,0.9)}.x-loading-spinner>span.x-loading-left::before{background-color:rgba(170,170,170,0.8)}.x-loading-spinner>span.x-loading-left{background-color:rgba(170,170,170,0.7)}.x-loading-spinner>span.x-loading-left::after{background-color:rgba(170,170,170,0.6)}.x-loading-spinner>span.x-loading-bottom::before{background-color:rgba(170,170,170,0.5)}.x-loading-spinner>span.x-loading-bottom{background-color:rgba(170,170,170,0.4)}.x-loading-spinner>span.x-loading-bottom::after{background-color:rgba(170,170,170,0.35)}.x-loading-spinner>span.x-loading-right::before{background-color:rgba(170,170,170,0.3)}.x-loading-spinner>span.x-loading-right{background-color:rgba(170,170,170,0.25)}.x-loading-spinner>span.x-loading-right::after{background-color:rgba(170,170,170,0.2)}.x-loading-spinner>span.x-loading-top::before{background-color:rgba(170,170,170,0.15)}.x-loading-spinner>span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg)}.x-loading-spinner>span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg)}.x-loading-spinner>span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg)}.x-loading-spinner>span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg)}.x-loading-spinner>span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg)}.x-loading-spinner>span::after{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);-ms-transform:rotate(-30deg)}.x-loading-spinner{-webkit-animation-name:x-loading-spinner-rotate;-webkit-animation-duration:.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-name:x-loading-spinner-rotate;animation-duration:.5s;animation-timing-function:linear;animation-iteration-count:infinite}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-button{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;min-height:1.8em;padding:.3em .6em}.x-button,.x-toolbar .x-button{border:1px solid #999;border-top-color:#a6a6a6;background-color:#ccc;color:#000}.x-button.x-button-back:before,.x-button.x-button-forward:before,.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#999}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after,.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:none;background-color:#ccc;background-image:-webkit-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-moz-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-o-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-ms-linear-gradient(to bottom, #f2f2f2,#d9d9d9 3%,#bfbfbf)}.x-button.x-button-pressing,.x-button.x-button-pressing:after,.x-button.x-button-pressed,.x-button.x-button-pressed:after,.x-button.x-button-active,.x-button.x-button-active:after,.x-toolbar .x-button.x-button-pressing,.x-toolbar .x-button.x-button-pressing:after,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-pressed:after,.x-toolbar .x-button.x-button-active,.x-toolbar .x-button.x-button-active:after{background-image:none;background-color:#c4c4c4;background-image:-webkit-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-moz-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-o-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-ms-linear-gradient(to bottom, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6)}.x-button .x-button-icon{width:1.5em;height:1.5em}.x-button .x-button-icon:before{font-size:1.6em;line-height:1em}.x-button.x-item-disabled .x-button-label,.x-button.x-item-disabled .x-badge,.x-button.x-item-disabled .x-button-icon{opacity:.5}.x-button-round{-moz-border-radius:.9em;-webkit-border-radius:.9em;border-radius:.9em}.x-ie .x-button{height:0px}.x-ie .x-button .x-button-label,.x-ie .x-button .x-badge{overflow:visible}.x-iconalign-left .x-button-label,.x-iconalign-left .x-badge{margin-left:.6em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-badge{margin-right:.6em}.x-iconalign-top,.x-iconalign-bottom{padding-top:.2em !important;padding-bottom:.2em !important}.x-button-label,.x-badge,.x-hasbadge .x-badge{font-weight:bold;line-height:1.2em;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;font-size:1em}.x-toolbar .x-button{margin:6px .2em;padding:0 .6em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge{font-size:.7em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge,.x-toolbar .x-button .x-hasbadge .x-badge{line-height:1.6em}.x-toolbar .x-button .x-button-icon:before{font-size:1.3em;line-height:1.3em}.x-ie .x-toolbar .x-button .x-button-icon::before{font-size:.6em;line-height:1em}.x-button-small,.x-toolbar .x-button-small{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button-small .x-badge{font-size:.6em}.x-button-small .x-button-icon,.x-toolbar .x-button-small .x-button-icon{width:.75em;height:.75em}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.7em;z-index:1}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-button-back:before,.x-webkit .x-button-back:after{content:'';position:absolute;width:15px;height:auto;top:-2px;left:auto;bottom:-2px;z-index:2;-webkit-mask:4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:15px 100%;overflow:hidden}.x-webkit .x-button-back,.x-webkit .x-toolbar .x-button-back{margin-left:.77217em;padding-left:.4em}.x-webkit .x-button-back:before,.x-webkit .x-toolbar .x-button-back:before{left:-15px}.x-webkit .x-button-back:after,.x-webkit .x-toolbar .x-button-back:after{left:-14px}.x-webkit .x-button-forward,.x-webkit .x-toolbar .x-button-forward{margin-right:.78217em;padding-right:.4em}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:after{-webkit-mask:-4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:15px 100%}.x-webkit .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:before{right:-15px}.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:after{right:-14px}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;min-height:0;text-shadow:none;line-height:auto;height:1.9em;padding:0 0.5em;-moz-border-radius:none;-webkit-border-radius:none;border-radius:none}.x-button.x-button-plain>*,.x-toolbar .x-button.x-button-plain>*{overflow:visible}.x-button.x-button-plain.x-button-pressing,.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressing,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;background-image:-webkit-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-moz-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-ms-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px)}.x-segmentedbutton .x-button{margin:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-segmentedbutton .x-button.x-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-segmentedbutton .x-button.x-last{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-segmentedbutton .x-button:not(.x-first){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{border-color:#900;min-width:2em;line-height:1.2em;top:-.2em;padding:.1em .3em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;color:#fcc;background-image:none;background-color:#c00;background-image:-webkit-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-moz-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-o-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-ms-linear-gradient(to bottom, #ff1a1a,#e60000 3%,#b30000);-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;-webkit-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;background-image:none;background-color:#656565}.x-panel.x-floating.x-floating-light,.x-msgbox.x-floating-light,.x-form.x-floating.x-floating-light{background-image:none;background-color:#cbcbcb}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-webkit .x-anchor{position:absolute;overflow:hidden}.x-webkit .x-anchor.x-anchor-top{margin-top:-.68em;margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-bottom{margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-left{margin-left:-.6655em;margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-webkit .x-anchor.x-anchor-right{margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-floating.x-panel-light:after{background-color:#cbcbcb}.x-sheet,.x-picker,.x-sheet-action{padding:.7em;border-top:1px solid #7f7f7f;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-sheet-inner>.x-button,.x-sheet-action-inner>.x-button{margin-bottom:.5em}.x-sheet-inner>.x-button:last-child,.x-sheet-action-inner>.x-button:last-child{margin-bottom:0}.x-msgbox{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-msgbox .x-icon{margin:0 0.8em 0 0.5em;background:#fff;-webkit-mask-size:100%}.x-msgbox .x-msgbox-info{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-warning{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-question{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-error{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC')}.x-msgbox .x-title{font-size:.9em;line-height:1.4em}.x-msgbox .x-body{background:transparent !important}.x-msgbox .x-toolbar{background:transparent none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-msgbox .x-toolbar.x-docked-top{height:1.3em}.x-msgbox .x-field{min-height:2em;background:#fff;-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em}.x-msgbox .x-form-field{min-height:1.5em;padding-right:0 !important;-webkit-appearance:none}.x-msgbox .x-field-input{padding-right:2.2em}.x-msgbox-text{padding:6px 0;line-height:1.4em}.x-msgbox-buttons{padding:0.4em 0;height:auto}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-toolbar{padding:0 .2em}.x-toolbar.x-docked-left{width:7em;padding:.2em}.x-toolbar.x-docked-right{width:7em;padding:.2em}.x-title{line-height:2.1em;font-size:1.2em;margin:0 0.3em;padding:0 .3em}.x-spinner .x-input-el,.x-field-select .x-input-el{-webkit-text-fill-color:#000;-webkit-opacity:1}.x-spinner.x-item-disabled .x-input-el,.x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:currentcolor}.x-toolbar .x-field-select .x-input-el{-webkit-text-fill-color:#fff}.x-toolbar .x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:rgba(255,255,255,0.6)}.x-toolbar .x-form-field-container{padding:0 .3em}.x-toolbar .x-slider-field .x-component-outer,.x-toolbar .x-toggle-field .x-component-outer{padding:0em .3em}.x-toolbar .x-field{width:13em;padding:.5em;min-height:0;border-bottom:0;background:transparent}.x-toolbar .x-field .x-clear-icon{background-size:50% 50%;right:-0.8em;margin-top:-1.06em}.x-toolbar .x-field-input{padding-right:1.6em !important}.x-toolbar .x-field-textarea .x-component-outer,.x-toolbar .x-field-text .x-component-outer,.x-toolbar .x-field-number .x-component-outer,.x-toolbar .x-field-search .x-component-outer{background-color:#fff;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset}.x-toolbar .x-form-label{background:transparent;border:0;padding:0;line-height:1.4em}.x-toolbar .x-form-field{height:1.6em;color:#6e6e6e;background:transparent;min-height:0;-webkit-appearance:none;padding:0em .3em;margin:0}.x-toolbar .x-form-field:focus{color:#000}.x-toolbar .x-field-select .x-component-outer,.x-toolbar .x-field-search .x-component-outer{-moz-border-radius:.8em;-webkit-border-radius:.8em;border-radius:.8em}.x-toolbar .x-field-search .x-field-input{background-position:.5em 50%}.x-toolbar .x-field-select{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-form-field{height:1.4em}.x-toolbar .x-field-select{background:transparent}.x-toolbar .x-field-select .x-component-outer:after{right:.4em}.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after{opacity:.6}.x-toolbar .x-field-select .x-component-outer:before{width:3em;border-left:none;-moz-border-radius-topright:.8em;-webkit-border-top-right-radius:.8em;border-top-right-radius:.8em;-moz-border-radius-bottomright:.8em;-webkit-border-bottom-right-radius:.8em;border-bottom-right-radius:.8em;-webkit-mask:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');-webkit-mask-position:right top;-webkit-mask-repeat:repeat-y;-webkit-mask-size:3em 0.05em}.x-toolbar .x-field-select .x-input-text{color:#fff}.x-android .x-field-search .x-field-input{padding-left:.2em !important;padding-right:2.2em !important}.x-toast{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-toast .x-toast-text{padding:6px 0;line-height:1.4em}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-menu{padding:.7em;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9))}.x-menu .x-button{margin-bottom:.7em}.x-menu .x-button:last-child{margin-bottom:0}.x-form .x-scroll-container{background-color:#eee}.x-form .x-toolbar .x-scroll-container{background-color:transparent}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;padding:.6em;background-color:#f7f7f7;color:#080808}.x-form-label span{font-size:.8em}.x-form-fieldset{margin:.5em .5em 1.5em}.x-form-fieldset .x-form-label{border-top:1px solid #fff}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ddd;background:#fff;padding:0;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-form-fieldset .x-field{border-bottom:1px solid #ddd;background:transparent}.x-form-fieldset .x-field:first-child{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-form-fieldset .x-field:last-child{border-bottom:0;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#333;margin:1em .7em 0.3em;color:#333}.x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#333;color:gray;margin:1em .7em 0.3em;font-size:.8em}.x-label-align-left:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em}.x-label-align-left:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-label-align-right:first-child .x-form-label{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-right:last-child{border-bottom:0}.x-label-align-right:last-child .x-form-label{-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-label-align-top:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-bottom:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-field{min-height:2.5em;background:#fff}.x-field:last-child{border-bottom:0}.x-field-label{background-color:#f7f7f7;color:#080808}.x-field-input .x-clear-icon{background:url('data:image/png;base64,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') no-repeat;background-position:center center;background-size:55% 55%;width:2.2em;height:2.2em;margin:.5em;margin-top:-1.1em;right:-.5em}.x-field-clearable .x-field-input{padding-right:2.2em}.x-input-el{padding:.4em;min-height:2.5em;border-width:0;-webkit-appearance:none}.x-ie .x-input-el{background:transparent}.x-item-disabled .x-form-label,.x-item-disabled input,.x-item-disabled .x-input-el,.x-item-disabled .x-spinner-body,.x-item-disabled select,.x-item-disabled textarea,.x-item-disabled .x-field-clear-container{color:#b3b3b3;pointer-events:none}.x-item-disabled .x-form-label{color:#aaa}.x-item-disabled .x-form-label:after{color:#666 !important}.x-checkmark-base,.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after,.x-select-overlay .x-item-selected.x-list-item::after{position:absolute;top:0;right:10px;bottom:0;content:'3';font-family:'Pictos';font-size:1.6em;text-align:right;line-height:1.6em}.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after{color:#ddd}.x-input-checkbox,.x-input-radio{visibility:hidden}.x-input-el:checked+.x-field-mask::after{color:#688AD2}.x-item-disabled.x-field-checkbox .x-input-checkbox:checked+.x-field-mask::after{color:#aebcd9}.x-field-radio .x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0}.x-field-radio .x-field-mask::after{content:'';position:absolute;width:16px;height:16px;top:16px;left:auto;right:16px;background-color:#d0d0d0;-moz-border-radius:16px;-webkit-border-radius:16px;border-radius:16px}.x-field-radio .x-field-mask::before{content:'';position:absolute;width:26px;height:26px;top:11px;left:auto;right:11px;background-color:#ddd;-moz-border-radius:26px;-webkit-border-radius:26px;border-radius:26px}.x-input-radio:checked+.x-field-mask::after{background:#688AD2}.x-item-disabled.x-field-radio .x-input-radio:checked+.x-field-mask::after{background:#aebcd9}.x-field-search .x-field-input{position:relative}.x-field-search .x-field-input:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"s"}.x-field-search .x-field-input:before{color:#ccc;top:.7em;left:.5em;font-size:1.1em;right:auto}.x-toolbar .x-field-search .x-field-input:before{top:.3em}.x-field-search .x-field-input .x-form-field{margin-left:1em}.x-webkit .x-selectmark-base,.x-webkit .x-field-select .x-component-outer:after,.x-field-select .x-webkit .x-component-outer:after{content:'';position:absolute;width:1em;height:1em;top:50%;left:auto;right:.7em;-webkit-mask-size:1em;-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');margin-top:-.5em}.x-field-select{position:relative;z-index:1}.x-field-select .x-component-outer:after{z-index:2;background-color:#ddd}.x-field-select .x-component-outer:before,.x-field-select .x-component-outer:after{pointer-events:none;position:absolute;display:block}.x-select-overlay .x-list-item-label{height:2.6em}.x-select-overlay .x-item-selected .x-list-label{margin-right:2.6em}.x-select-overlay .x-item-selected.x-list-item::after{color:#ddd}.x-spinner .x-field-input .x-input-el{-webkit-text-fill-color:#000}.x-spinner.x-item-disabled .x-input-el{-webkit-text-fill-color:#B3B3B3}.x-spinner.x-item-disabled .x-spinner-button{color:#aaa !important}.x-spinner.x-item-disabled .x-spinner-button,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button{border:1px solid #c4c4c4;border-top-color:#d0d0d0;background-color:#f7f7f7;color:#1e1e1e}.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before,.x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before{background:#c4c4c4}.x-spinner.x-item-disabled .x-spinner-button,.x-spinner.x-item-disabled .x-spinner-button.x-button-back:after,.x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after{background-image:none;background-color:#f7f7f7;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#eaeaea);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#eaeaea);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#eaeaea);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#eaeaea)}.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing,.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after,.x-spinner.x-item-disabled .x-spinner-button.x-button-pressed,.x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after,.x-spinner.x-item-disabled .x-spinner-button.x-button-active,.x-spinner.x-item-disabled .x-spinner-button.x-button-active:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active,.x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after{background-image:none;background-color:#efefef;background-image:-webkit-linear-gradient(top, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0);background-image:-moz-linear-gradient(top, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0);background-image:-o-linear-gradient(top, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0);background-image:-ms-linear-gradient(to bottom, #d5d5d5,#e2e2e2 10%,#efefef 65%,#f0f0f0)}.x-spinner .x-spinner-button{margin-top:.25em;margin-bottom:.25em;width:2em;padding:.23em 0 .27em;font-weight:bold;text-align:center;border:1px solid #ddd !important;-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em}.x-spinner .x-spinner-button,.x-toolbar .x-spinner .x-spinner-button{border:1px solid #b7b7b7;border-top-color:#c4c4c4;background-color:#eaeaea;color:#111}.x-spinner .x-spinner-button.x-button-back:before,.x-spinner .x-spinner-button.x-button-forward:before,.x-toolbar .x-spinner .x-spinner-button.x-button-back:before,.x-toolbar .x-spinner .x-spinner-button.x-button-forward:before{background:#b7b7b7}.x-spinner .x-spinner-button,.x-spinner .x-spinner-button.x-button-back:after,.x-spinner .x-spinner-button.x-button-forward:after,.x-toolbar .x-spinner .x-spinner-button,.x-toolbar .x-spinner .x-spinner-button.x-button-back:after,.x-toolbar .x-spinner .x-spinner-button.x-button-forward:after{background-image:none;background-color:#eaeaea;background-image:-webkit-linear-gradient(top, #ffffff,#f7f7f7 3%,#dddddd);background-image:-moz-linear-gradient(top, #ffffff,#f7f7f7 3%,#dddddd);background-image:-o-linear-gradient(top, #ffffff,#f7f7f7 3%,#dddddd);background-image:-ms-linear-gradient(to bottom, #ffffff,#f7f7f7 3%,#dddddd)}.x-spinner .x-spinner-button.x-button-pressing,.x-spinner .x-spinner-button.x-button-pressing:after,.x-spinner .x-spinner-button.x-button-pressed,.x-spinner .x-spinner-button.x-button-pressed:after,.x-spinner .x-spinner-button.x-button-active,.x-spinner .x-spinner-button.x-button-active:after,.x-toolbar .x-spinner .x-spinner-button.x-button-pressing,.x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after,.x-toolbar .x-spinner .x-spinner-button.x-button-pressed,.x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after,.x-toolbar .x-spinner .x-spinner-button.x-button-active,.x-toolbar .x-spinner .x-spinner-button.x-button-active:after{background-image:none;background-color:#e2e2e2;background-image:-webkit-linear-gradient(top, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3);background-image:-moz-linear-gradient(top, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3);background-image:-o-linear-gradient(top, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3);background-image:-ms-linear-gradient(to bottom, #c9c9c9,#d5d5d5 10%,#e2e2e2 65%,#e3e3e3)}.x-spinner .x-spinner-button-down{margin-left:.25em}.x-spinner .x-spinner-button-up{margin-right:.25em}.x-spinner.x-field-grouped-buttons .x-spinner-button-down{margin-right:.5em}.x-android .x-spinner-button{padding:.40em 0 .11em !important}.x-ie .x-spinner .x-field-input .x-input-el:disabled{color:#000}.x-list{background-color:#f7f7f7}.x-list .x-list-disclosure{position:relative;overflow:visible;border:0;-moz-border-radius:32px;-webkit-border-radius:32px;border-radius:32px;background-image:none;background-color:#5e86dc;background-image:-webkit-linear-gradient(top, #9db6ea,#7396e0 3%,#4977d7);background-image:-moz-linear-gradient(top, #9db6ea,#7396e0 3%,#4977d7);background-image:-o-linear-gradient(top, #9db6ea,#7396e0 3%,#4977d7);background-image:-ms-linear-gradient(to bottom, #9db6ea,#7396e0 3%,#4977d7);width:32px;height:32px;margin:7px 7px 0 0}.x-list .x-list-disclosure:before{position:absolute;top:0;right:0;bottom:0;left:0;content:']';font-family:'Pictos';color:#fff;font-size:24px;text-align:center;line-height:35px;text-shadow:0 0 0}.x-list.x-list-indexed .x-list-disclosure{margin-right:1.8em}.x-list .x-item-selected .x-list-disclosure{background:#fff none}.x-list .x-item-selected .x-list-disclosure:before{color:#688AD2}.x-list .x-list-item{color:#000}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-moz-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-o-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-ms-linear-gradient(to bottom, #a3b8e4,#7c99d8 3%,#547bcc);color:#fff}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background:#fff none}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:12px 15px}.x-list-normal .x-list-header{background-image:none;background-color:#fefefe;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#f3f0f0);color:#b9aaaa;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;border-top:1px solid #fefefe;border-bottom:1px solid #d0c6c6;font-weight:bold;font-size:0.8em;padding:0.2em 1.02em}.x-list-normal .x-list-item.x-list-item-tpl,.x-list-normal .x-list-item .x-dock-horizontal{border-top:1px solid #dedede}.x-list-normal .x-list-item.x-list-item-tpl.x-list-footer-wrap,.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal{border-bottom:1px solid #dedede}.x-list-normal .x-list-item.x-item-pressed.x-list-item-tpl,.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal{border-top-color:#fff;background-color:#fff}.x-list-normal .x-list-item.x-item-selected.x-list-item-tpl,.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal{border-top-color:#688AD2}.x-list-round .x-scroll-view{background-color:#eee}.x-list-round .x-list-header-swap{padding-right:13px}.x-list-round .x-list-inner .x-scroll-container{top:13px;left:13px;bottom:13px;right:13px;width:auto !important;height:auto !important}.x-list-round .x-list-header{color:#777;font-size:1em;font-weight:bold;padding-left:26px;line-height:1.7em;background-image:-webkit-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-moz-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-o-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-ms-linear-gradient(to bottom, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4))}.x-list-round .x-list-container{padding:13px 13px 0 13px}.x-list-round .x-list-container .x-list-header{padding-left:13px;background-image:none}.x-list-round.x-list-ungrouped .x-list-item-tpl,.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal,.x-list-round.x-list-grouped .x-list-item-tpl,.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #dedede;border-width:1px 1px 0 1px;background:#f7f7f7}.x-list-round.x-list-ungrouped .x-list-item-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-ungrouped .x-list-item-last{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;border-width:1px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-header-wrap.x-list-header{border:1px solid #dedede;border-width:1px 1px 0 1px;-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap{background:transparent}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-dock-body,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #dedede;background:#f7f7f7;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-dock-body{background:#fff none}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-dock-body{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-moz-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-o-linear-gradient(top, #a3b8e4,#7c99d8 3%,#547bcc);background-image:-ms-linear-gradient(to bottom, #a3b8e4,#7c99d8 3%,#547bcc);color:#fff}.x-list-round .x-indexbar-vertical{margin-right:20px}.x-list-round .x-list-footer-wrap.x-list-item-last.x-list-item-odd.x-list-item.x-list-item-tpl{background-color:transparent !important}.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-innerhtml,.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-dock-body{background-color:#eaeaea !important}.x-list .x-list-item-odd.x-list-item-tpl,.x-list .x-list-item-odd .x-dock-horizontal{background-color:#eaeaea !important;border-bottom:1px solid #eaeaea}.x-picker .x-picker-inner{background-color:#fff;overflow:hidden;margin:.7em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbb), color-stop(30%, #fff), color-stop(70%, #fff), color-stop(100%, #bbb));background:-webkit-linear-gradient(top, #bbb 0%, #fff 30%, #fff 70%, #bbb 100%)}.x-picker-slot .x-scroll-view{-moz-box-shadow:rgba(0,0,0,0.4) -1px 0 1px;-webkit-box-shadow:rgba(0,0,0,0.4) -1px 0 1px;box-shadow:rgba(0,0,0,0.4) -1px 0 1px}.x-picker-slot .x-scroll-view:first-child{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-picker-bar{border-top:0.12em solid #688AD2;border-bottom:0.12em solid #688AD2;height:2.5em;background-image:none;background-color:rgba(13,86,242,0.3);background-image:-webkit-linear-gradient(top, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));background-image:-moz-linear-gradient(top, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));background-image:-o-linear-gradient(top, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));background-image:-ms-linear-gradient(to bottom, rgba(85,137,246,0.3),rgba(37,103,244,0.3) 3%,rgba(11,78,218,0.3));-moz-box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em;-webkit-box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em;box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em}.x-use-titles .x-picker-bar{margin-top:1.5em}.x-picker-slot-title{height:1.5em;border-top:1px solid #dcd4d4;border-bottom:1px solid #ae9c9c;padding:0.2em 1.02em;-moz-box-shadow:rgba(0,0,0,0.3) 0px 0.1em 0.3em;-webkit-box-shadow:rgba(0,0,0,0.3) 0px 0.1em 0.3em;box-shadow:rgba(0,0,0,0.3) 0px 0.1em 0.3em;background-image:none;background-color:#dcd4d4;background-image:-webkit-linear-gradient(top, #fefefe,#e7e2e2 3%,#d0c6c6);background-image:-moz-linear-gradient(top, #fefefe,#e7e2e2 3%,#d0c6c6);background-image:-o-linear-gradient(top, #fefefe,#e7e2e2 3%,#d0c6c6);background-image:-ms-linear-gradient(to bottom, #fefefe,#e7e2e2 3%,#d0c6c6)}.x-picker-slot-title>div{font-size:0.8em;color:#8b8b8b;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-picker-slot{border-left:2px solid #acacac}.x-picker-slot .x-dataview-item{height:2.5em;line-height:2.5em;font-weight:bold;padding:0 10px}.x-picker-slot:first-child{border-left:0}.x-toggle{width:4.4em;border:1px solid #b7b7b7;background-image:none;background-color:#ddd;background-image:-webkit-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-moz-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-o-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-ms-linear-gradient(to bottom, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);-moz-border-radius:1.1em;-webkit-border-radius:1.1em;border-radius:1.1em}.x-toggle .x-thumb.x-dragging{opacity:1}.x-toggle .x-thumb:before{top:.175em}.x-toggle-on{background-image:none;background-color:#92cf00;background-image:-webkit-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-moz-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-o-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-ms-linear-gradient(to bottom, #6e9c00,#80b600 10%,#92cf00 65%,#94d200)}.x-button.border-radius-10{-moz-border-radius:10px !important;-webkit-border-radius:10px;border-radius:10px !important}.x-dataview.color .x-dataview-inner.x-scroll-scroller{width:auto !important;height:auto !important;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container{margin-top:12px;margin-left:12px}.x-dataview.color .x-dataview-item{display:inline-block}.x-dataview.color .x-dataview-item.x-item-selected .item-inner{-moz-box-shadow:#3ba8ff 0 0 0 4px;-webkit-box-shadow:#3ba8ff 0 0 0 4px;box-shadow:#3ba8ff 0 0 0 4px}.x-dataview.color .x-dataview-item .item-inner{display:inline-block;width:50px;height:50px;border:1px solid #d8d8d8;margin:6px}.x-list.settings{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round .x-scroll-view{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{padding-top:0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header{display:none}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal{padding-bottom:0}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #bcbcbc;border-width:1px 1px 0 1px;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal{background-image:-webkit-linear-gradient(top, #7c99d8,#416cc6);background-image:-moz-linear-gradient(top, #7c99d8,#416cc6);background-image:-o-linear-gradient(top, #7c99d8,#416cc6);background-image:-ms-linear-gradient(to bottom, #7c99d8,#416cc6);color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure{background-position:-24px 0}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal{color:inherit}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body{padding-right:1.2em}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after{content:"";width:24px;height:24px;position:absolute;top:11px;right:11px;background-image:url("../img/icons/list-retina.png");background-size:72px 48px;background-position:0 -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal{color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after{background-position:-24px -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon{width:24px;height:24px;position:absolute}.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset{margin-left:30px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure{right:12px;background-image:url("../img/icons/list-retina.png");background-size:72px 48px;background-position:0 0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body{-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13.8px}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #bcbcbc;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal{background:transparent}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal>.x-dock-body{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;background-image:-webkit-linear-gradient(top, #7c99d8,#416cc6);background-image:-moz-linear-gradient(top, #7c99d8,#416cc6);background-image:-o-linear-gradient(top, #7c99d8,#416cc6);background-image:-ms-linear-gradient(to bottom, #7c99d8,#416cc6);color:#fff}.x-msgbox{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-moz-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-o-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-ms-linear-gradient(to bottom, #989898,#656565 10%,#656565)}.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label,.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge{font-size:.9em;line-height:2em}.x-msgbox .x-title{font-size:1em;line-height:1.4em;color:#ffffff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller{width:auto !important;height:auto !important}.x-dataview.icon-view .x-dataview-inner.x-scroll-scroller .x-dataview-container{margin-top:12px;margin-left:12px}.x-dataview.icon-view .x-dataview-item{display:inline-block}.x-dataview.icon-view .x-dataview-item.x-item-pressed .item-inner,.x-dataview.icon-view .x-dataview-item.x-item-selected .item-inner{background-image:-webkit-linear-gradient(top, #7c99d8,#416cc6);background-image:-moz-linear-gradient(top, #7c99d8,#416cc6);background-image:-o-linear-gradient(top, #7c99d8,#416cc6);background-image:-ms-linear-gradient(to bottom, #7c99d8,#416cc6);color:#fff}.x-dataview.icon-view .x-dataview-item .item-inner{display:inline-block;width:77px;height:77px;border:1px solid #bcbcbc;background:#fff;margin:-1px}.x-dataview.icon-view .x-dataview-item .item-inner.top-left{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em}.x-dataview.icon-view .x-dataview-item .item-inner.top-right{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-dataview.icon-view .x-dataview-item .item-inner.bottom-left{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-dataview.icon-view .x-dataview-item .item-inner.bottom-right{-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-0{background-position:0 0px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-0,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-0{background-position:-24px 0px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-1{background-position:0 -24px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-1,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-1{background-position:-24px -24px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-2{background-position:0 -48px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-2,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-2{background-position:-24px -48px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-3{background-position:0 -72px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-3,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-3{background-position:-24px -72px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-4{background-position:0 -96px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-4,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-4{background-position:-24px -96px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-5{background-position:0 -120px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-5,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-5{background-position:-24px -120px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-6{background-position:0 -144px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-6,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-6{background-position:-24px -144px}.x-dataview.icon-view.bullets .x-dataview-item .icon.bullet-7{background-position:0 -168px}.x-dataview.icon-view.bullets .x-dataview-item.x-item-selected .icon.bullet-7,.x-dataview.icon-view.bullets .x-dataview-item.x-item-pressed .icon.bullet-7{background-position:-24px -168px}.x-dataview.icon-view.bullets .item-inner .text{margin-top:1.4em;text-align:center}.x-dataview.icon-view.bullets .item-inner .icon{width:24px;height:24px;margin:1.4em auto;background-image:url("../img/icons/bullets-retina.png");background-size:48px 168px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-0{background-position:0 0px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-0,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-0{background-position:-74px 0px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-1{background-position:0 -74px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-1,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-1{background-position:-74px -74px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-2{background-position:0 -148px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-2,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-2{background-position:-74px -148px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-3{background-position:0 -222px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-3,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-3{background-position:-74px -222px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-4{background-position:0 -296px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-4,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-4{background-position:-74px -296px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-5{background-position:0 -370px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-5,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-5{background-position:-74px -370px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-6{background-position:0 -444px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-6,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-6{background-position:-74px -444px}.x-dataview.icon-view.numbering .x-dataview-item .icon.numbering-7{background-position:0 -518px}.x-dataview.icon-view.numbering .x-dataview-item.x-item-selected .icon.numbering-7,.x-dataview.icon-view.numbering .x-dataview-item.x-item-pressed .icon.numbering-7{background-position:-74px -518px}.x-dataview.icon-view.numbering .item-inner .text{position:relative;top:1.4em;text-align:center}.x-dataview.icon-view.numbering .item-inner .icon{width:74px;height:74px;margin:0 auto;background-image:url("../img/icons/numbering-retina.png");background-size:148px 518px}.x-dataview.icon-view.outline .x-dataview-item .icon.outline-0{background-position:0 0px}.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-0,.x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-0{background-position:-74px 0px}.x-dataview.icon-view.outline .x-dataview-item .icon.outline-1{background-position:0 -74px}.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-1,.x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-1{background-position:-74px -74px}.x-dataview.icon-view.outline .x-dataview-item .icon.outline-2{background-position:0 -148px}.x-dataview.icon-view.outline .x-dataview-item.x-item-selected .icon.outline-2,.x-dataview.icon-view.outline .x-dataview-item.x-item-pressed .icon.outline-2{background-position:-74px -148px}.x-dataview.icon-view.outline .item-inner .text{position:relative;top:1.4em;text-align:center}.x-dataview.icon-view.outline .item-inner .icon{width:74px;height:74px;margin:0 auto;background-image:url("../img/icons/outline-retina.png");background-size:148px 222px}.x-panel.x-panel-settings{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ececec,#cbcbcb);background-image:-moz-linear-gradient(top, #ececec,#cbcbcb);background-image:-o-linear-gradient(top, #ececec,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ececec,#cbcbcb);-moz-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;-webkit-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;border:1px solid #797979}.x-panel.x-panel-settings .x-anchor-top{background-color:#797979;margin-top:-.62em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-top:after{content:'';position:absolute;width:1.631em;height:.7em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #f1f1f1,#ececec);background-image:-moz-linear-gradient(top, #f1f1f1,#ececec);background-image:-o-linear-gradient(top, #f1f1f1,#ececec);background-image:-ms-linear-gradient(to bottom, #f1f1f1,#ececec);top:1px !important}.x-panel.x-panel-settings .x-anchor-bottom{height:.8em;background-color:#797979;margin-top:-0.15em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-bottom:after{content:'';position:absolute;width:1.631em;height:.8em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#bebebe);background-image:-moz-linear-gradient(top, #cbcbcb,#bebebe);background-image:-o-linear-gradient(top, #cbcbcb,#bebebe);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#bebebe);top:-1px !important}.x-panel.x-panel-settings .x-panel-inner{background:transparent}.x-panel.x-panel-settings .x-navigation-bar{border-bottom:none;margin-top:-6px;background:transparent;overflow:hidden}.x-panel.x-panel-settings .x-navigation-bar .x-title{color:#323232;text-shadow:#fff 0 0.08em 0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner{background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after{content:none}.x-panel.x-panel-settings .x-navigationview-inner{background-color:#efefef;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-panel.x-panel-settings .x-navigationview-inner:after{content:'';position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:inset 0 1px 2px 2px #c8c8c8;-webkit-box-shadow:inset 0 1px 2px 2px #c8c8c8;box-shadow:inset 0 1px 2px 2px #c8c8c8;border:1px solid #797979}.x-label.info .x-innerhtml{color:#7f7f7f;text-shadow:0 1px 0 #fff;text-align:center}.btn-input-image input[type="file"]{opacity:0;position:absolute;left:0;top:0}.x-mask.transparent{background:transparent}.round{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list-header-wrap{-moz-border-radius-topleft:.3em !important;-webkit-border-top-left-radius:.3em !important;border-top-left-radius:.3em !important;-moz-border-radius-topright:.3em !important;-webkit-border-top-right-radius:.3em !important;border-top-right-radius:.3em !important}.x-list-header-wrap .x-innerhtml{-moz-border-radius-topleft:.3em !important;-webkit-border-top-left-radius:.3em !important;border-top-left-radius:.3em !important;-moz-border-radius-topright:.3em !important;-webkit-border-top-right-radius:.3em !important;border-top-right-radius:.3em !important}.x-list-header{display:none}.x-spinner.planar-spinner.x-field-grouped-buttons{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons.x-field{min-height:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span{font-size:inherit}.x-spinner.planar-spinner.x-field-grouped-buttons .x-button{margin-top:9px;margin-bottom:9px;padding:0 8px !important}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{padding:0.16em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input{-moz-box-shadow:#b2b2b2 0 3px 4px -2px inset;-webkit-box-shadow:#b2b2b2 0 3px 4px -2px inset;box-shadow:#b2b2b2 0 3px 4px -2px inset;background:#fff;min-width:2.3em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el{text-align:center;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;padding:3px 0 4px;min-height:0;border-top:1px solid #898989;border-bottom:1px solid #898989}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button{width:auto;border:1px solid #939393 !important;margin:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down{margin-right:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.x-toolbar{background-color:transparent}.x-toolbar-edit{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb);border-color:#4c4c4c}.x-toolbar-edit .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-edit.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-edit .x-button.x-button-back:before,.x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-button.x-button-back:before,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-edit .x-button,.x-toolbar-edit .x-button.x-button-back:after,.x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button.x-button-back:after,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-edit .x-button.x-button-pressing,.x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar-edit .x-button.x-button-pressed,.x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar-edit .x-button.x-button-active,.x-toolbar-edit .x-button.x-button-active:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-button.x-button-active,.x-toolbar .x-toolbar-edit .x-button.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-edit .x-label,.x-toolbar-edit .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-toolbar{background-color:transparent}.x-toolbar-search{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-moz-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-o-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#e7e7e7 20%,#e7e7e7);border-color:#4c4c4c}.x-toolbar-search .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-search.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-search .x-button.x-button-back:before,.x-toolbar-search .x-button.x-button-forward:before,.x-toolbar .x-toolbar-search .x-button.x-button-back:before,.x-toolbar .x-toolbar-search .x-button.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-search .x-button,.x-toolbar-search .x-button.x-button-back:after,.x-toolbar-search .x-button.x-button-forward:after,.x-toolbar .x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button.x-button-back:after,.x-toolbar .x-toolbar-search .x-button.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-search .x-button.x-button-pressing,.x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar-search .x-button.x-button-pressed,.x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar-search .x-button.x-button-active,.x-toolbar-search .x-button.x-button-active:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressing,.x-toolbar .x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressed,.x-toolbar .x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-button.x-button-active,.x-toolbar .x-toolbar-search .x-button.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-search .x-label,.x-toolbar-search .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-button-icon.save,.list-icon.save{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 0px;background-size:72px 888px}.x-button-pressing .x-button-icon.save,.x-button-pressing .list-icon.save,.x-button-pressed .x-button-icon.save,.x-button-pressed .list-icon.save,.x-button-active .x-button-icon.save,.x-button-active .list-icon.save,.x-item-pressed .x-button-icon.save,.x-item-pressed .list-icon.save{background-position:-24px 0px}.x-button-icon.undo,.list-icon.undo{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -24px;background-size:72px 888px}.x-button-pressing .x-button-icon.undo,.x-button-pressing .list-icon.undo,.x-button-pressed .x-button-icon.undo,.x-button-pressed .list-icon.undo,.x-button-active .x-button-icon.undo,.x-button-active .list-icon.undo,.x-item-pressed .x-button-icon.undo,.x-item-pressed .list-icon.undo{background-position:-24px -24px}.x-button-icon.share,.list-icon.share{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -48px;background-size:72px 888px}.x-button-pressing .x-button-icon.share,.x-button-pressing .list-icon.share,.x-button-pressed .x-button-icon.share,.x-button-pressed .list-icon.share,.x-button-active .x-button-icon.share,.x-button-active .list-icon.share,.x-item-pressed .x-button-icon.share,.x-item-pressed .list-icon.share{background-position:-24px -48px}.x-button-icon.font-style,.list-icon.font-style{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -72px;background-size:72px 888px}.x-button-pressing .x-button-icon.font-style,.x-button-pressing .list-icon.font-style,.x-button-pressed .x-button-icon.font-style,.x-button-pressed .list-icon.font-style,.x-button-active .x-button-icon.font-style,.x-button-active .list-icon.font-style,.x-item-pressed .x-button-icon.font-style,.x-item-pressed .list-icon.font-style{background-position:-24px -72px}.x-button-icon.font-color,.list-icon.font-color{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -96px;background-size:72px 888px}.x-button-pressing .x-button-icon.font-color,.x-button-pressing .list-icon.font-color,.x-button-pressed .x-button-icon.font-color,.x-button-pressed .list-icon.font-color,.x-button-active .x-button-icon.font-color,.x-button-active .list-icon.font-color,.x-item-pressed .x-button-icon.font-color,.x-item-pressed .list-icon.font-color{background-position:-24px -96px}.x-button-icon.bold,.list-icon.bold{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -120px;background-size:72px 888px}.x-button-pressing .x-button-icon.bold,.x-button-pressing .list-icon.bold,.x-button-pressed .x-button-icon.bold,.x-button-pressed .list-icon.bold,.x-button-active .x-button-icon.bold,.x-button-active .list-icon.bold,.x-item-pressed .x-button-icon.bold,.x-item-pressed .list-icon.bold{background-position:-24px -120px}.x-button-icon.italic,.list-icon.italic{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -144px;background-size:72px 888px}.x-button-pressing .x-button-icon.italic,.x-button-pressing .list-icon.italic,.x-button-pressed .x-button-icon.italic,.x-button-pressed .list-icon.italic,.x-button-active .x-button-icon.italic,.x-button-active .list-icon.italic,.x-item-pressed .x-button-icon.italic,.x-item-pressed .list-icon.italic{background-position:-24px -144px}.x-button-icon.underline,.list-icon.underline{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -168px;background-size:72px 888px}.x-button-pressing .x-button-icon.underline,.x-button-pressing .list-icon.underline,.x-button-pressed .x-button-icon.underline,.x-button-pressed .list-icon.underline,.x-button-active .x-button-icon.underline,.x-button-active .list-icon.underline,.x-item-pressed .x-button-icon.underline,.x-item-pressed .list-icon.underline{background-position:-24px -168px}.x-button-icon.align-left,.list-icon.align-left{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -192px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-left,.x-button-pressing .list-icon.align-left,.x-button-pressed .x-button-icon.align-left,.x-button-pressed .list-icon.align-left,.x-button-active .x-button-icon.align-left,.x-button-active .list-icon.align-left,.x-item-pressed .x-button-icon.align-left,.x-item-pressed .list-icon.align-left{background-position:-24px -192px}.x-button-icon.align-center,.list-icon.align-center{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -216px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-center,.x-button-pressing .list-icon.align-center,.x-button-pressed .x-button-icon.align-center,.x-button-pressed .list-icon.align-center,.x-button-active .x-button-icon.align-center,.x-button-active .list-icon.align-center,.x-item-pressed .x-button-icon.align-center,.x-item-pressed .list-icon.align-center{background-position:-24px -216px}.x-button-icon.align-right,.list-icon.align-right{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -240px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-right,.x-button-pressing .list-icon.align-right,.x-button-pressed .x-button-icon.align-right,.x-button-pressed .list-icon.align-right,.x-button-active .x-button-icon.align-right,.x-button-active .list-icon.align-right,.x-item-pressed .x-button-icon.align-right,.x-item-pressed .list-icon.align-right{background-position:-24px -240px}.x-button-icon.align-fill,.list-icon.align-fill{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -264px;background-size:72px 888px}.x-button-pressing .x-button-icon.align-fill,.x-button-pressing .list-icon.align-fill,.x-button-pressed .x-button-icon.align-fill,.x-button-pressed .list-icon.align-fill,.x-button-active .x-button-icon.align-fill,.x-button-active .list-icon.align-fill,.x-item-pressed .x-button-icon.align-fill,.x-item-pressed .list-icon.align-fill{background-position:-24px -264px}.x-button-icon.bullets,.list-icon.bullets{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -288px;background-size:72px 888px}.x-button-pressing .x-button-icon.bullets,.x-button-pressing .list-icon.bullets,.x-button-pressed .x-button-icon.bullets,.x-button-pressed .list-icon.bullets,.x-button-active .x-button-icon.bullets,.x-button-active .list-icon.bullets,.x-item-pressed .x-button-icon.bullets,.x-item-pressed .list-icon.bullets{background-position:-24px -288px}.x-button-icon.spacing,.list-icon.spacing{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -312px;background-size:72px 888px}.x-button-pressing .x-button-icon.spacing,.x-button-pressing .list-icon.spacing,.x-button-pressed .x-button-icon.spacing,.x-button-pressed .list-icon.spacing,.x-button-active .x-button-icon.spacing,.x-button-active .list-icon.spacing,.x-item-pressed .x-button-icon.spacing,.x-item-pressed .list-icon.spacing{background-position:-24px -312px}.x-button-icon.page-number,.list-icon.page-number{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -336px;background-size:72px 888px}.x-button-pressing .x-button-icon.page-number,.x-button-pressing .list-icon.page-number,.x-button-pressed .x-button-icon.page-number,.x-button-pressed .list-icon.page-number,.x-button-active .x-button-icon.page-number,.x-button-active .list-icon.page-number,.x-item-pressed .x-button-icon.page-number,.x-item-pressed .list-icon.page-number{background-position:-24px -336px}.x-button-icon.insert,.list-icon.insert{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -360px;background-size:72px 888px}.x-button-pressing .x-button-icon.insert,.x-button-pressing .list-icon.insert,.x-button-pressed .x-button-icon.insert,.x-button-pressed .list-icon.insert,.x-button-active .x-button-icon.insert,.x-button-active .list-icon.insert,.x-item-pressed .x-button-icon.insert,.x-item-pressed .list-icon.insert{background-position:-24px -360px}.x-button-icon.search,.list-icon.search{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -384px;background-size:72px 888px}.x-button-pressing .x-button-icon.search,.x-button-pressing .list-icon.search,.x-button-pressed .x-button-icon.search,.x-button-pressed .list-icon.search,.x-button-active .x-button-icon.search,.x-button-active .list-icon.search,.x-item-pressed .x-button-icon.search,.x-item-pressed .list-icon.search{background-position:-24px -384px}.x-button-icon.fullscreen,.list-icon.fullscreen{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -408px;background-size:72px 888px}.x-button-pressing .x-button-icon.fullscreen,.x-button-pressing .list-icon.fullscreen,.x-button-pressed .x-button-icon.fullscreen,.x-button-pressed .list-icon.fullscreen,.x-button-active .x-button-icon.fullscreen,.x-button-active .list-icon.fullscreen,.x-item-pressed .x-button-icon.fullscreen,.x-item-pressed .list-icon.fullscreen{background-position:-24px -408px}.x-button-icon.spinner-down,.list-icon.spinner-down{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -432px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-down,.x-button-pressing .list-icon.spinner-down,.x-button-pressed .x-button-icon.spinner-down,.x-button-pressed .list-icon.spinner-down,.x-button-active .x-button-icon.spinner-down,.x-button-active .list-icon.spinner-down,.x-item-pressed .x-button-icon.spinner-down,.x-item-pressed .list-icon.spinner-down{background-position:-24px -432px}.x-button-icon.spinner-up,.list-icon.spinner-up{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -456px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-up,.x-button-pressing .list-icon.spinner-up,.x-button-pressed .x-button-icon.spinner-up,.x-button-pressed .list-icon.spinner-up,.x-button-active .x-button-icon.spinner-up,.x-button-active .list-icon.spinner-up,.x-item-pressed .x-button-icon.spinner-up,.x-item-pressed .list-icon.spinner-up{background-position:-24px -456px}.x-button-icon.superscript,.list-icon.superscript{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -480px;background-size:72px 888px}.x-button-pressing .x-button-icon.superscript,.x-button-pressing .list-icon.superscript,.x-button-pressed .x-button-icon.superscript,.x-button-pressed .list-icon.superscript,.x-button-active .x-button-icon.superscript,.x-button-active .list-icon.superscript,.x-item-pressed .x-button-icon.superscript,.x-item-pressed .list-icon.superscript{background-position:-24px -480px}.x-button-icon.subscript,.list-icon.subscript{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -504px;background-size:72px 888px}.x-button-pressing .x-button-icon.subscript,.x-button-pressing .list-icon.subscript,.x-button-pressed .x-button-icon.subscript,.x-button-pressed .list-icon.subscript,.x-button-active .x-button-icon.subscript,.x-button-active .list-icon.subscript,.x-item-pressed .x-button-icon.subscript,.x-item-pressed .list-icon.subscript{background-position:-24px -504px}.x-button-icon.table,.list-icon.table{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -528px;background-size:72px 888px}.x-button-pressing .x-button-icon.table,.x-button-pressing .list-icon.table,.x-button-pressed .x-button-icon.table,.x-button-pressed .list-icon.table,.x-button-active .x-button-icon.table,.x-button-active .list-icon.table,.x-item-pressed .x-button-icon.table,.x-item-pressed .list-icon.table{background-position:-24px -528px}.x-button-icon.picture,.list-icon.picture{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -552px;background-size:72px 888px}.x-button-pressing .x-button-icon.picture,.x-button-pressing .list-icon.picture,.x-button-pressed .x-button-icon.picture,.x-button-pressed .list-icon.picture,.x-button-active .x-button-icon.picture,.x-button-active .list-icon.picture,.x-item-pressed .x-button-icon.picture,.x-item-pressed .list-icon.picture{background-position:-24px -552px}.x-button-icon.spacing,.list-icon.spacing{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -576px;background-size:72px 888px}.x-button-pressing .x-button-icon.spacing,.x-button-pressing .list-icon.spacing,.x-button-pressed .x-button-icon.spacing,.x-button-pressed .list-icon.spacing,.x-button-active .x-button-icon.spacing,.x-button-active .list-icon.spacing,.x-item-pressed .x-button-icon.spacing,.x-item-pressed .list-icon.spacing{background-position:-24px -576px}.x-button-icon.indent-inc,.list-icon.indent-inc{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -600px;background-size:72px 888px}.x-button-pressing .x-button-icon.indent-inc,.x-button-pressing .list-icon.indent-inc,.x-button-pressed .x-button-icon.indent-inc,.x-button-pressed .list-icon.indent-inc,.x-button-active .x-button-icon.indent-inc,.x-button-active .list-icon.indent-inc,.x-item-pressed .x-button-icon.indent-inc,.x-item-pressed .list-icon.indent-inc{background-position:-24px -600px}.x-button-icon.indent-dec,.list-icon.indent-dec{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -624px;background-size:72px 888px}.x-button-pressing .x-button-icon.indent-dec,.x-button-pressing .list-icon.indent-dec,.x-button-pressed .x-button-icon.indent-dec,.x-button-pressed .list-icon.indent-dec,.x-button-active .x-button-icon.indent-dec,.x-button-active .list-icon.indent-dec,.x-item-pressed .x-button-icon.indent-dec,.x-item-pressed .list-icon.indent-dec{background-position:-24px -624px}.x-button-icon.numbering,.list-icon.numbering{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -648px;background-size:72px 888px}.x-button-pressing .x-button-icon.numbering,.x-button-pressing .list-icon.numbering,.x-button-pressed .x-button-icon.numbering,.x-button-pressed .list-icon.numbering,.x-button-active .x-button-icon.numbering,.x-button-active .list-icon.numbering,.x-item-pressed .x-button-icon.numbering,.x-item-pressed .list-icon.numbering{background-position:-24px -648px}.x-button-icon.outline,.list-icon.outline{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -672px;background-size:72px 888px}.x-button-pressing .x-button-icon.outline,.x-button-pressing .list-icon.outline,.x-button-pressed .x-button-icon.outline,.x-button-pressed .list-icon.outline,.x-button-active .x-button-icon.outline,.x-button-active .list-icon.outline,.x-item-pressed .x-button-icon.outline,.x-item-pressed .list-icon.outline{background-position:-24px -672px}.x-button-icon.insert-row,.list-icon.insert-row{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -696px;background-size:72px 888px}.x-button-pressing .x-button-icon.insert-row,.x-button-pressing .list-icon.insert-row,.x-button-pressed .x-button-icon.insert-row,.x-button-pressed .list-icon.insert-row,.x-button-active .x-button-icon.insert-row,.x-button-active .list-icon.insert-row,.x-item-pressed .x-button-icon.insert-row,.x-item-pressed .list-icon.insert-row{background-position:-24px -696px}.x-button-icon.insert-column,.list-icon.insert-column{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -720px;background-size:72px 888px}.x-button-pressing .x-button-icon.insert-column,.x-button-pressing .list-icon.insert-column,.x-button-pressed .x-button-icon.insert-column,.x-button-pressed .list-icon.insert-column,.x-button-active .x-button-icon.insert-column,.x-button-active .list-icon.insert-column,.x-item-pressed .x-button-icon.insert-column,.x-item-pressed .list-icon.insert-column{background-position:-24px -720px}.x-button-icon.highlightcolor,.list-icon.highlightcolor{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -744px;background-size:72px 888px}.x-button-pressing .x-button-icon.highlightcolor,.x-button-pressing .list-icon.highlightcolor,.x-button-pressed .x-button-icon.highlightcolor,.x-button-pressed .list-icon.highlightcolor,.x-button-active .x-button-icon.highlightcolor,.x-button-active .list-icon.highlightcolor,.x-item-pressed .x-button-icon.highlightcolor,.x-item-pressed .list-icon.highlightcolor{background-position:-24px -744px}.x-button-icon.textcolor,.list-icon.textcolor{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -768px;background-size:72px 888px}.x-button-pressing .x-button-icon.textcolor,.x-button-pressing .list-icon.textcolor,.x-button-pressed .x-button-icon.textcolor,.x-button-pressed .list-icon.textcolor,.x-button-active .x-button-icon.textcolor,.x-button-active .list-icon.textcolor,.x-item-pressed .x-button-icon.textcolor,.x-item-pressed .list-icon.textcolor{background-position:-24px -768px}.x-button-icon.textbigger,.list-icon.textbigger{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -792px;background-size:72px 888px}.x-button-pressing .x-button-icon.textbigger,.x-button-pressing .list-icon.textbigger,.x-button-pressed .x-button-icon.textbigger,.x-button-pressed .list-icon.textbigger,.x-button-active .x-button-icon.textbigger,.x-button-active .list-icon.textbigger,.x-item-pressed .x-button-icon.textbigger,.x-item-pressed .list-icon.textbigger{background-position:-24px -792px}.x-button-icon.textless,.list-icon.textless{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -816px;background-size:72px 888px}.x-button-pressing .x-button-icon.textless,.x-button-pressing .list-icon.textless,.x-button-pressed .x-button-icon.textless,.x-button-pressed .list-icon.textless,.x-button-active .x-button-icon.textless,.x-button-active .list-icon.textless,.x-item-pressed .x-button-icon.textless,.x-item-pressed .list-icon.textless{background-position:-24px -816px}.x-button-icon.spinner-prev,.list-icon.spinner-prev{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -840px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-prev,.x-button-pressing .list-icon.spinner-prev,.x-button-pressed .x-button-icon.spinner-prev,.x-button-pressed .list-icon.spinner-prev,.x-button-active .x-button-icon.spinner-prev,.x-button-active .list-icon.spinner-prev,.x-item-pressed .x-button-icon.spinner-prev,.x-item-pressed .list-icon.spinner-prev{background-position:-24px -840px}.x-button-icon.spinner-next,.list-icon.spinner-next{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -864px;background-size:72px 888px}.x-button-pressing .x-button-icon.spinner-next,.x-button-pressing .list-icon.spinner-next,.x-button-pressed .x-button-icon.spinner-next,.x-button-pressed .list-icon.spinner-next,.x-button-active .x-button-icon.spinner-next,.x-button-active .list-icon.spinner-next,.x-item-pressed .x-button-icon.spinner-next,.x-item-pressed .list-icon.spinner-next{background-position:-24px -864px}.x-button.x-button-base{padding:.3em 8px}.x-button.x-button-base,.x-toolbar .x-button.x-button-base{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-base .x-button-icon,.x-toolbar .x-button.x-button-base .x-button-icon{width:24px;height:24px}.x-button.x-button-base.x-button-forward:before,.x-button.x-button-base.x-button-forward:after,.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base .x-button-label,.x-button.x-button-base .x-badge,.x-toolbar .x-button.x-button-base .x-button-label,.x-toolbar .x-button.x-button-base .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-forward:before{background:#989898}.x-button.x-button-base,.x-button.x-button-base.x-button-back:after,.x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base,.x-toolbar .x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-base.x-button-pressing,.x-button.x-button-base.x-button-pressing:after,.x-button.x-button-base.x-button-pressed,.x-button.x-button-base.x-button-pressed:after,.x-button.x-button-base.x-button-active,.x-button.x-button-base.x-button-active:after,.x-toolbar .x-button.x-button-base.x-button-pressing,.x-toolbar .x-button.x-button-base.x-button-pressing:after,.x-toolbar .x-button.x-button-base.x-button-pressed,.x-toolbar .x-button.x-button-base.x-button-pressed:after,.x-toolbar .x-button.x-button-base.x-button-active,.x-toolbar .x-button.x-button-base.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-base.x-button-pressing .x-button-label,.x-button.x-button-base.x-button-pressing .x-badge,.x-button.x-button-base.x-button-pressed .x-button-label,.x-button.x-button-base.x-button-pressed .x-badge,.x-button.x-button-base.x-button-active .x-button-label,.x-button.x-button-base.x-button-active .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-base:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-light{padding:.3em 8px}.x-button.x-button-light,.x-toolbar .x-button.x-button-light{border:1px solid #c7c7c7;border-top-color:#d9d9d9;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#262626}.x-button.x-button-light .x-button-icon,.x-toolbar .x-button.x-button-light .x-button-icon{width:24px;height:24px}.x-button.x-button-light.x-button-forward:before,.x-button.x-button-light.x-button-forward:after,.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-light .x-button-label,.x-button.x-button-light .x-badge,.x-toolbar .x-button.x-button-light .x-button-label,.x-toolbar .x-button.x-button-light .x-badge{color:#666;text-shadow:#fff 0 0.09em 0}.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-forward:before{background:#ccc}.x-button.x-button-light,.x-button.x-button-light.x-button-back:after,.x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light,.x-toolbar .x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:after{background-image:none;background-color:#fff;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#ffffff)}.x-button.x-button-light.x-button-pressing,.x-button.x-button-light.x-button-pressing:after,.x-button.x-button-light.x-button-pressed,.x-button.x-button-light.x-button-pressed:after,.x-button.x-button-light.x-button-active,.x-button.x-button-light.x-button-active:after,.x-toolbar .x-button.x-button-light.x-button-pressing,.x-toolbar .x-button.x-button-light.x-button-pressing:after,.x-toolbar .x-button.x-button-light.x-button-pressed,.x-toolbar .x-button.x-button-light.x-button-pressed:after,.x-toolbar .x-button.x-button-light.x-button-active,.x-toolbar .x-button.x-button-light.x-button-active:after{background-image:none;background-color:#999;background-image:-webkit-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-moz-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-o-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-ms-linear-gradient(to bottom, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a)}.x-button.x-button-light.x-button-pressing .x-button-label,.x-button.x-button-light.x-button-pressing .x-badge,.x-button.x-button-light.x-button-pressed .x-button-label,.x-button.x-button-light.x-button-pressed .x-badge,.x-button.x-button-light.x-button-active .x-button-label,.x-button.x-button-light.x-button-active .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-light.x-button-active .x-button-label,.x-toolbar .x-button.x-button-light.x-button-active .x-badge{color:#fff;text-shadow:gray 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-light{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-light:not(.x-first){border-left:1px solid #c7c7c7}.x-segmentedbutton-base.divided .x-button-light:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-light.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-light.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-base-blue{padding:.3em 8px}.x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue{border:1px solid #2e519b;border-top-color:#3760b7;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#fff}.x-button.x-button-base-blue .x-button-icon,.x-toolbar .x-button.x-button-base-blue .x-button-icon{width:24px;height:24px}.x-button.x-button-base-blue.x-button-forward:before,.x-button.x-button-base-blue.x-button-forward:after,.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base-blue .x-button-label,.x-button.x-button-base-blue .x-badge,.x-toolbar .x-button.x-button-base-blue .x-button-label,.x-toolbar .x-button.x-button-base-blue .x-badge{color:#fff;text-shadow:#2e519b 0 -0.09em 0}.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before{background:#3155a3}.x-button.x-button-base-blue,.x-button.x-button-base-blue.x-button-back:after,.x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-moz-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-o-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-ms-linear-gradient(to bottom, #ffffff,#9bb2e1 3%,#688ad2)}.x-button.x-button-base-blue.x-button-pressing,.x-button.x-button-base-blue.x-button-pressing:after,.x-button.x-button-base-blue.x-button-pressed,.x-button.x-button-base-blue.x-button-pressed:after,.x-button.x-button-base-blue.x-button-active,.x-button.x-button-base-blue.x-button-active:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressing,.x-toolbar .x-button.x-button-base-blue.x-button-pressing:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressed,.x-toolbar .x-button.x-button-base-blue.x-button-pressed:after,.x-toolbar .x-button.x-button-base-blue.x-button-active,.x-toolbar .x-button.x-button-base-blue.x-button-active:after{background-image:none;background-color:#416cc6;background-image:-webkit-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-moz-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-o-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-ms-linear-gradient(to bottom, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7)}.x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-button.x-button-base-blue.x-button-pressing .x-badge,.x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-button.x-button-base-blue.x-button-pressed .x-badge,.x-button.x-button-base-blue.x-button-active .x-button-label,.x-button.x-button-base-blue.x-button-active .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge{text-shadow:#2e519b 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base-blue{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first){border-left:1px solid #2e519b}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base-blue.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base-blue.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-back{padding:.3em 8px}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-back .x-button-icon,.x-toolbar .x-button.x-button-back .x-button-icon{width:24px;height:24px}.x-button.x-button-back.x-button-forward:before,.x-button.x-button-back.x-button-forward:after,.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-back .x-button-label,.x-button.x-button-back .x-badge,.x-toolbar .x-button.x-button-back .x-button-label,.x-toolbar .x-button.x-button-back .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-forward:before{background:#989898}.x-button.x-button-back,.x-button.x-button-back.x-button-back:after,.x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back,.x-toolbar .x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-back.x-button-pressing,.x-button.x-button-back.x-button-pressing:after,.x-button.x-button-back.x-button-pressed,.x-button.x-button-back.x-button-pressed:after,.x-button.x-button-back.x-button-active,.x-button.x-button-back.x-button-active:after,.x-toolbar .x-button.x-button-back.x-button-pressing,.x-toolbar .x-button.x-button-back.x-button-pressing:after,.x-toolbar .x-button.x-button-back.x-button-pressed,.x-toolbar .x-button.x-button-back.x-button-pressed:after,.x-toolbar .x-button.x-button-back.x-button-active,.x-toolbar .x-button.x-button-back.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-back.x-button-pressing .x-button-label,.x-button.x-button-back.x-button-pressing .x-badge,.x-button.x-button-back.x-button-pressed .x-button-label,.x-button.x-button-back.x-button-pressed .x-badge,.x-button.x-button-back.x-button-active .x-button-label,.x-button.x-button-back.x-button-active .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-back.x-button-active .x-button-label,.x-toolbar .x-button.x-button-back.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-back{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-back:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-back:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-back.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-back.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.unsuported-view{position:absolute;left:0;top:0;right:0;bottom:0;background:url(../img/ios-only.png) no-repeat center #efefef;background-attachment:fixed;z-index:90000}.x-button.text-offset-12{padding-left:12px;padding-right:12px}.x-button.text-offset-30{padding-left:30px;padding-right:30px} diff --git a/apps/documenteditor/mobile/resources/sass/_application-base.scss b/apps/documenteditor/mobile/resources/sass/_application-base.scss index bc0fa44a6..f0415755d 100644 --- a/apps/documenteditor/mobile/resources/sass/_application-base.scss +++ b/apps/documenteditor/mobile/resources/sass/_application-base.scss @@ -33,18 +33,36 @@ $outline-icon-size : 74px; $outline-icon-image-width : 148px; $outline-icon-image-height : 222px; -@import 'sencha-touch/default/all'; +@import 'sencha-touch/default'; -@include sencha-panel; -@include sencha-buttons; -@include sencha-toolbar; -@include sencha-toolbar-forms; -@include sencha-indexbar; -@include sencha-list; -@include sencha-layout; -@include sencha-form; -@include sencha-msgbox; -@include sencha-loading-spinner; +@import 'sencha-touch/default/src/Class'; +@import 'sencha-touch/default/src/Button'; +@import 'sencha-touch/default/src/Panel'; +@import 'sencha-touch/default/src/Sheet'; +@import 'sencha-touch/default/src/MessageBox'; +@import 'sencha-touch/default/src/Toolbar'; +@import 'sencha-touch/default/src/Toast'; +@import 'sencha-touch/default/src/Menu'; +//@import 'sencha-touch/default/src/carousel/Carousel'; +@import 'sencha-touch/default/src/form/Panel'; +@import 'sencha-touch/default/src/form/FieldSet'; +@import 'sencha-touch/default/src/field/Field'; +@import 'sencha-touch/default/src/field/Checkbox'; +@import 'sencha-touch/default/src/field/Radio'; +@import 'sencha-touch/default/src/field/Search'; +@import 'sencha-touch/default/src/field/Select'; +//@import 'sencha-touch/default/src/field/Slider'; +@import 'sencha-touch/default/src/field/Spinner'; +//@import 'sencha-touch/default/src/field/TextArea'; +//@import 'sencha-touch/default/src/dataview/IndexBar'; +@import 'sencha-touch/default/src/dataview/List'; +@import 'sencha-touch/default/src/picker/Picker'; +//@import 'sencha-touch/default/src/plugin/ListPaging'; +//@import 'sencha-touch/default/src/plugin/PullRefresh'; +//@import 'sencha-touch/default/src/slider/Slider'; +@import 'sencha-touch/default/src/slider/Toggle'; +//@import 'sencha-touch/default/src/tab/Panel'; +//@import 'sencha-touch/default/src/grid/Grid'; @import 'common-buttons'; @import 'common-dataview'; diff --git a/apps/documenteditor/mobile/resources/sass/config-debug.rb b/apps/documenteditor/mobile/resources/sass/config-debug.rb index d3fce9945..3d5dde25b 100644 --- a/apps/documenteditor/mobile/resources/sass/config-debug.rb +++ b/apps/documenteditor/mobile/resources/sass/config-debug.rb @@ -2,7 +2,7 @@ dir = File.dirname(__FILE__) # Load the sencha-touch framework automatically. -load File.join(dir, '..', '..', '..', '..', '..', '3rdparty', 'touch', 'resources', 'themes') +load File.join(dir, '..', '..', '..', '..', '..', 'vendor', 'touch', 'resources', 'themes') # Add include path for command styles add_import_path File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'sass') diff --git a/apps/documenteditor/mobile/resources/sass/config.rb b/apps/documenteditor/mobile/resources/sass/config.rb index c3cff5197..11b745b4b 100644 --- a/apps/documenteditor/mobile/resources/sass/config.rb +++ b/apps/documenteditor/mobile/resources/sass/config.rb @@ -2,7 +2,7 @@ dir = File.dirname(__FILE__) # Load the sencha-touch framework automatically. -load File.join(dir, '..', '..', '..', '..', '..', '3rdparty', 'touch', 'resources', 'themes') +load File.join(dir, '..', '..', '..', '..', '..', 'vendor', 'touch', 'resources', 'themes') # Add include path for command styles add_import_path File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'sass') @@ -10,5 +10,6 @@ add_import_path File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', ' # Compass configurations sass_path = dir css_path = File.join(dir, "..", "css") +fonts_path = File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'fonts') environment = :production output_style = :compressed \ No newline at end of file diff --git a/apps/presentationeditor/mobile/resources/css/application-normal.css b/apps/presentationeditor/mobile/resources/css/application-normal.css index 042bd0c72..00caccc2c 100644 --- a/apps/presentationeditor/mobile/resources/css/application-normal.css +++ b/apps/presentationeditor/mobile/resources/css/application-normal.css @@ -1,10258 +1 @@ -/* line 3, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, -h4, h5, h6, pre, code, form, fieldset, legend, -input, textarea, p, blockquote, th, td { - margin: 0; - padding: 0; -} - -/* line 8, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/* line 13, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -fieldset, img { - border: 0; -} - -/* line 18, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -address, caption, cite, code, -dfn, em, strong, th, var { - font-style: normal; - font-weight: normal; -} - -/* line 23, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -li { - list-style: none; -} - -/* line 27, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -caption, th { - text-align: left; -} - -/* line 31, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -h1, h2, h3, h4, h5, h6 { - font-size: 100%; - font-weight: normal; -} - -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -q:before, -q:after { - content: ""; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -abbr, acronym { - border: 0; - font-variant: normal; -} - -/* line 46, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sup { - vertical-align: text-top; -} - -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sub { - vertical-align: text-bottom; -} - -/* line 54, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -input, textarea, select { - font-family: inherit; - font-size: inherit; - font-weight: inherit; -} - -/* line 60, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -*:focus { - outline: none; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 10, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -html, body { - font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif; - font-weight: normal; - position: relative; - -webkit-text-size-adjust: none; -} - -/* line 17, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - overflow: hidden; -} - -/* line 21, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -*, *:after, *:before { - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -webkit-touch-callout: none; - -webkit-user-drag: none; -} - -/* line 29, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-ios.x-tablet .x-landscape * { - -webkit-text-stroke: 1px transparent; -} - -/* line 33, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body { - font-size: 104%; -} - -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone { - font-size: 116%; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone.x-silk { - font-size: 130%; -} - -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-ios.x-phone { - font-size: 114%; -} - -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - font-size: 114%; -} - -/* line 53, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -input, textarea { - -webkit-user-select: text; -} - -/* line 57, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-visibility { - visibility: hidden !important; -} - -/* line 61, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-display, .x-field-hidden { - display: none !important; -} - -/* line 65, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-offsets { - position: absolute !important; - left: -10000em; - top: -10000em; - visibility: hidden; -} - -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-fullscreen { - position: absolute !important; -} - -/* line 79, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-desktop .x-body-stretcher { - margin-bottom: 0px; -} - -/* line 83, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: 100%; - z-index: 10; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - background: rgba(0, 0, 0, 0.3) center center no-repeat; -} -/* line 100, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-gray { - background-color: rgba(0, 0, 0, 0.5); -} -/* line 104, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-transparent { - background-color: transparent; -} -/* line 108, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-inner { - position: relative; - background: rgba(0, 0, 0, 0.25); - color: #fff; - text-align: center; - padding: .4em; - font-size: .95em; - font-weight: bold; - -webkit-border-radius: 0.5em; - border-radius: 0.5em; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-loading-spinner-outer { - display: -webkit-box; - display: box; - -webkit-box-orient: vertical; - box-orient: vertical; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - width: 100%; - min-width: 8.5em; - height: 8.5em; -} -/* line 130, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-inner { - padding-bottom: 0 !important; -} -/* line 133, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-loading-spinner-outer { - display: none; -} -/* line 136, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-message { - position: relative; - bottom: .25em; -} -/* line 142, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-message { - position: absolute; - bottom: 1.7em; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-flex: 0 !important; - max-width: 13em; - min-width: 8.5em; -} -/* line 152, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-mask-inner { - padding-bottom: 2em; -} -/* line 156, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-loading-spinner-outer { - height: 7.5em; -} - -/* line 162, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-draggable { - z-index: 1; -} - -/* line 166, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-dragging { - opacity: 0.7; -} - -/* line 170, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-panel-list { - background-color: white; -} - -/* line 175, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html { - -webkit-user-select: auto; - -webkit-touch-callout: inherit; - line-height: 1.5; - color: #333; - font-size: .8em; - padding: 1.2em; -} -/* line 33, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html body { - line-height: 1.5; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - color: #333333; - font-size: 75%; -} -/* line 51, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 { - font-weight: normal; - color: #222222; -} -/* line 52, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img { - margin: 0; -} -/* line 53, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 { - font-size: 3em; - line-height: 1; - margin-bottom: 0.50em; -} -/* line 54, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h2 { - font-size: 2em; - margin-bottom: 0.75em; -} -/* line 55, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h3 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; -} -/* line 56, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h4 { - font-size: 1.2em; - line-height: 1.25; - margin-bottom: 1.25em; -} -/* line 57, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h5 { - font-size: 1em; - font-weight: bold; - margin-bottom: 1.50em; -} -/* line 58, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h6 { - font-size: 1em; - font-weight: bold; -} -/* line 59, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p { - margin: 0 0 1.5em; -} -/* line 60, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .left { - display: inline; - float: left; - margin: 1.5em 1.5em 1.5em 0; - padding: 0; -} -/* line 61, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .right { - display: inline; - float: right; - margin: 1.5em 0 1.5em 1.5em; - padding: 0; -} -/* line 62, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html a { - text-decoration: underline; - color: #0066cc; -} -/* line 18, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:visited { - color: #004c99; -} -/* line 21, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:focus { - color: #0099ff; -} -/* line 24, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:hover { - color: #0099ff; -} -/* line 27, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:active { - color: #bf00ff; -} -/* line 63, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html blockquote { - margin: 1.5em; - color: #666666; - font-style: italic; -} -/* line 64, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html strong, .x-html dfn { - font-weight: bold; -} -/* line 65, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html em, .x-html dfn { - font-style: italic; -} -/* line 66, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html sup, .x-html sub { - line-height: 0; -} -/* line 67, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html abbr, .x-html acronym { - border-bottom: 1px dotted #666666; -} -/* line 68, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html address { - margin: 0 0 1.5em; - font-style: italic; -} -/* line 69, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html del { - color: #666666; -} -/* line 70, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre { - margin: 1.5em 0; - white-space: pre; -} -/* line 71, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre, .x-html code, .x-html tt { - font: 1em "andale mono", "lucida console", monospace; - line-height: 1.5; -} -/* line 72, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html li ul, .x-html li ol { - margin: 0; -} -/* line 73, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul, .x-html ol { - margin: 0 1.5em 1.5em 0; - padding-left: 1.5em; -} -/* line 74, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul { - list-style-type: disc; -} -/* line 75, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ol { - list-style-type: decimal; -} -/* line 76, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl { - margin: 0 0 1.5em 0; -} -/* line 77, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl dt { - font-weight: bold; -} -/* line 78, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dd { - margin-left: 1.5em; -} -/* line 79, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table { - margin-bottom: 1.4em; - width: 100%; -} -/* line 80, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th { - font-weight: bold; -} -/* line 81, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html thead th { - background: #c3d9ff; -} -/* line 82, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th, .x-html td, .x-html caption { - padding: 4px 10px 4px 5px; -} -/* line 85, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table.striped tr:nth-child(even) td, -.x-html table tr.even td { - background: #e5ecf9; -} -/* line 86, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html tfoot { - font-style: italic; -} -/* line 87, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html caption { - background: #eeeeee; -} -/* line 88, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .quiet { - color: #666666; -} -/* line 89, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .loud { - color: #111111; -} -/* line 185, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ul li { - list-style-type: circle; -} -/* line 188, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ol li { - list-style-type: decimal; -} - -/* line 194, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-video { - background-color: #000; -} - -/* line 198, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-sortable .x-dragging { - opacity: 1; - z-index: 5; -} - -/* line 203, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-layout-card-item { - background: #eeeeee; -} - -/* line 1, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map { - background-color: #edeae2; -} -/* line 3, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map * { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -/* line 9, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-mask-map { - background: transparent !important; -} - -/* line 13, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map-container { - position: absolute !important; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Toolbar - */ -/** - * @var {color} $toolbar-base-color - * The primary color variable from which toolbars derive their light and dark UIs. - */ -/** - * @var {measurement} $toolbar-spacing - * Space between items in a toolbar (like buttons and fields) - */ -/** - * @var {string} $toolbar-gradient - * Background gradient style for toolbars. - */ -/** - * @var {boolean} $include-toolbar-uis - * Optionally disable separate toolbar UIs (light and dark). - */ -/** - * Includes default toolbar styles. - */ -/** - * Creates a theme UI for toolbars. - * - * // SCSS - * @include sencha-toolbar-ui('sub', #58710D, 'glossy'); - * - * // JS - * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'}) - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Button - */ -/** - * @var {measurement} $button-height Default height for buttons. - */ -/** - * @var {measurement} $button-radius Default border-radius for buttons. - */ -/** - * @var {measurement} $button-stroke-weight Default border width for buttons. - */ -/** - * @var {string} $button-gradient Default gradient for buttons. - */ -/** - * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons. - */ -/** - * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline. - */ -/** - * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows. - */ -/** - * Includes default button styles. - */ -/** - * Creates a theme UI for buttons. - * Also automatically generates UIs for {ui-label}-round and {ui-label}-small. - * - * // SCSS - * @include sencha-button-ui('secondary', #99A4AE, 'glossy'); - * - * // JS - * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'}); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.tab.Bar - */ -/** - * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark). - */ -/** - * @var {boolean} $include-top-tabs - * Optionally exclude top tab styles by setting to false. - */ -/** - * @var {boolean} $include-bottom-tabs - * Optionally exclude bottom tab styles by setting to false. - */ -/** - * @var {color} $tabs-light - * Base color for "light" UI tabs. - */ -/** - * @var {color} $tabs-light-active - * Active color for "light" UI tabs. - */ -/** - * @var {color} $tabs-dark - * Base color for "dark" UI tabs. - */ -/** - * @var {color} $tabs-dark-active - * Active color for "dark" UI tabs. - */ -/** - * @var {string} $tabs-bar-gradient - * Background gradient style for tab bars. - */ -/** - * @class Ext.tab.Tab - */ -/** - * @var {string} $tabs-bottom-radius - * Border-radius for bottom tabs. - */ -/** - * @var {string} $tabs-bottom-icon-size - * Icon size for bottom tabs - */ -/** - * @var {string} $tabs-bottom-active-gradient - * Background gradient style for active bottom tabs. - */ -/** - * @var {boolean} $include-tab-highlights - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * Includes default tab styles. - * - * @member Ext.tab.Bar - */ -/** - * Creates a theme UI for tabbar/tab components. - * - * // SCSS - * @include sencha-button-ui('pink', #333, 'matte', #AE537A); - * - * // JS - * var tabs = new Ext.tab.Panel({ - * tabBar: { - * ui: 'pink', - * dock: 'bottom', - * layout: { pack: 'center' } - * }, - * ... - * }); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $bar-color Base color for the tab bar. - * @param {string} $bar-gradient Background gradient style for the tab bar. - * @param {color} $tab-active-color Background-color for active tab icons. - * - * @member Ext.tab.Bar - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.carousel.Indicator - */ -/** - * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots. - */ -/** - * @var {measurement} $carousel-indicator-spacing - * Amount of space between carousel indicator dots. - */ -/** - * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in. - */ -/** - * Creates a theme UI for carousel indicator components. - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - * @param {color} $active-color Active color for the UI. - * @param {string} $active-gradient Active gradient for the UI. - */ -/** - * @class Ext.carousel.Carousel - */ -/** - * Includes basic carousel formatting. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.IndexBar - */ -/** - * @var {measurement} $index-bar-width - * Width of the index bar. - */ -/** - * @var {color} $index-bar-bg-color - * Background-color of the index bar. - */ -/** - * @var {color} $index-bar-color - * Text color of the index bar. - */ -/** - * Includes default index bar styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.List - */ -/** - * @var {color} $list-color - * Text color for list rows. - */ -/** - * @var {color} $list-bg-color - * Background-color for list rows. - */ -/** - * @var {color} $include-list-highlights - * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $list-zebrastripe - * Optionally zebra-stripe the list (alternating background colors). - */ -/** - * @var {color} $list-pressed-color - * Background-color for pressed list rows. - */ -/** - * @var {color} $list-active-color - * Background-color for selected list rows. - */ -/** - * @var {string} $list-active-gradient - * Gradient style for selected list rows. - */ -/** - * @var {color} $list-header-bg-color - * Background-color for list header rows (in grouped lists). - */ -/** - * @var {string} $list-header-gradient - * Gradient style for list header rows (in grouped lists). - */ -/** - * @var {measurement} $list-disclosure-size - * Default size (width/height) for disclosure icons. - */ -/** - * @var {measurement} $list-disclosure-round-size - * Default size (width/height) for disclosure icons in a list with a `round` ui. - */ -/** - * @var {measurement} $list-round-padding - * Default padding for lists with a `round` ui. - */ -/** - * Includes default list styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * Includes default form slider styles. - * - * @member Ext.field.Slider - */ -/** - * @var {color} $form-bg-color - * Default background-color for forms. - * - * @member Ext.form.Panel - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $form-field-bg-color - * Default background-color for form fields. - */ -/** - * @var {color} $form-light - * Light color for form fields, mostly used on field borders. - */ -/** - * @var {color} $form-dark - * Dark color for form fields, mostly used on labels/text. - */ -/** - * @var {measurement} $form-label-width - * Default width for form labels. - */ -/** - * @var {color} $form-label-background-color - * The default background color for labels - */ -/** - * @var {measurement} $form-field-height - * Default height for form fields. - */ -/** - * @var {measurement} $form-spacing - * Default spacing for form fields, used for padding, etc. - */ -/** - * @var {measurement} $form-textarea-height - * Default height for form textareas. - * - * @member Ext.field.TextArea - */ -/** - * @var {measurement} $form-thumb-size - * Default size of "thumbs" for form sliders/toggles. - * - * @member Ext.field.Slider - */ -/** - * @var {measurement} $form-toggle-size - * Thumb size minus padding for inset thumbs like in a Toggle element. - * - * @member Ext.field.Toggle - */ -/** - * @var {measurement} $form-fieldset-radius - * Default border-radius for form fieldsets. - * - * @member Ext.form.FieldSet - */ -/** - * @var {measurement} $form-slider-size - * Height of the slider "track." - * - * @member Ext.field.Slider - */ -/** - * Includes default form styles. - * - * @member Ext.form.Panel - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Sheet - */ -/** - * @var {color} $sheet-bg-color - * Background-color for action sheets and message boxes. - */ -/** - * @var {color} $sheet-bg-gradient - * Background gradient style for action sheets and message boxes. - */ -/** - * @var {measurement} $sheet-button-spacing - * Vertical spacing between sheet buttons. - */ -/** - * @var {measurement} $sheet-padding - * Overall padding in a sheet. - */ -/** - * Includes default sheet styles (also required for message box). - */ -/** - * Includes default message box styles. - * - * @member Ext.MessageBox - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $toolbar-input-bg - * Background-color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-color - * Text color for toolbar form fields. - */ -/** - * @var {measurement} $toolbar-input-height - * Text color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-border-color - * Border color for toolbar form fields. - */ -/** - * Includes default toolbar form field styles. - * - * @member Ext.tab.Bar - */ -/** - * @class Ext.LoadMask - */ -/** - * @var {color} $loading-spinner-color - * Background-color for the bars in the loading spinner. - */ -/** - * Includes default loading spinner styles (for dataviews). - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 4, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image { - text-align: center; -} -/* line 7, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image img { - width: auto; - height: 100%; -} -/* line 13, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-background { - background-repeat: no-repeat; - background-position: center; - background-size: auto 100%; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 3, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video { - height: 100%; - width: 100%; -} - -/* line 8, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video > * { - height: 100%; - width: 100%; - position: absolute; -} - -/* line 14, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video-ghost { - -webkit-background-size: 100% auto; - background: black url() center center no-repeat; -} - -/* line 19, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -audio { - width: 100%; -} - -/* line 129, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.border-radius-10 { - -webkit-border-radius: 10px !important; - border-radius: 10px !important; -} - -/** - * // SCSS - * @include application-toolbar-ui('edit', $base-color); - */ -/** - * // SCSS - * @include application-toolbar-iconmask('code3', '../../img/toolbar/code3.png'); - */ -/* line 8, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel, -.x-msgbox, -.x-panel-body { - position: relative; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating, -.x-msgbox, -.x-form.x-floating { - padding: 6px; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - background-image: none; - background-color: #656565; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating.x-floating-light, -.x-msgbox.x-floating-light, -.x-form.x-floating.x-floating-light { - background-image: none; - background-color: #cbcbcb; -} -/* line 26, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating .x-panel-inner, -.x-panel.x-floating > .x-body, -.x-msgbox .x-panel-inner, -.x-msgbox > .x-body, -.x-form.x-floating .x-panel-inner, -.x-form.x-floating > .x-body { - z-index: 1; - background-color: #fff; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 35, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock, -.x-msgbox > .x-dock, -.x-form.x-floating > .x-dock { - z-index: 1; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock.x-sized, -.x-msgbox > .x-dock.x-sized, -.x-form.x-floating > .x-dock.x-sized { - margin: 6px; -} - -/* line 48, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor { - position: absolute; - overflow: hidden; -} -/* line 53, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-top { - margin-top: -0.68em; - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-bottom { - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-left { - margin-left: -0.6655em; - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} -/* line 82, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-right { - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} - -/* line 93, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-floating.x-panel-light:after { - background-color: #cbcbcb; -} - -/* line 52, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - min-height: 1.8em; - padding: 0.3em 0.6em; - position: relative; - overflow: hidden; - -webkit-user-select: none; - z-index: 1; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-toolbar .x-button { - border: 1px solid #999999; - border-top-color: #a6a6a6; - color: black; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before { - background: #999999; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after { - background-image: none; - background-color: #cccccc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf)); - background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); - background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after { - background-image: none; - background-color: #c4c4c4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6)); - background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); - background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); -} -/* line 66, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon { - width: 2.1em; - height: 2.1em; - background-repeat: no-repeat; - background-position: center; - display: block; -} -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon.x-icon-mask { - width: 1.1em; - height: 1.1em; - -webkit-mask-size: 1.1em; -} -/* line 80, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon { - opacity: .5; -} - -/* line 86, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-round { - -webkit-border-radius: 0.9em; - border-radius: 0.9em; -} - -/* line 92, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left, .x-icon-align-right { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} - -/* line 95, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top, .x-iconalign-bottom { - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 98, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom, .x-iconalign-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} - -/* line 101, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-center { - -webkit-box-pack: center; - box-pack: center; -} - -/* line 104, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge { - margin-left: 0.3em; -} - -/* line 107, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge { - margin-right: 0.3em; -} - -/* line 110, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge { - margin-top: 0.3em; -} - -/* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge { - margin-bottom: 0.3em; -} - -/* line 118, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-label, .x-hasbadge .x-badge { - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-align: center; - box-align: center; - white-space: nowrap; - text-overflow: ellipsis; - text-align: center; - font-weight: bold; - line-height: 1.2em; - display: block; - overflow: hidden; -} - -/* line 131, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button { - margin: 0 0.2em; - padding: 0.3em 0.6em; -} -/* line 135, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge { - font-size: .7em; -} -/* line 139, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge { - line-height: 1.6em; -} - -/* line 144, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small, .x-toolbar .x-button-small { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - padding: 0.2em 0.4em; - min-height: 0; -} -/* line 149, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge { - font-size: .6em; -} -/* line 153, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon { - width: .75em; - height: .75em; -} -/* line 157, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask { - -webkit-mask-size: .75em; -} - -/* line 175, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, .x-button-back { - position: relative; - overflow: visible; - height: 1.7em; - z-index: 1; -} -/* line 180, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after { - content: ""; - position: absolute; - width: 0.80717em; - height: 1.8em; - top: -0.1em; - left: auto; - z-index: 2; - -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat; - -webkit-mask-size: 0.80717em 1.8em; - overflow: hidden; -} - -/* line 190, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back, -.x-toolbar .x-button-back { - margin-left: 0.87217em; - padding-left: .4em; -} -/* line 193, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:before, -.x-toolbar .x-button-back:before { - left: -0.72717em; -} -/* line 196, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:after, -.x-toolbar .x-button-back:after { - left: -0.68217em; -} - -/* line 202, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, -.x-toolbar .x-button-forward { - margin-right: 0.88217em; - padding-right: .4em; -} -/* line 205, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, -.x-toolbar .x-button-forward:before, -.x-toolbar .x-button-forward:after { - -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat; -} -/* line 208, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, -.x-toolbar .x-button-forward:before { - right: -0.72717em; -} -/* line 211, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:after, -.x-toolbar .x-button-forward:after { - right: -0.68217em; -} - -/* line 219, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain, -.x-toolbar .x-button.x-button-plain { - background: none; - border: 0 none; - -webkit-border-radius: none; - border-radius: none; - min-height: 0; - text-shadow: none; - line-height: auto; - height: 1.9em; - padding: 0em 0.5em; -} -/* line 229, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain > *, -.x-toolbar .x-button.x-button-plain > * { - overflow: visible; -} -/* line 233, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain .x-button-icon, -.x-toolbar .x-button.x-button-plain .x-button-icon { - -webkit-mask-size: 1em; - width: 1em; - height: 1em; -} -/* line 239, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed, -.x-toolbar .x-button.x-button-plain.x-button-pressing, -.x-toolbar .x-button.x-button-plain.x-button-pressed { - background: none; - background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(255, 255, 255, 0.7)), color-stop(100%, rgba(255, 255, 255, 0))); - background-image: -webkit-radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); - background-image: radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); -} -/* line 244, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); - background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); -} - -/* line 251, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button { - margin: 0; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 257, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-first { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 260, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-last { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 265, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button:not(.x-first) { - border-left: 0; -} - -/* line 276, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge { - overflow: visible; -} -/* line 278, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge .x-badge { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; - padding: 0.1em 0.3em; - z-index: 2; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - overflow: hidden; - color: #ffcccc; - border: 1px solid #990000; - position: absolute; - width: auto; - min-width: 2em; - line-height: 1.2em; - font-size: .6em; - right: 0px; - top: -.2em; - max-width: 95%; - background-image: none; - background-color: #cc0000; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000)); - background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - display: inline-block; -} - -/* line 36, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar { - padding: 0 0.2em; - position: relative; -} -/* line 46, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-top { - border-bottom: 0.1em solid; -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-bottom { - border-top: 0.1em solid; -} -/* line 54, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-left { - width: 7em; - height: auto; - padding: 0.2em; - border-right: 0.1em solid; -} -/* line 61, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-right { - width: 7em; - height: auto; - padding: 0.2em; - border-left: 0.1em solid; -} - -/* line 69, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title { - line-height: 2.1em; - font-size: 1.2em; - text-align: center; - font-weight: bold; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: 0 0.3em; - padding: 0 0.3em; - max-width: 100%; -} -/* line 81, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 103, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-navigation-bar .x-container { - overflow: visible; -} - -/* line 43, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner .x-input-el, -.x-field-select .x-input-el { - -webkit-text-fill-color: #000; - -webkit-opacity: 1; -} - -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner.x-item-disabled .x-input-el, -.x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: currentcolor; -} - -/* line 54, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-el { - -webkit-text-fill-color: #fff; -} - -/* line 58, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: rgba(255, 255, 255, 0.6); -} - -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field-container { - padding: 0 0.3em; -} -/* line 67, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field { - width: 13em; - margin: .5em; - min-height: 0; - border-bottom: 0; - background: transparent; -} -/* line 74, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field .x-clear-icon { - background-size: 50% 50%; - right: -0.8em; - margin-top: -1.06em; -} -/* line 81, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-input { - padding-right: 1.6em !important; -} -/* line 89, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-textarea .x-component-outer, -.x-toolbar .x-field-text .x-component-outer, -.x-toolbar .x-field-number .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - background-color: white; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; -} -/* line 99, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-label { - background: transparent; - border: 0; - padding: 0; - line-height: 1.4em; -} -/* line 106, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field { - height: 1.6em; - color: #6e6e6e; - background: transparent; - min-height: 0; - -webkit-appearance: none; - padding: 0em 0.3em; - margin: 0; -} -/* line 115, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field:focus { - color: black; -} -/* line 122, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.8em; - border-radius: 0.8em; -} -/* line 128, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-search .x-field-input { - background-position: 0.5em 50%; -} -/* line 133, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - -webkit-box-shadow: none; -} -/* line 136, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-form-field { - height: 1.4em; -} -/* line 141, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - background: transparent; -} -/* line 145, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:after { - right: .4em; -} -/* line 151, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after { - opacity: .6; -} -/* line 157, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:before { - width: 3em; - border-left: none; - -webkit-border-top-right-radius: 0.8em; - border-top-right-radius: 0.8em; - -webkit-border-bottom-right-radius: 0.8em; - border-bottom-right-radius: 0.8em; - -webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC'); - -webkit-mask-position: right top; - -webkit-mask-repeat: repeat-y; - -webkit-mask-size: 3em 0.05em; -} -/* line 172, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-text { - color: #fff; -} - -/* line 178, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-android .x-field-search .x-field-input { - padding-left: 0.2em !important; - padding-right: 2.2em !important; -} - -/* line 29, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-wrapper { - -webkit-box-pack: end !important; - box-pack: end !important; - pointer-events: none; -} - -/* line 35, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-vertical { - width: 1.1em; - -webkit-box-orient: vertical; - box-orient: vertical; - margin-right: 8px; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-horizontal { - height: 1.1em; - -webkit-box-orient: horizontal; - box-orient: horizontal; - margin-bottom: 8px; -} - -/* line 47, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar { - pointer-events: auto; - z-index: 2; - padding: 0.3em 0; - min-height: 0 !important; - height: auto !important; - -webkit-box-flex: 0 !important; -} -/* line 55, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar > div { - color: #a5a5a5; - font-size: 0.6em; - text-align: center; - line-height: 1.1em; - font-weight: bold; - display: block; -} - -/* line 66, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-phone.x-landscape .x-indexbar > div { - font-size: 0.38em; - line-height: 1em; -} - -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-pressed { - -webkit-border-radius: 0.55em; - border-radius: 0.55em; - background-color: rgba(163, 143, 143, 0.8); -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -html, body { - width: 100%; - height: 100%; -} - -@-webkit-keyframes x-paint-monitor-helper { - /* line 47, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - from { - zoom: 1; - } - - /* line 48, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - to { - zoom: 1; - } -} - -/* line 51, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitored { - position: relative; -} - -/* line 55, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor { - width: 0 !important; - height: 0 !important; - visibility: hidden; -} -/* line 59, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.cssanimation { - -webkit-animation-duration: 0.0001ms; - -webkit-animation-name: x-paint-monitor-helper; -} -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange { - overflow: hidden; -} -/* line 65, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange::after { - content: ""; - display: block; - width: 1px !important; - height: 1px !important; -} - -/* line 74, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitored { - position: relative; -} - -/* line 78, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - visibility: hidden; - z-index: -9999; - overflow: hidden; -} -/* line 87, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors > * { - width: 100%; - height: 100%; - overflow: hidden; -} -/* line 93, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.shrink::after { - content: ""; - display: block; - width: 200%; - height: 200%; - min-width: 1px; - min-height: 1px; -} -/* line 101, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.expand::after { - content: ""; - display: block; - width: 100000px; - height: 100000px; -} -/* line 110, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.shrink > * { - width: 100%; - height: 100%; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.expand > * { - width: 200%; - height: 200%; -} - -/* line 130, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-body { - position: relative; - z-index: 0; -} - -/* line 135, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-inner, .x-body { - width: 100%; - height: 100%; -} - -/* line 140, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock, .x-dock-body { - height: 100%; -} - -/* line 144, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-sized { - position: relative; -} - -/* line 148, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container { - display: -webkit-box; - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 151, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 158, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-innerhtml { - width: 100%; -} - -/* line 162, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card { - position: relative; - overflow: hidden; -} - -/* line 167, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item-container { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 171, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 175, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item, .x-layout-newcard-item > * { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 179, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item:not(.active) { - display: none; -} - -/* line 183, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit.x-stretched > .x-layout-fit-item { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 188, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit { - position: relative; -} - -/* line 193, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-sized { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 196, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-unsized { - width: 100%; - height: 100%; -} - -/* line 202, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center, .x-centered { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: -webkit-box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; -} -/* line 207, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > *, .x-centered > * { - position: relative; -} -/* line 210, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > .x-floating, .x-centered > .x-floating { - position: relative !important; -} - -/* line 215, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-floating { - position: absolute; -} - -/* line 219, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock { - display: -webkit-box; -} -/* line 222, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 225, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock .x-dock-body { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 229, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized > .x-dock-body { - position: relative; -} -/* line 233, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 235, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * { - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 240, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 243, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} -/* line 245, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item { - display: -webkit-box; -} -/* line 248, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 252, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 254, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 301, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box { - display: -webkit-box; -} -/* line 303, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal { - -webkit-box-orient: horizontal !important; -} -/* line 305, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed { - width: 0 !important; -} -/* line 309, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 311, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical > .x-layout-box-item.x-flexed { - height: 0 !important; -} -/* line 315, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box > .x-layout-box-item { - display: -webkit-box !important; -} -/* line 318, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-start { - -webkit-box-align: start; - box-align: start; -} -/* line 321, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-center { - -webkit-box-align: center; - box-align: center; -} -/* line 324, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-end { - -webkit-box-align: end; - box-align: end; -} -/* line 327, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-stretch { - -webkit-box-align: stretch; - box-align: stretch; -} -/* line 330, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-start { - -webkit-box-pack: start; - box-pack: start; -} -/* line 333, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-center { - -webkit-box-pack: center; - box-pack: center; -} -/* line 336, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-end { - -webkit-box-pack: end; - box-pack: end; -} -/* line 339, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-justify { - -webkit-box-pack: justify; - box-pack: justify; -} - -/* line 345, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 350, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float { - overflow: hidden; -} -/* line 352, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float > .x-layout-float-item { - float: left; -} -/* line 356, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float.x-direction-right > .x-layout-float-item { - float: right; -} - -/* line 362, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner { - display: table !important; - width: 100% !important; - height: 100% !important; -} -/* line 367, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner.x-fixed-layout { - table-layout: fixed !important; -} - -/* line 372, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-row { - display: table-row !important; -} - -/* line 376, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-cell { - display: table-cell !important; - vertical-align: middle; -} - -/* line 381, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable { - position: absolute; - top: 100% !important; - left: 100% !important; - overflow: visible !important; - z-index: 1; -} -/* line 387, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable::before { - content: ""; - display: block; - position: absolute; - top: 100%; - left: 100%; - width: 100%; - height: 100%; - visibility: hidden; -} - -/* line 399, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container { - overflow: hidden; - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 402, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container::before { - content: ""; - display: block; - width: 300%; - height: 300%; - visibility: hidden; -} - -/* line 411, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector { - visibility: hidden; - position: absolute; - left: 0; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - overflow: hidden; -} - -/* line 422, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector > * { - visibility: hidden; -} - -/* line 426, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-shrink > * { - width: 200%; - height: 200%; -} - -/* line 431, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-expand > * { - width: 100000px; - height: 100000px; -} - -/* line 436, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-view { - position: relative; - display: block; - overflow: hidden; -} - -/* line 442, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-container { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 448, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-scroller { - position: absolute; - min-width: 100%; - min-height: 100%; - width: auto !important; - height: auto !important; -} - -/* line 456, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-ios .x-scroll-scroller { - -webkit-transform: translate3d(0, 0, 0); -} - -/* line 460, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-stretcher { - position: absolute; - visibility: hidden; -} - -/* line 465, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid-wrapper { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 471, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid { - display: table; - width: 100%; - height: 100%; -} -/* line 476, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * { - display: table-row; -} -/* line 480, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * > * { - display: table-cell; -} -/* line 484, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :first-child { - width: 100%; - height: 100%; -} -/* line 489, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :nth-child(2) { - padding: 3px 3px 0 0; -} -/* line 493, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :nth-child(2) > :first-child { - padding: 0 0 3px 3px; -} - -/* line 498, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar { - position: relative; - overflow: hidden; -} - -/* line 503, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-stretcher { - position: absolute; - visibility: hidden; - width: 100%; - height: 100%; -} - -/* line 510, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x { - width: 100%; -} -/* line 513, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x > .x-scroll-bar-stretcher { - width: 300%; -} -/* line 517, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x.active { - height: 6px; -} - -/* line 522, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y { - height: 100%; -} -/* line 525, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y > .x-scroll-bar-stretcher { - height: 300%; -} -/* line 529, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y.active { - width: 6px; -} - -/* line 534, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator { - background: #333; - position: absolute; - z-index: 3; - opacity: 0.5; -} - -/* line 541, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-android-4 .x-scroll-indicator { - opacity: 1; -} - -/* line 545, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.default { - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 552, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-list-light .x-scroll-indicator, -.x-dataview-light .x-scroll-indicator { - background: #fff; - opacity: 1; -} - -/* line 558, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-x { - height: 100%; -} - -/* line 562, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-y { - width: 100%; -} - -/* line 566, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform { - background: none; -} -/* line 569, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > * { - position: absolute; - background-color: #333; -} -/* line 574, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > :nth-child(2) { - -webkit-transform-origin: 0% 0%; - background: none; - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA); -} -/* line 581, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > * { - background-color: #eee; -} -/* line 585, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) { - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA); -} -/* line 591, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > * { - width: 100%; -} -/* line 595, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child { - height: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; -} -/* line 600, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) { - height: 1px; -} -/* line 604, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child { - height: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} -/* line 611, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > * { - height: 100%; -} -/* line 615, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child { - width: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; -} -/* line 620, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) { - width: 1px; -} -/* line 623, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child { - width: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 134, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container { - background-color: #eeeeee; -} -/* line 137, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container > .x-inner { - padding: 1em; -} - -/* line 144, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label { - text-shadow: white 0 1px 1px; - color: #333333; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - padding: 0.6em; - display: none !important; - background-color: #f7f7f7; -} -/* line 151, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label span { - font-size: .8em; - font-weight: bold; -} -/* line 156, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label-nowrap .x-form-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 162, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field { - display: -webkit-box; - display: box; - min-height: 2.5em; - background: #fff; -} -/* line 167, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input { - position: relative; - min-width: 3.7em; -} -/* line 173, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input, -.x-field .x-input-el { - width: 100%; -} -/* line 178, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field.x-field-labeled .x-form-label { - display: block !important; -} -/* line 183, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field:last-child { - border-bottom: 0; -} - -/* line 190, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left .x-component-outer, -.x-label-align-right .x-component-outer { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 197, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 203, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} - -/* line 213, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 217, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:first-child .x-form-label { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 222, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child { - border-bottom: 0; -} -/* line 225, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child .x-form-label { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 235, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left, -.x-label-align-right { - -webkit-box-orient: horizontal !important; - box-orient: horizontal !important; -} - -/* line 240, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top, -.x-label-align-bottom { - -webkit-box-orient: vertical !important; - box-orient: vertical !important; -} - -/* line 249, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 255, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top .x-component-outer { - position: relative; -} - -/* line 260, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 264, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 270, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-input-el { - padding: .4em; - min-height: 2.5em; - display: block; - border-width: 0; - background: transparent; - -webkit-appearance: none; -} - -/* line 279, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-mask { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 286, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-required label:after, -.x-field-required .x-form-label:after { - content: "*"; - display: inline; -} - -/* line 294, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled label:after, -.x-item-disabled .x-form-label:after { - color: #666666 !important; -} - -/* line 301, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-textarea textarea { - min-height: 6em; - padding-top: .5em; -} - -/* line 313, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII='); - margin-top: -.7em; -} - -/* line 322, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - margin-top: -0.7em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,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'); -} - -/* line 330, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el { - position: relative; -} -/* line 332, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:after { - background-color: #dddddd; -} -/* line 335, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:checked:after { - background-color: #688ad2; -} - -/* line 340, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el { - position: relative; -} -/* line 342, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:before { - background-color: #d0d0d0; -} -/* line 345, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:after { - background-color: #dddddd; - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 349, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:checked:before { - background-color: #688ad2; -} - -/* line 356, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:checked:before { - background: #aebbd8; -} -/* line 360, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:after { - background: #eee; -} -/* line 367, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-checkbox .x-input-el:checked:after { - background: #aebbd8; -} - -/* line 376, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer { - display: -webkit-box; - display: box; -} -/* line 379, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer > * { - width: auto; -} -/* line 384, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input { - -webkit-box-flex: 1; -} -/* line 387, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input .x-input-el { - -webkit-text-fill-color: #000; - width: 100%; - text-align: center; -} -/* line 395, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input input::-webkit-outer-spin-button, -.x-spinner .x-field-input input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} -/* line 402, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-input-el { - -webkit-text-fill-color: #B3B3B3; -} -/* line 406, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-spinner-button { - color: #aaaaaa !important; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button { - border: 1px solid #c4c4c4; - border-top-color: #d0d0d0; - color: #1e1e1e; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before { - background: #c4c4c4; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #f7f7f7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #efefef; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0)); - background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); - background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); -} -/* line 412, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button { - margin-top: .25em; - margin-bottom: .25em; - width: 2em; - padding: 0.23em 0 0.27em; - font-weight: bold; - text-align: center; - border: 1px solid #dddddd !important; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button { - border: 1px solid #b7b7b7; - border-top-color: #c4c4c4; - color: #111111; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before { - background: #b7b7b7; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #eaeaea; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd)); - background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); - background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3)); - background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); - background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); -} -/* line 424, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-down { - margin-left: .25em; -} -/* line 427, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-up { - margin-right: .25em; -} -/* line 432, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-input-el { - text-align: left; -} -/* line 436, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: .5em; -} - -/* line 443, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-spinner-button { - padding: 0.4em 0 0.11em !important; -} - -/* line 450, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-item-label { - height: 2.6em; -} -/* line 454, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -/* line 460, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-label { - margin-right: 2.6em; -} -/* line 465, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:before { - background-color: rgba(0, 0, 0, 0.3); - margin-top: -.8em; -} -/* line 470, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:after { - background-color: #dddddd; -} - -/* line 11, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer { - padding: 0.6em; -} - -/* line 17, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider, -.x-toggle { - position: relative; - height: 2.2em; - min-height: 0; - min-width: 0; -} -/* line 23, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider > *, -.x-toggle > * { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 30, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider.x-item-disabled { - opacity: .6; -} - -/* line 57, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb { - position: absolute; - height: 2.2em; - width: 2.2em; -} -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb:after { - content: ""; - position: absolute; - width: 1.85em; - height: 1.85em; - top: 0.175em; - left: 0.175em; - border: 1px solid #919191; - -webkit-border-radius: 0.925em; - border-radius: 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0)); - background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging { - opacity: 1; -} -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging:after { - background-image: none; - background-color: #d0d0d0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4)); - background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); - background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); -} - -/* line 81, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider:after { - content: ""; - position: absolute; - width: auto; - height: 0.8em; - top: 0.7375em; - left: 0; - right: 0; - margin: 0 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - border: 0.1em solid rgba(0, 0, 0, 0.1); - border-bottom: 0; - -webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} - -/* line 93, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle { - width: 4.4em; - -webkit-border-radius: 1.1em; - border-radius: 1.1em; - overflow: hidden; - border: 1px solid #b7b7b7; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - -webkit-box-flex: 0; -} -/* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb.x-dragging { - opacity: 1; -} -/* line 117, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb:before { - top: 0.175em; -} - -/* line 146, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle-on { - background-image: none; - background-color: #92cf00; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200)); - background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); - background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); -} - -/* line 482, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/* line 488, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-number input::-webkit-outer-spin-button, -.x-field-number input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -/* line 495, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input { - position: relative; -} -/* line 498, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input:before { - content: ""; - position: absolute; - width: 0.86em; - height: 0.86em; - top: 50%; - left: 0.5em; - -webkit-mask-image: url('data:image/png;base64,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'); - -webkit-mask-size: .86em; - background-color: #ccc; - -webkit-mask-repeat: no-repeat; - margin-top: -0.43em; -} -/* line 506, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input .x-form-field { - margin-left: 1.0em; -} - -/* line 516, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-input .x-clear-icon { - display: none; - background: url('data:image/png;base64,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') no-repeat; - background-position: center center; - background-size: 55% 55%; - width: 2.2em; - height: 2.2em; - margin: .5em; - margin-top: -1.1em; - position: absolute; - top: 50%; - right: -.5em; -} - -/* line 532, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-clear-icon { - display: block; -} -/* line 536, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-field-input { - padding-right: 2.2em; -} - -/* line 541, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-input-el { - -webkit-text-fill-color: #000; -} - -/* line 545, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-empty .x-input-el { - -webkit-text-fill-color: #A9A9A9; -} - -/* line 556, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled .x-form-label span, -.x-item-disabled input, -.x-item-disabled .x-input-el, -.x-item-disabled .x-spinner-body, -.x-item-disabled select, -.x-item-disabled textarea, -.x-item-disabled .x-field-clear-container { - color: #b3b3b3; - -webkit-text-fill-color: #b3b3b3; - pointer-events: none; -} - -/* line 563, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset { - margin: 0 0 1.5em; -} -/* line 566, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-label { - border-top: 1px solid white; -} -/* line 570, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-fieldset-inner { - border: 1px solid #dddddd; - background: #fff; - padding: 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - overflow: hidden; -} -/* line 579, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field { - border-bottom: 1px solid #dddddd; - background: transparent; -} -/* line 583, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 589, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:last-child { - border-bottom: 0; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 599, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title { - text-shadow: white 0 1px 1px; - color: #333333; - margin: 1em 0.7em 0.3em; - color: #333333; - font-weight: bold; -} -/* line 605, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 610, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-instructions { - text-shadow: white 0 1px 1px; - color: #333333; - color: gray; - margin: 1em 0.7em 0.3em; - font-size: .8em; - text-align: center; -} - -/* line 619, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-selectmark-base, .x-field-select .x-component-outer:after { - content: ""; - position: absolute; - width: 1em; - height: 1em; - top: 50%; - left: auto; - right: 0.7em; - -webkit-mask-size: 1em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC'); - margin-top: -.5em; -} - -/* line 629, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select { - position: relative; - z-index: 1; -} -/* line 634, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:after { - background-color: #dddddd; -} -/* line 639, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after { - pointer-events: none; - position: absolute; - display: block; -} -/* line 645, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before { - content: ""; - position: absolute; - width: 4em; - height: auto; - top: 0; - left: auto; - right: 0; - bottom: 0; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white)); -} - -/* line 7, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox { - min-width: 15em; - max-width: 20em; - max-height: 90%; - margin: .5em; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - border: 0.15em solid #cbcbcb; -} -/* line 17, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-docking-vertical { - overflow: hidden; -} -/* line 22, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-icon { - margin: 0 0.8em 0 0.5em; - background: #fff; - -webkit-mask-size: 100%; -} -/* line 28, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-info { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-warning { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 36, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-question { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 40, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-error { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC'); -} -/* line 44, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-title { - font-size: .9em; - line-height: 1.4em; -} -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-body { - background: transparent !important; -} -/* line 53, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar { - background: transparent none; - -webkit-box-shadow: none; - box-shadow: none; -} -/* line 57, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-top { - border-bottom: 0; - height: 1.3em; -} -/* line 62, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom { - border-top: 0; -} -/* line 67, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field { - min-height: 2em; - background: #fff; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; -} -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-form-field { - min-height: 1.5em; - padding-right: 0 !important; - -webkit-appearance: none; -} -/* line 79, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field-input { - padding-right: 2.2em; -} - -/* line 84, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-text { - text-align: center; - padding: 6px 0; - line-height: 1.4em; -} - -/* line 90, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons { - padding: 0.4em 0; - height: auto; -} -/* line 94, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button { - min-width: 4.5em; -} -/* line 98, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button-normal span { - opacity: .7; -} - -/* line 109, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-text { - color: rgba(255, 255, 255, 0.9); - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-input { - background-image: none; - background-color: rgba(255, 255, 255, 0.9); - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(230, 230, 230, 0.9)), color-stop(10%, rgba(242, 242, 242, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0.9))); - background-image: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - background-image: linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - border: 0.1em solid rgba(203, 203, 203, 0.9); -} - -/* line 20, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - font-size: 250%; - height: 1em; - width: 1em; - position: relative; - -webkit-transform-origin: 0.5em 0.5em; - /* Shared Properties for all the bars */ -} -/* line 29, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after { - display: block; - position: absolute; - width: 0.1em; - height: 0.25em; - top: 0; - -webkit-transform-origin: 0.05em 0.5em; - -webkit-border-radius: 0.05em; - border-radius: 0.05em; - content: " "; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - background-color: rgba(170, 170, 170, 0.99); -} -/* line 42, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::after { - background-color: rgba(170, 170, 170, 0.9); -} -/* line 43, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::before { - background-color: rgba(170, 170, 170, 0.8); -} -/* line 44, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - background-color: rgba(170, 170, 170, 0.7); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::after { - background-color: rgba(170, 170, 170, 0.6); -} -/* line 46, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::before { - background-color: rgba(170, 170, 170, 0.5); -} -/* line 47, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - background-color: rgba(170, 170, 170, 0.4); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::after { - background-color: rgba(170, 170, 170, 0.35); -} -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::before { - background-color: rgba(170, 170, 170, 0.3); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - background-color: rgba(170, 170, 170, 0.25); -} -/* line 51, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::after { - background-color: rgba(170, 170, 170, 0.2); -} -/* line 52, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::before { - background-color: rgba(170, 170, 170, 0.15); -} - -/* line 56, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span { - left: 50%; - margin-left: -0.05em; -} - -/* Rotate each of the 4 Spans */ -/* line 65, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); -} - -/* line 66, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); -} - -/* line 67, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); -} - -/* line 68, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); -} - -/* These are the two lines that surround each of the 4 Span lines */ -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::before { - -webkit-transform: rotate(30deg); - -moz-transform: rotate(30deg); -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::after { - -webkit-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); -} - -/* Set Animation */ -/* line 77, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - -webkit-animation-name: x-loading-spinner-rotate; - -webkit-animation-duration: .5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} - -@-webkit-keyframes x-loading-spinner-rotate { - /* line 85, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 0% { - -webkit-transform: rotate(0deg); - } - - /* line 86, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.32% { - -webkit-transform: rotate(0deg); - } - - /* line 88, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.33% { - -webkit-transform: rotate(30deg); - } - - /* line 89, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.65% { - -webkit-transform: rotate(30deg); - } - - /* line 91, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.66% { - -webkit-transform: rotate(60deg); - } - - /* line 92, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 24.99% { - -webkit-transform: rotate(60deg); - } - - /* line 94, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 25% { - -webkit-transform: rotate(90deg); - } - - /* line 95, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.32% { - -webkit-transform: rotate(90deg); - } - - /* line 97, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.33% { - -webkit-transform: rotate(120deg); - } - - /* line 98, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.65% { - -webkit-transform: rotate(120deg); - } - - /* line 100, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.66% { - -webkit-transform: rotate(150deg); - } - - /* line 101, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 49.99% { - -webkit-transform: rotate(150deg); - } - - /* line 103, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 50% { - -webkit-transform: rotate(180deg); - } - - /* line 104, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.32% { - -webkit-transform: rotate(180deg); - } - - /* line 106, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.33% { - -webkit-transform: rotate(210deg); - } - - /* line 107, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.65% { - -webkit-transform: rotate(210deg); - } - - /* line 109, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.66% { - -webkit-transform: rotate(240deg); - } - - /* line 110, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 74.99% { - -webkit-transform: rotate(240deg); - } - - /* line 112, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 75% { - -webkit-transform: rotate(270deg); - } - - /* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.32% { - -webkit-transform: rotate(270deg); - } - - /* line 115, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.33% { - -webkit-transform: rotate(300deg); - } - - /* line 116, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.65% { - -webkit-transform: rotate(300deg); - } - - /* line 118, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.66% { - -webkit-transform: rotate(330deg); - } - - /* line 119, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 100% { - -webkit-transform: rotate(330deg); - } -} - -/* line 12, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - border-color: #4c4c4c; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button, -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-back:before, .x-toolbar-edit .x-button.x-button-forward:before, .x-toolbar .x-toolbar-edit .x-button.x-button-back:before, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar-edit .x-button.x-button-forward:after, .x-toolbar .x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-edit .x-button .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-pressing, .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar-edit .x-button.x-button-active, .x-toolbar-edit .x-button.x-button-active:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-edit .x-button.x-button-active, .x-toolbar .x-toolbar-edit .x-button.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-label, -.x-toolbar-edit .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 12, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(20%, #e7e7e7), color-stop(100%, #e7e7e7)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - background-image: linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - border-color: #4c4c4c; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button, -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-back:before, .x-toolbar-search .x-button.x-button-forward:before, .x-toolbar .x-toolbar-search .x-button.x-button-back:before, .x-toolbar .x-toolbar-search .x-button.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar-search .x-button.x-button-back:after, .x-toolbar-search .x-button.x-button-forward:after, .x-toolbar .x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button.x-button-back:after, .x-toolbar .x-toolbar-search .x-button.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-search .x-button .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-pressing, .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar-search .x-button.x-button-pressed, .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar-search .x-button.x-button-active, .x-toolbar-search .x-button.x-button-active:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressing, .x-toolbar .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressed, .x-toolbar .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-search .x-button.x-button-active, .x-toolbar .x-toolbar-search .x-button.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-label, -.x-toolbar-search .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.share, -.list-icon.share { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 0px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.share, -.x-button-pressing .list-icon.share, -.x-button-pressed .x-button-icon.share, -.x-button-pressed .list-icon.share, -.x-button-active .x-button-icon.share, -.x-button-active .list-icon.share, -.x-item-pressed .x-button-icon.share, -.x-item-pressed .list-icon.share { - background-position: -24px 0px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search, -.list-icon.search { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search, -.x-button-pressing .list-icon.search, -.x-button-pressed .x-button-icon.search, -.x-button-pressed .list-icon.search, -.x-button-active .x-button-icon.search, -.x-button-active .list-icon.search, -.x-item-pressed .x-button-icon.search, -.x-item-pressed .list-icon.search { - background-position: -24px -24px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.fullscreen, -.list-icon.fullscreen { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.fullscreen, -.x-button-pressing .list-icon.fullscreen, -.x-button-pressed .x-button-icon.fullscreen, -.x-button-pressed .list-icon.fullscreen, -.x-button-active .x-button-icon.fullscreen, -.x-button-active .list-icon.fullscreen, -.x-item-pressed .x-button-icon.fullscreen, -.x-item-pressed .list-icon.fullscreen { - background-position: -24px -24px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.right, -.list-icon.right { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -48px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.right, -.x-button-pressing .list-icon.right, -.x-button-pressed .x-button-icon.right, -.x-button-pressed .list-icon.right, -.x-button-active .x-button-icon.right, -.x-button-active .list-icon.right, -.x-item-pressed .x-button-icon.right, -.x-item-pressed .list-icon.right { - background-position: -24px -48px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.left, -.list-icon.left { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -72px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.left, -.x-button-pressing .list-icon.left, -.x-button-pressed .x-button-icon.left, -.x-button-pressed .list-icon.left, -.x-button-active .x-button-icon.left, -.x-button-active .list-icon.left, -.x-item-pressed .x-button-icon.left, -.x-item-pressed .list-icon.left { - background-position: -24px -72px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.play, -.list-icon.play { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -96px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.play, -.x-button-pressing .list-icon.play, -.x-button-pressed .x-button-icon.play, -.x-button-pressed .list-icon.play, -.x-button-active .x-button-icon.play, -.x-button-active .list-icon.play, -.x-item-pressed .x-button-icon.play, -.x-item-pressed .list-icon.play { - background-position: -24px -96px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.pause, -.list-icon.pause { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -120px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.pause, -.x-button-pressing .list-icon.pause, -.x-button-pressed .x-button-icon.pause, -.x-button-pressed .list-icon.pause, -.x-button-active .x-button-icon.pause, -.x-button-active .list-icon.pause, -.x-item-pressed .x-button-icon.pause, -.x-item-pressed .list-icon.pause { - background-position: -24px -120px; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-toolbar .x-button.x-button-base { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-icon, .x-toolbar .x-button.x-button-base .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-forward:before, .x-button.x-button-base.x-button-forward:after, .x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-label, .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base .x-badge, .x-toolbar .x-button.x-button-base .x-button-label, .x-toolbar .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-forward:before { - background: #989898; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-button.x-button-base.x-button-back:after, .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base, .x-toolbar .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing, .x-button.x-button-base.x-button-pressing:after, .x-button.x-button-base.x-button-pressed, .x-button.x-button-base.x-button-pressed:after, .x-button.x-button-base.x-button-active, .x-button.x-button-base.x-button-active:after, .x-toolbar .x-button.x-button-base.x-button-pressing, .x-toolbar .x-button.x-button-base.x-button-pressing:after, .x-toolbar .x-button.x-button-base.x-button-pressed, .x-toolbar .x-button.x-button-base.x-button-pressed:after, .x-toolbar .x-button.x-button-base.x-button-active, .x-toolbar .x-button.x-button-base.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing .x-button-label, .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressing .x-badge, .x-button.x-button-base.x-button-pressed .x-button-label, .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressed .x-badge, .x-button.x-button-base.x-button-active .x-button-label, .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-active .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-toolbar .x-button.x-button-light { - border: 1px solid #c7c7c7; - border-top-color: #d9d9d9; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: #262626; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-icon, .x-toolbar .x-button.x-button-light .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-forward:before, .x-button.x-button-light.x-button-forward:after, .x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-label, .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light .x-badge, .x-toolbar .x-button.x-button-light .x-button-label, .x-toolbar .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light .x-badge { - color: #666666; - text-shadow: white 0 0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-forward:before { - background: #cccccc; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-button.x-button-light.x-button-back:after, .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light, .x-toolbar .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:after { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing, .x-button.x-button-light.x-button-pressing:after, .x-button.x-button-light.x-button-pressed, .x-button.x-button-light.x-button-pressed:after, .x-button.x-button-light.x-button-active, .x-button.x-button-light.x-button-active:after, .x-toolbar .x-button.x-button-light.x-button-pressing, .x-toolbar .x-button.x-button-light.x-button-pressing:after, .x-toolbar .x-button.x-button-light.x-button-pressed, .x-toolbar .x-button.x-button-light.x-button-pressed:after, .x-toolbar .x-button.x-button-light.x-button-active, .x-toolbar .x-button.x-button-light.x-button-active:after { - background-image: none; - background-color: #999999; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(10%, #8c8c8c), color-stop(65%, #999999), color-stop(100%, #9a9a9a)); - background-image: -webkit-linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); - background-image: linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing .x-button-label, .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressing .x-badge, .x-button.x-button-light.x-button-pressed .x-button-label, .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressed .x-badge, .x-button.x-button-light.x-button-active .x-button-label, .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-active .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-light.x-button-active .x-button-label, .x-toolbar .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-active .x-badge { - color: white; - text-shadow: gray 0 0.09em 0; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-first) { - border-left: 1px solid #c7c7c7; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue { - border: 1px solid #2e519b; - border-top-color: #3760b7; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: white; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-icon, .x-toolbar .x-button.x-button-base-blue .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-forward:before, .x-button.x-button-base-blue.x-button-forward:after, .x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-label, .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue .x-badge, .x-toolbar .x-button.x-button-base-blue .x-button-label, .x-toolbar .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue .x-badge { - color: white; - text-shadow: #2e519b 0 -0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before { - background: #3155a3; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-button.x-button-base-blue.x-button-back:after, .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after { - background-image: none; - background-color: #688ad2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #9bb2e1), color-stop(100%, #688ad2)); - background-image: -webkit-linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); - background-image: linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing, .x-button.x-button-base-blue.x-button-pressing:after, .x-button.x-button-base-blue.x-button-pressed, .x-button.x-button-base-blue.x-button-pressed:after, .x-button.x-button-base-blue.x-button-active, .x-button.x-button-base-blue.x-button-active:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressing, .x-toolbar .x-button.x-button-base-blue.x-button-pressing:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressed, .x-toolbar .x-button.x-button-base-blue.x-button-pressed:after, .x-toolbar .x-button.x-button-base-blue.x-button-active, .x-toolbar .x-button.x-button-base-blue.x-button-active:after { - background-image: none; - background-color: #416cc6; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3155a3), color-stop(10%, #3760b7), color-stop(65%, #416cc6), color-stop(100%, #436dc7)); - background-image: -webkit-linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); - background-image: linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-button.x-button-base-blue.x-button-active .x-button-label, .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-active .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge { - text-shadow: #2e519b 0 0.09em 0; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first) { - border-left: 1px solid #2e519b; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-icon, .x-toolbar .x-button.x-button-back .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-forward:before, .x-button.x-button-back.x-button-forward:after, .x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-label, .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back .x-badge, .x-toolbar .x-button.x-button-back .x-button-label, .x-toolbar .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-forward:before { - background: #989898; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-button.x-button-back.x-button-back:after, .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back, .x-toolbar .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing, .x-button.x-button-back.x-button-pressing:after, .x-button.x-button-back.x-button-pressed, .x-button.x-button-back.x-button-pressed:after, .x-button.x-button-back.x-button-active, .x-button.x-button-back.x-button-active:after, .x-toolbar .x-button.x-button-back.x-button-pressing, .x-toolbar .x-button.x-button-back.x-button-pressing:after, .x-toolbar .x-button.x-button-back.x-button-pressed, .x-toolbar .x-button.x-button-back.x-button-pressed:after, .x-toolbar .x-button.x-button-back.x-button-active, .x-toolbar .x-button.x-button-back.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing .x-button-label, .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressing .x-badge, .x-button.x-button-back.x-button-pressed .x-button-label, .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressed .x-badge, .x-button.x-button-back.x-button-active .x-button-label, .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-active .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-back.x-button-active .x-button-label, .x-toolbar .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} -/* line 79, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - -webkit-border-radius: 4px; - border-radius: 4px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* - * unsupport - */ -/* line 54, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-base.scss */ -.unsuported-view { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url(../img/ios-only.png) no-repeat center #efefef; - background-attachment: fixed; - z-index: 90000; -} - -/* - * Additional styles - */ -/* line 69, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-12 { - padding-left: 12px; - padding-right: 12px; -} - -/* line 74, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-30 { - padding-left: 30px; - padding-right: 30px; -} +html,body{position:relative;width:100%;height:100%}.x-fullscreen{position:absolute !important}.x-body{position:relative;z-index:0}.x-inner,.x-body{width:100%;height:100%}.x-sized{position:relative}.x-innerhtml{width:100%}.x-layout-box{display:flex;display:-webkit-box;display:-ms-flexbox}.x-layout-box.x-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{min-width:0 !important}.x-layout-box.x-vertical{-webkit-box-orient:vertical !important;-ms-flex-direction:column !important;flex-direction:column !important}.x-layout-box.x-vertical>.x-layout-box-item.x-flexed{min-height:0 !important}.x-layout-box>.x-layout-box-item{display:flex !important;display:-webkit-box !important;display:-ms-flexbox !important}.x-layout-box.x-align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.x-layout-box.x-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-layout-box.x-align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.x-layout-box.x-align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.x-layout-box.x-pack-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.x-layout-box.x-pack-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-layout-box.x-pack-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.x-layout-box.x-pack-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-layout-box-item.x-sized>.x-inner,.x-layout-box-item.x-sized>.x-body,.x-layout-box-item.x-sized>.x-dock-outer{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-webkit .x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{width:0 !important}.x-webkit .x-layout-box.x-vertical>.x-layout-box-item.x-flexed{height:0 !important}.x-firefox .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-firefox .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px;min-height:0;min-width:0}.x-firefox .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-layout-card{position:relative;overflow:hidden}.x-layout-card-perspective{-webkit-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.x-layout-card-item-container{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-card-item{position:absolute;top:0;right:0;bottom:0;left:0;position:absolute !important}.x-dock{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock>.x-dock-body{overflow:hidden}.x-dock.x-sized,.x-dock.x-sized>.x-dock-body>*,.x-dock.x-sized>.x-dock-body>.x-body>.x-inner{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-sized>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-unsized,.x-dock.x-stretched{height:100%}.x-dock.x-unsized>.x-dock-body,.x-dock.x-stretched>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0;min-width:0}.x-dock.x-unsized>.x-dock-body>*,.x-dock.x-stretched>.x-dock-body>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-dock-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-dock.x-dock-horizontal>.x-dock-item{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-inner,.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-body{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-ie .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-ie .x-has-width>.x-dock.x-unsized.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-stretched.x-container{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-stretched.x-container>.x-inner,.x-stretched.x-container>.x-body,.x-stretched.x-container>.x-body>.x-inner{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0px}.x-layout-fit.x-stretched>.x-layout-fit-item{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-layout-fit{position:relative}.x-layout-fit-item.x-sized{position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-fit-item.x-unsized{width:100%;height:100%}.x-ie .x-stretched>.x-inner,.x-ie .x-stretched>.x-body{min-height:inherit}.x-center,.x-centered{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-center>*,.x-centered>*{position:relative}.x-center>.x-floating,.x-centered>.x-floating{position:relative !important}.x-floating{position:absolute !important}.x-layout-float{overflow:hidden}.x-layout-float>.x-layout-float-item{float:left}.x-layout-float.x-direction-right>.x-layout-float-item{float:right}@-webkit-keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}@keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}.x-paint-monitored{position:relative}.x-paint-monitor{width:0 !important;height:0 !important;visibility:hidden}.x-paint-monitor.cssanimation{-webkit-animation-duration:0.0001ms;-webkit-animation-name:x-paint-monitor-helper;animation-duration:0.0001ms;animation-name:x-paint-monitor-helper}.x-paint-monitor.overflowchange{overflow:hidden}.x-paint-monitor.overflowchange::after{content:'';display:block;width:1px !important;height:1px !important}.x-size-monitored{position:relative}.x-size-monitors{position:absolute;left:0;top:0;width:100%;height:100%;visibility:hidden;overflow:hidden}.x-size-monitors>*{width:100%;height:100%;overflow:hidden}.x-size-monitors.scroll>*.shrink::after{content:'';display:block;width:200%;height:200%;min-width:1px;min-height:1px}.x-size-monitors.scroll>*.expand::after{content:'';display:block;width:100000px;height:100000px}.x-size-monitors.overflowchanged>*.shrink>*{width:100%;height:100%}.x-size-monitors.overflowchanged>*.expand>*{width:200%;height:200%}.x-size-change-detector{visibility:hidden;position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;overflow:hidden}.x-size-change-detector>*{visibility:hidden}.x-size-change-detector-shrink>*{width:200%;height:200%}.x-size-change-detector-expand>*{width:100000px;height:100000px}.x-translatable{position:absolute !important;top:500000px !important;left:500000px !important;overflow:visible !important;z-index:1}.x-translatable-hboxfix{position:absolute;min-width:100%;top:0;left:0}.x-translatable-hboxfix>.x-translatable{position:relative !important}.x-translatable-container{overflow:hidden;width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-translatable-container::before{content:'';display:block;width:1000000px;height:1000000px;visibility:hidden}.x-button{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;border:1px solid #ccc;position:relative;overflow:hidden;z-index:1}.x-button .x-button-icon{position:relative;background-repeat:no-repeat;background-position:center}.x-button .x-button-icon.x-shown{display:block}.x-button .x-button-icon.x-hidden{display:none}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-iconalign-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-button-label,.x-badge,.x-hasbadge .x-badge{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;text-overflow:ellipsis;text-align:center;display:block;overflow:hidden}.x-badge{background-color:#ccc;border:1px solid #aaa;z-index:2;position:absolute !important;width:auto;font-size:.6em;right:0;top:0;max-width:95%;display:inline-block}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;-webkit-text-size-adjust:none;margin:0;cursor:default}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}*:focus{outline:none}body.x-desktop{overflow:hidden}@-ms-viewport{width:device-width}*,*:after,*:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;-ms-touch-action:none;-moz-user-select:-moz-none}input,textarea{-webkit-user-select:text;-ms-user-select:auto;-moz-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;-ms-user-select:auto;line-height:1.5;color:#333;font-size:.8em;padding:1.2em}.x-html body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%}.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6{font-weight:normal;color:#222}.x-html h1 img,.x-html h2 img,.x-html h3 img,.x-html h4 img,.x-html h5 img,.x-html h6 img{margin:0}.x-html h1{font-size:3em;line-height:1;margin-bottom:0.50em}.x-html h2{font-size:2em;margin-bottom:0.75em}.x-html h3{font-size:1.5em;line-height:1;margin-bottom:1.00em}.x-html h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}.x-html h5{font-size:1em;font-weight:bold;margin-bottom:1.50em}.x-html h6{font-size:1em;font-weight:bold}.x-html p{margin:0 0 1.5em}.x-html p .left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{float:right;margin:1.5em 0 1.5em 1.5em;padding:0}.x-html a{text-decoration:underline;color:#06c}.x-html a:visited{color:#004d99}.x-html a:focus{color:#09f}.x-html a:hover{color:#09f}.x-html a:active{color:#bf00ff}.x-html blockquote{margin:1.5em;color:#666;font-style:italic}.x-html strong,.x-html dfn{font-weight:bold}.x-html em,.x-html dfn{font-style:italic}.x-html sup,.x-html sub{line-height:0}.x-html abbr,.x-html acronym{border-bottom:1px dotted #666666}.x-html address{margin:0 0 1.5em;font-style:italic}.x-html del{color:#666}.x-html pre{margin:1.5em 0;white-space:pre}.x-html pre,.x-html code,.x-html tt{font:1em "andale mono","lucida console",monospace;line-height:1.5}.x-html li ul,.x-html li ol{margin:0}.x-html ul,.x-html ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}.x-html ul{list-style-type:disc}.x-html ol{list-style-type:decimal}.x-html dl{margin:0 0 1.5em 0}.x-html dl dt{font-weight:bold}.x-html dd{margin-left:1.5em}.x-html table{margin-bottom:1.4em;width:100%}.x-html th{font-weight:bold}.x-html thead th{background:#c3d9ff}.x-html th,.x-html td,.x-html caption{padding:4px 10px 4px 5px}.x-html table.striped tr:nth-child(even) td,.x-html table tr.even td{background:#e5ecf9}.x-html tfoot{font-style:italic}.x-html caption{background:#eee}.x-html .quiet{color:#666}.x-html .loud{color:#111}.x-html ul li{list-style-type:circle}.x-html ol li{list-style-type:decimal}@-webkit-keyframes x-loading-spinner-rotate{0%{-webkit-transform:rotate(0deg)}8.32%{-webkit-transform:rotate(0deg)}8.33%{-webkit-transform:rotate(30deg)}16.65%{-webkit-transform:rotate(30deg)}16.66%{-webkit-transform:rotate(60deg)}24.99%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.32%{-webkit-transform:rotate(90deg)}33.33%{-webkit-transform:rotate(120deg)}41.65%{-webkit-transform:rotate(120deg)}41.66%{-webkit-transform:rotate(150deg)}49.99%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.32%{-webkit-transform:rotate(180deg)}58.33%{-webkit-transform:rotate(210deg)}66.65%{-webkit-transform:rotate(210deg)}66.66%{-webkit-transform:rotate(240deg)}74.99%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.32%{-webkit-transform:rotate(270deg)}83.33%{-webkit-transform:rotate(300deg)}91.65%{-webkit-transform:rotate(300deg)}91.66%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(330deg)}}@keyframes x-loading-spinner-rotate{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.32%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.33%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.65%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.66%{-ms-transform:rotate(60deg);transform:rotate(60deg)}24.99%{-ms-transform:rotate(60deg);transform:rotate(60deg)}25%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.32%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.33%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.65%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.66%{-ms-transform:rotate(150deg);transform:rotate(150deg)}49.99%{-ms-transform:rotate(150deg);transform:rotate(150deg)}50%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.32%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.33%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.65%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.66%{-ms-transform:rotate(240deg);transform:rotate(240deg)}74.99%{-ms-transform:rotate(240deg);transform:rotate(240deg)}75%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.32%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.33%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.65%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.66%{-ms-transform:rotate(330deg);transform:rotate(330deg)}100%{-ms-transform:rotate(330deg);transform:rotate(330deg)}}@font-face{font-family:"Pictos";src:url('data:application/font-woff;base64,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') format('woff'),url('data:font/truetype;base64,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AQIFAw4BAQQCCAEBBAIBAQMDAgYGAgECAgEBAQICAQ0DAQICBQEMBwIFAgICBgMCBQQCBAQMAQMBAQEBBAUBAwkBAwEBAgEDAgIBBAICBgECBgMCBQIGCAUFAQUIAQMFAQELAQEGAQIDAQEBBAEBAQMCBgIEAwQGAgQHAgMDAQIGAQIBAQICAQQBBQECGwQCAQUDAQIDAgcFCAMBBgMEAwQEBAMDAQIDAwUCAgEIBgIKAQ0EBAIGAwQMAwELAQcJCAIDAgYDAQcBBwYDBAYCAgUBAwEBCwcIAgEKIceMUo4vBwIDBQUBBAIKAgEBAQMBAQMCBQIDAgJFAhkBAgEBBwQHAgoBAQUCAwMDAQIJAQUClAEFBQsCCAEDBAcBBAUBAwMBAScCBgEDAwIEAQIBBQEHAgMCAgMMBAMBAQIHARYCAgMEBQQCAgEBBAEBAwYBAwOgAQPKAgMBAQMCAQUCAQEWAgcCBQFxBgoGBQEDAgICCQEJAQ4EAgEBAQQCAgECBAECAQEBAQ8HARMPAgECAQUEAQMFAQIBAQQBBAQGBgMDCwENCgoBBwoDCQQIBAQDAwQEAgECAQIDAgEDAwQCBAEEAQIEAQMDAwUJAQgNAQMICAoQBgIICQYBAgICAQUCBQYGAQUBAgoDAQH+YwMEAgEBEQQHAgMBAggEBQUGIwICAQENAQcBBwIBCAIfBAUGAgEBJgMEAgIBARABAQF9AgICuvb+pPb2AVwzAwMFAggECwIBBAIECQIBAgECBgECAgIEBwECAQMEAgX+wFprEwkCCQIBAwgEBAMHAgQBBAEHAQMDBQoEAQMEAQIBAQIIAgEEAgYCAgMFAQcEDAUMDgIKAQsECQQBAgkBCQICAQEBAQIDAgwDAQQDBAcBAQEKAQQKAQIBBwQCBgkBBQEFAQECAwYDDAMEAgcBAgIBAQESAgMEAwEBAQQJAQgKAQICAQQDBgIEBgYBBAYFAQIBAgECAQIGBAgBAwMCAgEDAQsDAgYCAwoCAgcEAQIGBQ0IBAMCAgIBAQIIBAICCQIEAgECBQQCAQM4QFsBAwEGAgcCBgIBAQICBAEBAQIBAQECAQICAQIDBAMCBAMKBwEKAQoDAQICCwICAQQCBQEBAQEBCwIHBAECAQEBAQIPCAQBAgMEBgoCAQUDAQICAgYGAgQFAgEJAwECAQ0DAQMCBgQBCQMC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') format('truetype'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIHdlYmZvbnQgZ2VuZXJhdGVkIGJ5IEZvbnQgU3F1aXJyZWwuCkRlc2lnbmVyICAgIDogRHJldyBXaWxzb24KRm91bmRyeSAgICAgOiBEcmV3IFdpbHNvbgpGb3VuZHJ5IFVSTCA6IGh0dHBwaWN0b3NkcmV3d2lsc29uY29tCjwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0id2ViZm9udEl5Zlpic2VGIiBob3Jpei1hZHYteD0iOTIwIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSIxMDAwIiBhc2NlbnQ9Ijc1MCIgZGVzY2VudD0iLTI1MCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPGdseXBoIHVuaWNvZGU9IiAiICBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MDk7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4YTA7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iISIgaG9yaXotYWR2LXg9IjkzNiIgZD0iTTg2NSAxMDNxMzcgLTYyIDExIC0xMDYuNXQtOTggLTQ0LjVoLTYyMXEtNzIgMCAtOTcuNSA0NC41dDExLjUgMTA2LjVsMzEwIDUzNHEzNiA2MiA4Ny41IDYydDg3LjUgLTYyek00NzEgNDZxMjMgMCAzOC41IDE2dDE1LjUgMzh0LTE1LjUgMzcuNXQtMzguNSAxNS41cS0yMiAwIC0zNy41IC0xNS41dC0xNS41IC0zNy41dDE1LjUgLTM4dDM3LjUgLTE2ek01MDkgMTg3bDI2IDMwOGgtMTI3bDI2IC0zMDhoNzV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjI7IiBob3Jpei1hZHYteD0iODY1IiBkPSJNNTIgMjg5cTEgNjUgNy41IDExNXQyNi41IDEwMS41dDUzLjUgODYuNXQ5MC41IDU4LjV0MTM1IDI4LjV2LTE1N3EtNjYgMCAtOTUgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNXEtMTggMCAtMzEgMTN0LTEzIDMxdjI1OHY3ek00OTMgMjg5cTAgNjUgNyAxMTV0MjcgMTAxLjV0NTMuNSA4Ni41dDkwLjUgNTguNXQxMzUgMjguNXYtMTU3IHEtNjcgMCAtOTYgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNHEtMTkgMCAtMzIgMTN0LTEzIDMxdjI1OHEwIDUgMSA3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiMiIGhvcml6LWFkdi14PSI3NDgiIGQ9Ik03MDUgNDgycTkgLTE0IC04IC0xNGgtNDh2LTU2N3EwIC03IC01IC0xMnQtMTIgLTVoLTUxM3EtNyAwIC0xMiA1dC01IDEydjU2N2gtNTJxLTcgMCAtOS41IDR0MS41IDEwbDMxIDQ2cTkgMTQgMjcgMTRoNzV2NjZxMCAyMCAxMiAzMGw0OCA0OXExMiAxMiAzMCAxMmgyMTZxMTggMCAzMCAtMTJsNTIgLTUycTEzIC0xMyAxMyAtMzB2LTYzaDcxcTE4IDAgMjcgLTE0ek0yNDggNTQ2di00aDI1NHY0djI4cTAgMjAgLTEyIDMwbC05IDEwIHEtMTIgMTIgLTMwIDEyaC0xNTVxLTE4IDAgLTMwIC0xMmwtNiAtNnEtMTIgLTEyIC0xMiAtMzB2LTMyek01NzYgNDUwcTAgMTYgLTE2IDE4aC0yNzloLTg5cS03IDAgLTEyIC01LjV0LTUgLTEyLjV2LTQ3NnEwIC03IDUgLTEydDEyIC01aDM2N3E3IDAgMTIgNXQ1IDEydjQ3NnpNMjYzIDQxOHE3IDAgMTIuNSAtNXQ1LjUgLTEydi0zNzlxMCAtNyAtNS41IC0xMnQtMTIuNSAtNWgtMjFxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTIgdDEyLjUgNWgyMXpNMzY0IDVxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTJ0MTIuNSA1aDIxcTcgMCAxMiAtNXQ1IC0xMnYtMzc5cTAgLTcgLTUgLTEydC0xMiAtNWgtMjF6TTQ4NSA1cS03IDAgLTEyIDV0LTUgMTJ2Mzc5cTAgNyA1IDEydDEyIDVoMjJxNyAwIDEyIC01dDUgLTEydi0zNzlxMCAtNyAtNSAtMTJ0LTEyIC01aC0yMnoiIC8+CjxnbHlwaCB1bmljb2RlPSIkIiBob3Jpei1hZHYteD0iODkzIiBkPSJNNTAzIDI4M2gtMTA4bC0xNiA2OGgxMjR2LTY4ek02ODQgMzUxbC0xOCAtNjhoLTEwNGwxIDY4aDEyMXpNNDAwIDExOHEyOCAwIDQ4LjUgLTIwdDIwLjUgLTQ5dC0yMC41IC00OXQtNDguNSAtMjB0LTQ4LjUgMjB0LTIwLjUgNDl0MjAuNSA0OXQ0OC41IDIwek02NTkgMTE4cTI5IDAgNDkgLTIwdDIwIC00OXQtMjAgLTQ5dC00OSAtMjB0LTQ5IDIwdC0yMCA0OXQyMCA0OXQ0OSAyMHpNODMzIDUxNnEyNSAtNyAyNSAtMzNxMCAtMyAtMiAtOSBsLTg4IC0yOTNxLTcgLTI1IC0zMiAtMjVoLTQxN3EtMTIgMCAtMjEuNSA3LjV0LTExLjUgMTguNWwtODEgMzI3aC0xNDlxLTE0IDAgLTI0IDEwdC0xMCAyNHQxMCAyNHQyNCAxMGgxNzZxMjYgMCAzMyAtMjZsMTggLTczaDUwM2w1IDE1cTYgMjQgMzIgMjRxNyAwIDEwIC0xek03MTIgMjMxbDU0IDE3OWgtNDY2bDQ1IC0xODZoMzY1eiIgLz4KPGdseXBoIHVuaWNvZGU9IiUiIGhvcml6LWFkdi14PSI5MDMiIGQ9Ik04NjcgMjc3cTAgLTc5IC0zNy41IC0xNDl0LTEwMi41IC0xMTdsMTEgLTk2di00cTAgLTE3IC0xMSAtMzBxLTEzIC0xNSAtMzQgLTE1aC0xNDhxLTIxIDAgLTM0IDE1cS0xMSAxMyAtMTEgMzB2NWwyIDE4cS02IC0xIC0xOCAtMWgtMTBsMiAtMTd2LTVxMCAtMTcgLTExIC0zMHEtMTIgLTE1IC0zNCAtMTVoLTE0OHEtMjEgMCAtMzQgMTVxLTExIDEzIC0xMSAzMHY1bDExIDkwcS04NiA2MCAtMTI0IDE1M2wtNDQgLTRoLTRxLTE4IDAgLTMwIDEyIHEtMTUgMTIgLTE1IDMzdjE1MnEwIDIxIDE1IDMzcTEyIDEyIDMwIDEyaDRsNDMgLTRxMzQgODUgMTA3IDE0MWwtMiAxMTB2MXYxcTAgMjggMjUgNDNxMTEgNyAyNiA3cTE0IDAgMjUgLTdsMTI4IC03MnEyNSAzIDUxIDNxMTYwIDAgMjcwIC05OXExMTMgLTEwMCAxMTMgLTI0NHpNNjgxIDQ3cTYxIDQxIDk1LjUgMTAxdDM0LjUgMTI5cTAgMTE4IC05NCAyMDJxLTk2IDg1IC0yMzMgODVxLTI5IDAgLTUzIC00bC05IC0xbC0xMzYgNzdsMiAtMTMwIGwtMTIgLThxLTc5IC01NyAtMTA2IC0xNDRsLTcgLTIybC03NSA3di0xMjdsNzUgOGw3IC0yMnEzMyAtOTYgMTI0IC0xNTVsMTUgLTlsLTEzIC0xMTJoMTIzbC05IDc0bDM1IC00cTEzIC0yIDM5IC0ycTI0IDAgNDcgM2wzNiA0bC05IC03NWgxMjNsLTE1IDExNnpNNTAxIDUyMWw3IC0xcTcgMCAxOCAtMnQyNiAtNXQzMiAtOXQzNSAtMTR0MzcgLTIwLjV0MzYgLTI4LjVxOCAtNyA4IC0xOXQtOCAtMjBxLTggLTkgLTIwIC05cS0xMSAwIC0xOSA4IHEtMjQgMjMgLTU5IDM4LjV0LTU1LjUgMTkuNXQtMzUuNSA1aC00cS0xMSAxIC0xOSA5LjV0LTggMTkuNXExIDEyIDkuNSAyMHQxOS41IDh6TTIzMSAzODRxMTkgMjAgNDEgMjZ0MzQgLTVxMTEgLTExIDYuNSAtMzN0LTIzLjUgLTQydC00MC41IC0yNnQtMzMuNSA1dC03IDMzdDIzIDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDI2OyIgaG9yaXotYWR2LXg9IjczMiIgZD0iTTQ2NSA0MDVoMjUwdi0xOThoLTI1MHYtMjUwaC0xOTh2MjUwaC0yNTB2MTk4aDI1MHYyNTBoMTk4di0yNTB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJyIgaG9yaXotYWR2LXg9IjkwOCIgZD0iTTI2NSAxMzlxNzggNzggMTg4LjUgNzh0MTg4LjUgLTc4cTEgMCAxIC0xbC01NSAtNTVxLTEgMCAtMSAxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1ek0xNDAgMjY0cTg1IDg1IDE5OS41IDExNS41dDIyOC41IDB0MTk5IC0xMTUuNWwxIC0xbC01NiAtNTZxMCAxIC0xIDFxLTEwNiAxMDYgLTI1Ny41IDEwNi41dC0yNTcuNSAtMTA1LjV6TTg5MyAzOTJxMCAtMiAyIC0ybC01NiAtNTZsLTIgMnEtMTA0IDEwNCAtMjQ0IDE0MXQtMjc5LjUgMCB0LTI0My41IC0xNDFxLTEgMCAtMSAtMWwtNTYgNTZsMSAxcTEyMCAxMTkgMjgwIDE2MS41dDMxOS41IDB0Mjc5LjUgLTE2MS41ek0zOTIgMTNxMjYgMjUgNjMgMjV0NjMgLTI1bC02MyAtNjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKCIgaG9yaXotYWR2LXg9IjY3MSIgZD0iTTU1MCAzNTloNzd2LTQzN2gtNTgydjQzN2g3NXYxMjhxMCA4NyA2MiAxNDl0MTQ5IDYyaDRoNHE4OCAwIDE0OS41IC02MnQ2MS41IC0xNDl2LTEyOHpNNDAyIDJsLTMyIDE0MXEzMiAyMCAzMiA1N3EwIDI4IC0xOSA0N3QtNDcgMTlxLTI3IDAgLTQ2LjUgLTE5dC0xOS41IC00N3EwIC0zOCAzMyAtNTZsLTMzIC0xNDJoMTMyek00NDUgMzU5djEyOHEwIDQzIC0zMSA3NHQtNzUgMzFoLTNoLTVxLTQzIDAgLTc0IC0zMXQtMzEgLTc0di0xMjggaDIxOXoiIC8+CjxnbHlwaCB1bmljb2RlPSIpIiBob3Jpei1hZHYteD0iODg5IiBkPSJNNjQ1IDY5OHE4OCAwIDE1MCAtNjEuNXQ2MiAtMTQ5LjV2LTEyOGgtMTA2djI5bDM2IDM0djEzaC0zNnY1MnEwIDQ0IC0zMSA3NC41dC03NSAzMC41aC0yaC01cS00NCAwIC03NSAtMzAuNXQtMzEgLTc0LjV2LTEyOGg3N3YtNDM4aC01ODR2NDM4aDQwMXYxMjhxMCA4OCA2MiAxNDkuNXQxNTAgNjEuNWgzaDR6TTM4MiAwbC0zMyAxNDJxMzMgMjAgMzMgNTdxMCAyOCAtMTkuNSA0Ny41dC00Ni41IDE5LjVxLTI4IDAgLTQ3LjUgLTE5LjUgdC0xOS41IC00Ny41cTAgLTM3IDMzIC01N2wtMzMgLTE0MmgxMzN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKiIgaG9yaXotYWR2LXg9Ijc3NyIgZD0iTTczNyA0OTBsLTE5NSAtMTk1bDE5NSAtMTk2bC0xNTQgLTE1M2wtMTk1IDE5NWwtMTk1IC0xOTVsLTE1NCAxNTNsMTk1IDE5NmwtMTk1IDE5NWwxNTQgMTU0bDE5NSAtMTk1bDE5NSAxOTV6IiAvPgo8Z2x5cGggdW5pY29kZT0iKyIgZD0iTTQ2MCA3MDJxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTcwOSAyNjJ2NDFxMCAxNSAtMTAuNSAyNS41dC0yNS41IDEwLjVoLTEyMXEtMTUgMCAtMjUuNSAxMXQtMTAuNSAyNnYxMjFxMCAxNSAtMTEgMjUuNXQtMjYgMTAuNWgtNDFxLTE1IDAgLTI1LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTEyMXEwIC0xNSAtMTEgLTI2dC0yNiAtMTFoLTEyMCBxLTE2IDAgLTI2LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTQxcTAgLTE1IDEwLjUgLTI2dDI2LjUgLTExaDEyMHExNSAwIDI2IC0xMC41dDExIC0yNS41di0xMjFxMCAtMTUgMTAuNSAtMjUuNXQyNS41IC0xMC41aDQxcTE1IDAgMjYgMTAuNXQxMSAyNS41djEyMXEwIDE1IDEwLjUgMjUuNXQyNS41IDEwLjVoMTIxcTE1IDAgMjUuNSAxMXQxMC41IDI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiwiIGhvcml6LWFkdi14PSI5MTUiIGQ9Ik00NTggNzAxcTE3MyAwIDI5NSAtMTIyLjV0MTIyIC0yOTUuNXEwIC0xMDQgLTQ2IC0xOTFxLTU5IC0xMTUgLTE3MiAtMTc2cS05NCAtNTEgLTE5OSAtNTFxLTEwMSAwIC0xOTQgNDhxLTExNCA2MCAtMTc1IDE3M3EtNDkgOTMgLTQ5IDE5N3EwIDE3MyAxMjIuNSAyOTUuNXQyOTUuNSAxMjIuNXpNNzYwIDIwM3ExMSA0MSAxMSA4MHEwIDEzMCAtOTIgMjIydC0yMjEgOTJxLTEzMCAwIC0yMjIgLTkydC05MiAtMjIycTAgLTM5IDEyIC04NSBxMyAtOSA5IC0yNXEyMSA2IDQ1IDZxNjUgMCAxMTEuNSAtNDZ0NDYuNSAtMTExcTAgLTE3IC01IC0zN3E0IC0yIDEyIC00cTQyIC0xMSA4MyAtMTFxNDUgMCA4NyAxMnEyIDAgNS41IDJ0NS41IDJxLTUgMjIgLTUgNDBxMCA2NCA0Ni41IDExMC41dDExMC41IDQ2LjVxMjMgMCA0NCAtNnE1IDE1IDggMjZ6TTQ5OCAzMzNxMjUgLTE5IDI1IC01MHEwIC0xNCAtNSAtMjRxLTE2IC0zOSAtNTggLTM5cS0xMSAwIC0yNCA1cS0zOSAxNiAtMzkgNTggcTAgMSAwLjUgNHQwLjUgNWwtNTYgMjQ1bDIxIDl6TTQ3OCA1NjV2LTk1aC0zOXY5NWgzOXpNNjMyIDQ5MGwyNyAtMjdsLTY4IC02OGwtMjcgMjh6TTYyOSAzMDB2MzhoOTZ2LTM4aC05NnpNMTkyIDMwMHYzOGg5NXYtMzhoLTk1ek0yNDQgNDYzbDI4IDI3bDY3IC02N2wtMjcgLTI4eiIgLz4KPGdseXBoIHVuaWNvZGU9Ii0iIGhvcml6LWFkdi14PSI5MjEiIGQ9Ik00NjEgNjk4cTE3NCAwIDI5NyAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk3IC0xMjMuNXEtMTc1IDAgLTI5OCAxMjMuNXQtMTIzIDI5Ny41dDEyMyAyOTcuNXQyOTggMTIzLjV6TTY5NCAyNTh2MzlxMCAxOSAtMTQgMzN0LTMzIDE0aC0zNzZxLTE5IDAgLTMzIC0xNHQtMTQgLTMzdi0zOXEwIC0yMCAxNCAtMzMuNXQzMyAtMTMuNWgzNzZxMTkgMCAzMyAxMy41dDE0IDMzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iLiIgaG9yaXotYWR2LXg9Ijk0NSIgZD0iTTE0NyAzOTJxMzcgMCA2NCAtMjd0MjcgLTY0cTAgLTM4IC0yNi41IC02NXQtNjQuNSAtMjd0LTY1IDI3dC0yNyA2NXQyNyA2NC41dDY1IDI2LjV6TTQ3MiAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY0LjUgMjd0LTI2LjUgNjVxMCAzNyAyNi41IDY0dDY0LjUgMjd6TTc5OCAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY1IDI3dC0yNyA2NXEwIDM3IDI3IDY0dDY1IDI3eiAiIC8+CjxnbHlwaCB1bmljb2RlPSIvIiBob3Jpei1hZHYteD0iOTEyIiBkPSJNNjkzIDUzN2gxODF2LTEyN3YtMzAxaC0xODF2LTUzbC0xMzYgLTEzNmgtMzM2djE4OWgtMTgxdjMwMXYxMjdoMTgxdjE2M2g0NzJ2LTE2M3pNODE2IDQ4MGgtMTA1di01M2gxMDV2NTN6TTI3NSA2NDZ2LTEwOWgzNjR2MTA5aC0zNjR6TTUwMiAtMjZ2MTM2aDEzN3YxMzF2NTVoNTR2LTEyOWg2N3YxOTdoLTYwNHYtMTk3aDY1djExMXYxOGg1NHYtNTV2LTI2N2gyMjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iMCIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTY0MyAxNjFsMzkgLTQwbDI4IC0yN3EtNDcgLTYwIC0xMTYuNSAtOTQuNXQtMTQ4LjUgLTM0LjVxLTE0MCAwIC0yMzguNSA5OHQtOTkuNSAyMzhoLTExaC0yaC02N2wxMjYgMTI2bDEyNyAtMTI2aC01MWgtMjhxMCAtMTAwIDcxLjUgLTE3MXQxNzIuNSAtNzFxNjAgMCAxMTIuNSAyNy41dDg1LjUgNzQuNXpNODEwIDMwMWg1MmwtMTI3IC0xMjZsLTEyNiAxMjZoNTBoMzB2MnEwIDEwMSAtNzEuNSAxNzIuNXQtMTcyLjUgNzEuNSBxLTYxIDAgLTExMy41IC0yOC41dC04Ni41IC03Ni41bC0zOSAzOWwtMjggMjhxNDcgNjEgMTE2LjUgOTZ0MTUwLjUgMzVxMTM5IDAgMjM4IC05OXQ5OSAtMjM4di0yaDI4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjEiIGhvcml6LWFkdi14PSI3NDMiIGQ9Ik02ODggMjM1aDI5di0zMHEwIC0xNDMgLTEwMC41IC0yNDMuNXQtMjQzLjUgLTEwMC41dC0yNDQgMTAxdC0xMDEgMjQzcTAgMTQzIDEwMSAyNDR0MjQ0IDEwMXExNiAwIDI1IC0xdjc5djcxbDQ5IC01MGwxNTcgLTE1N2wyMSAtMjFsLTIxIC0yMGwtMTU3IC0xNTdsLTQ5IC01MHY3MHY4OHEtMTggMiAtMjUgMnEtODMgMCAtMTQxIC01OHQtNTggLTE0MXEwIC04MiA1OC41IC0xNDB0MTQwLjUgLTU4dDE0MCA1OHQ1OCAxNDB2MzBoMzBoODd6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjIiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NTkgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjNxLTE3MyAwIC0yOTYgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk2IDEyM3pNNzI4IDM5MnE2IDYgNiAxNXQtNiAxNmwtNTUgNTRxLTYgNiAtMTUgNnQtMTYgLTZsLTI0MyAtMjQ0cS0xNSAtMTYgLTMxIDBsLTg4IDg4cS0xNiAxNiAtMzEgMGwtNTUgLTU0cS02IC03IC02IC0xNnQ2IC0xNWwxMzkgLTE0MHExNSAtMTUgMzcgLTE1aDI2cTIwIDAgMzcgMTV6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjMiIGhvcml6LWFkdi14PSI4NjgiIGQ9Ik0yMiAyMzlxLTEwIDEwIC0xMCAyNHQxMCAyNGw4MyA4M3ExMCAxMCAyMy41IDEwdDIzLjUgLTEwbDEzNiAtMTM1cTEwIC0xMCAyMy41IC0xMHQyMy41IDEwbDM3MSAzNzJxMTAgMTAgMjMuNSAxMHQyMy41IC0xMGw4MyAtODJxMTAgLTEwIDEwIC0yMy41dC0xMCAtMjMuNWwtNDUwIC00NTFxLTI0IC0yNCAtNTcgLTI0aC0zOXEtMzIgMCAtNTYgMjR6IiAvPgo8Z2x5cGggdW5pY29kZT0iNCIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTU5IDcwMGw3MDIgLTM1MWwtNzAyIC0zNTB2NzAxeiIgLz4KPGdseXBoIHVuaWNvZGU9IjUiIGhvcml6LWFkdi14PSI4MTYiIGQ9Ik01OSAxdjY5OGgyNjJ2LTY5OGgtMjYyek00OTUgNjk5aDI2MnYtNjk4aC0yNjJ2Njk4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjYiIGhvcml6LWFkdi14PSI4MTciIGQ9Ik03NTggMmgtNjk5djY5OGg2OTl2LTY5OHoiIC8+CjxnbHlwaCB1bmljb2RlPSI3IiBob3Jpei1hZHYteD0iOTIyIiBkPSJNNDIzIDQxN3YxODJsNDg1IC0yNDNsLTQ4NSAtMjQydjE4MWwtMzY0IC0xODF2NDg1eiIgLz4KPGdseXBoIHVuaWNvZGU9IjgiIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik01MDAgMjk1di0xODJsLTQ4NiAyNDNsNDg2IDI0MnYtMTgybDM2MyAxODJ2LTQ4NXoiIC8+CjxnbHlwaCB1bmljb2RlPSI5IiBkPSJNNDYwIDcwMHExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzdC0yOTcgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk3IDEyM3pNMjk4IDY0bDQzMSAyMTZsLTQzMSAyMTZ2LTQzMnoiIC8+CjxnbHlwaCB1bmljb2RlPSI6IiBob3Jpei1hZHYteD0iODAxIiBkPSJNNjcxIDEwMGwxMDUgLTEwMnEwIC0xNiAtMTIgLTI4LjV0LTI5IC0xMi41aC0yNDJxMSAtNCAxIC0xMnEwIC0zOSAtMjcuNSAtNjYuNXQtNjYuNSAtMjcuNXQtNjYuNSAyNy41dC0yNy41IDY2LjVxMCAyIDAuNSA2dDAuNSA2aC0yNDFxLTE2IDAgLTI4LjUgMTIuNXQtMTIuNSAyOC41bDEwNSAxMDJxLTEgOCAtMSAyNXYyMDhxMCA4OCA1MC41IDE1OHQxMzAuNSA5OHEtNCAxMSAtNCAyNnEwIDM5IDI3LjUgNjYuNXQ2Ni41IDI3LjUgdDY2LjUgLTI3LjV0MjcuNSAtNjYuNXEwIC0xNCAtMyAtMjZxODAgLTI4IDEzMC41IC05OC41dDUwLjUgLTE1Ny41di0yMDhxMCAtMTcgLTEgLTI1ek0zNDggNjE1cTAgLTUgMiAtMTVxMjggNSA1MCA1cTIzIDAgNTAgLTVxMyA4IDMgMTVxMCAyMiAtMTUuNSAzN3QtMzcuNSAxNXQtMzcgLTE1dC0xNSAtMzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iOyIgaG9yaXotYWR2LXg9Ijg4NyIgZD0iTTI5OSA0MThsLTQyIC00NHEtNCAtNSAtMTEgLTEyLjVsLTEyLjUgLTEzLjVsLTEwLjUgLTExcS0xOCAxNiAtMjcgMjNxLTQ5IDQwIC04MSA0MGgtMTAxdjExMmgxMDFxNTkgLTEgMTE4IC00MXEzMyAtMjEgNjYgLTUzek0zOTkgMTU2bDQ0IDQ3bDMyIDM0cTE2IC0xNCAyNiAtMjJxNTIgLTQyIDg0IC00MGg4NnY5NGwxNzUgLTE0OGwtMTc1IC0xNDZ2ODhoLTg2cS01NiAwIC0xMjAgNDBxLTI3IDE3IC02NiA1M3pNNTgyIDQwMCBxLTIzIDAgLTU2IC0yMnEtMzUgLTIzIC03OCAtNjhxLTE5IC0xOSAtNTQuNSAtNTcuNWwtNjYuNSAtNjkuNXQtNjAgLTU1cS04MCAtNjQgLTE1NCAtNjVoLTk5djExMmg5OXEyNiAwIDU5IDIycTI5IDE4IDc5IDY4cTUgNSA3MyA3Ny41dDEwNyAxMDQuNXE4MSA2NCAxNTIgNjVoODh2OTJsMTc1IC0xNDdsLTE3NSAtMTQ3djkwaC04OGgtMXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gzYzsiIGhvcml6LWFkdi14PSIzOTUiIGQ9Ik0xMTUgNDEwbDIyMiAyMjN2LTY2OGwtMjIyIDIyMmgtMTEydjIyM2gxMTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iPSIgaG9yaXotYWR2LXg9Ijk0NyIgZD0iTTg5NiAzNzl2LTE3NmwtNjMgLTI1di0xMDhoLTc3M3Y0NDJoNzczdi0xMDl6TTc2MCAxNDR2Mjk0aC02MjZ2LTI5NGg2MjZ6TTM3MyAzOTBsMjIyIC0xOThoLTQxM3YxOThoMTkxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDNlOyIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTEyNiA0MDhsMjIyIDIyM3YtNjY4bC0yMjIgMjIyaC0xMTJ2MjIzaDExMnpNNDM0IDQzOHE3NSAtNTAgNzUgLTE0MHQtNzUgLTEzOWwtMzQgNjdxMzUgMjggMzUgNzJ0LTM1IDcydjJ6TTY4MCAyOThxMCAtOTIgLTQ2IC0xNjguNXQtMTIzIC0xMjAuNWwtMzQgNjZxNTkgMzQgOTQgOTMuNXQzNSAxMjkuNXQtMzUgMTI5LjV0LTk0IDkzLjV2MmwzMyA2NXE3NyAtNDQgMTIzLjUgLTEyMS41dDQ2LjUgLTE2OC41ek01ODcgNzM4IHExMTggLTY2IDE4OC41IC0xODN0NzAuNSAtMjU3dC03MC41IC0yNTd0LTE4OC41IC0xODJsLTMzIDY2cTk5IDU2IDE1OC41IDE1NS41dDU5LjUgMjE3LjV0LTU5LjUgMjE3LjV0LTE1OS41IDE1NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Ij8iIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik00NjEgNzAycTE3NSAwIDI5OCAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk4IC0xMjMuNXEtMTc0IDAgLTI5Ny41IDEyMy41dC0xMjMuNSAyOTcuNXQxMjMuNSAyOTcuNXQyOTcuNSAxMjMuNXpNNDg5IDI5cTE5IDE4IDE5IDQ3dC0xOSA0N3EtMjAgMTcgLTQ5IDE3cS0yOCAwIC00OCAtMTdxLTIwIC0yMCAtMTggLTQ3cS0yIC0yNyAxOCAtNDdxMTkgLTE3IDQ4IC0xN3EzMiAwIDQ5IDE3ek02MDIgMzUxcTEwIDI0IDEwIDYyIHEwIDU4IC00MSA5M3EtMzggMzQgLTEwOCAzNHEtNDkgMCAtODUgLTEycS0zMyAtMTEgLTYzIC0zMWwtOSAtNmw0NiAtODdsMTAgOHEyIDEgMTkgMTFxNyA0IDIzIDEwcTEwIDQgMjMgNnE3IDIgMjEgMnEzMCAwIDM4IC0xMHExMSAtMTEgMTEgLTMxcTAgLTEzIC03IC0yNXEtMTIgLTE2IC0yMSAtMjRxLTQgLTQgLTguNSAtOGwtMTAgLTl0LTkuNSAtOHEtMTcgLTE2IC0zMCAtMzRxLTEyIC0yMCAtMjAgLTQ2cS01IC0yMiAtNSAtNDEgcTAgLTQgMC41IC0xMnQwLjUgLTEybDEgLTExaDExaDg4djEycTAgMjYgOCA0MnE5IDE2IDIxIDMwcTE0IDE0IDI5IDI1dDMyIDMwcTE0IDE3IDI1IDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IkAiIGhvcml6LWFkdi14PSI1MDgiIGQ9Ik0yNTggNzAzcTkyIDAgMTU3LjUgLTY2dDY1LjUgLTE1N3EwIC0xMDcgLTIwMyAtNTQ2bC0yNCAtNTBsLTYzIDEzNXQtMTAxIDI0NC41dC02MyAyMTYuNXEwIDkyIDY1LjUgMTU3LjV0MTU3LjUgNjUuNWg0aDR6TTI1NCAzOTdxNDIgMCA3MiAzMHQzMCA3M3EwIDQyIC0zMCA3MnQtNzIgMzBxLTQzIDAgLTczIC0zMHQtMzAgLTcycTAgLTQzIDMwIC03M3Q3MyAtMzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iQSIgaG9yaXotYWR2LXg9Ijg5MyIgZD0iTTMxNSAyOTlsNzAgLTcwcS0zOCAtMzIgLTg4LjUgLTMwdC04Ni41IDM4bC0xNDQgMTQ0cS0zOCAzNyAtMzggOTF0MzggOTFsOTkgOTlxMzggMzggOTEuNSAzOHQ5MS41IC0zOGwxNDQgLTE0NHEzNiAtMzYgMzcuNSAtODYuNXQtMzAuNSAtODguNWwtNzAgNjlxMTAgMjAgLTYgMzhsLTE0NCAxNDRxLTkgOSAtMjIuNSA5dC0yMi41IC05bC05OSAtOTlxLTEwIC0xMCAtMTAgLTIzdDEwIC0yM2wxNDQgLTE0NHExNiAtMTYgMzYgLTZ6TTcyOCAtOTkgcS0zOCAtMzcgLTkxIC0zN3QtOTEgMzdsLTE0NSAxNDVxLTM1IDM1IC0zNyA4NS41dDMwIDg4LjVsNjkgLTcwcS05IC0yMCA3IC0zNmwxNDQgLTE0NHE5IC0xMCAyMi41IC0xMHQyMi41IDEwbDk5IDk5cTEwIDkgMTAgMjIuNXQtMTAgMjIuNWwtMTQ0IDE0NXEtMTYgMTYgLTM3IDVsLTY5IDcwcTM4IDMyIDg4LjUgMzAuNXQ4Ni41IC0zNy41bDE0NCAtMTQ0cTM3IC0zOCAzNyAtOTEuNXQtMzcgLTkxLjV6TTI2MyA0NjVxMTQgMTQgMzQgMTQgdDM0IC0xNGwyOTUgLTI5NXExNCAtMTQgMTQgLTM0dC0xNCAtMzR0LTM0IC0xNHQtMzQgMTRsLTI5NSAyOTRxLTE0IDE0IC0xNCAzNC41dDE0IDM0LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQiIgaG9yaXotYWR2LXg9Ijg4MSIgZD0iTTczNCAzMTFxLTE0IC0yNyAtNDIgLTUwcS0xMiAtMzAgLTMxLjUgLTU4dC01NC41IC02MHQtOTIuNSAtNTEuNXQtMTI5LjUgLTE5LjVxLTc3IDAgLTE0My41IDIxdC0xMDUuNSA1MXQtNjcgNjB0LTM5IDUxbC0xMSAyMXE1IC0zIDE0LjUgLTYuNXQzOC41IC0xMS41dDU4IC0xMnQ3MCAtMC41dDc4IDE3LjVxLTY0IDI3IC05NiA5MXEtMjEgNDMgLTggNTRxNyA3IDI1IC0xMHE1MyAtNTAgMjEyIC00MXE3IDggMjEgMjZ2NXEwIDY3IDQ3IDExNCB0MTE0IDQ3cTY0IDAgMTEwIC00My41dDUxIC0xMDYuNWwxMDIgLTQ5ek02MjYgNDY5cS0xOSAwIC0zMiAtMTMuNXQtMTMgLTMyLjV0MTMgLTMydDMyIC0xM3QzMi41IDEzdDEzLjUgMzJ0LTEzIDMyLjV0LTMzIDEzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQyIgaG9yaXotYWR2LXg9IjkxMyIgZD0iTTc3MSAzMTdxNDYgLTE4IDc0IC01OS41dDI4IC05Mi41cTAgLTY4IC00OC41IC0xMTYuNXQtMTE2LjUgLTQ4LjVxLTIgMCAtNSAwLjV0LTQgMC41aC00OTRoLTFoLTJxLTY5IDEgLTExNy41IDUwdC00OC41IDExOXEwIDQ1IDIyLjUgODMuNXQ2MC41IDYwLjVxLTYgMTYgLTYgMzVxMCA0NyAzNCA4MXQ4MSAzNHEzOCAwIDcxIC0yNXEzMSA2NCA5MSAxMDN0MTMzIDM5cTEwMyAwIDE3NiAtNzIuNXQ3MyAtMTc2LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkQiIGhvcml6LWFkdi14PSI5MTciIGQ9Ik00NTkgNjk4cTE3MyAwIDI5NS41IC0xMjN0MTIyLjUgLTI5NnQtMTIyLjUgLTI5NS41dC0yOTUuNSAtMTIyLjV0LTI5NiAxMjIuNXQtMTIzIDI5NS41dDEyMyAyOTZ0Mjk2IDEyM3pNNTc0IDI1MnEtMTEgMTIgLTExIDI4dDExIDI4bDEwOSAxMDhxMTEgMTIgMTEgMjguNXQtMTEgMjcuNWwtMzEgMzFxLTEyIDExIC0yOC41IDExdC0yNy41IC0xMWwtMTA4IC0xMDlxLTEyIC0xMSAtMjguNSAtMTF0LTI3LjUgMTFsLTEwOSAxMDkgcS0xMSAxMSAtMjcuNSAxMXQtMjcuNSAtMTFsLTMxIC0zMXEtMTEgLTExIC0xMSAtMjcuNXQxMSAtMjguNWwxMDkgLTEwOHExMSAtMTIgMTEgLTI4dC0xMSAtMjhsLTEwOSAtMTA4cS0xMSAtMTIgLTExIC0yOC41dDExIC0yNy41bDMxIC0zMXExMSAtMTEgMjcuNSAtMTF0MjcuNSAxMWwxMDkgMTA5cTExIDExIDI3LjUgMTF0MjguNSAtMTFsMTA4IC0xMDlxMTEgLTExIDI3LjUgLTExdDI4LjUgMTFsMzEgMzFxMTEgMTEgMTEgMjcuNXQtMTEgMjguNXogIiAvPgo8Z2x5cGggdW5pY29kZT0iRSIgaG9yaXotYWR2LXg9Ijg5NSIgZD0iTTQ0OCA1MzFxNjMgMCAxMjkuNSAtMjMuNXQxMTUuNSAtNTd0ODkuNSAtNjd0NjEuNSAtNTcuNWwyMSAtMjN2LThsLTIyIC0yNC41dC01OS41IC01NC41dC05MiAtNjl0LTExNCAtNTQuNXQtMTMwLjUgLTI0LjV0LTEyOS41IDIzLjV0LTExNS41IDU3dC04OS41IDY3dC02MS41IDU2LjVsLTIxIDI0djlsMjIgMjQuNXQ1OS41IDU0LjV0OTIgNjguNXQxMTQgNTR0MTMwLjUgMjQuNXpNNDQ2IDE1OHE1OCAwIDk4LjUgNDAuNXQ0MC41IDk4LjUgcTAgNTcgLTQwLjUgOTcuNXQtOTguNSA0MC41cS01NyAwIC05Ny41IC00MC41dC00MC41IC05Ny41cTAgLTU4IDQwLjUgLTk4LjV0OTcuNSAtNDAuNXpNNDQ2IDM2MXEyNiAwIDQ1IC0xOXQxOSAtNDV0LTE5IC00NC41dC00NSAtMTguNXQtNDQuNSAxOC41dC0xOC41IDQ0LjV0MTguNSA0NXQ0NC41IDE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IkYiIGhvcml6LWFkdi14PSI3MDQiIGQ9Ik0yMjQgNzAwaDQyMnYtODE4aC01OTN2NjQ2bDE3MSAxNzF2MXpNNTc4IC01MHY2ODJoLTI4NXYtMTcyaC0xNzJ2LTUxMGg0NTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iRyIgZD0iTTQ2MCA2OThxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTczOCA0MDFsLTEgLTNxLTEgLTMgLTEgLTUuNXQyIC0yLjVxMCAtMiAzIC02dDMgLTh2LTExcTEgLTIgNSAtM3ExIC00IDYgLTV0NiAzcS0zIDAgLTIuNSA0LjV0LTAuNSA0LjVxMCAyIC0xIDNxLTIgMiAtMiAzaDdxMCAyIC0yIDV0LTIgNHEtMSAwIC0yLjUgLTF0LTIgLTF0LTAuNSAyIHQtNCA2bC0yIDdxMyAwIDYgMXEtMSAwIDQgMnEtMSAxIC0yIDRxLTIgNCAtNyAycS0yIDAgLTUgLTIuNXQtNSAtMi41ek03MzUgODFxNjMgOTAgNjMgMTk3cTAgMTkgLTEgMjhxLTkgMCAtMTMgMnEtNCAwIC0xNC41IDQuNXQtMTYuNSAyLjVxMCAxIC0xIDFxMiAzIC01IDExcS01IDQgLTcgMHEtMiAtMyA1IC0xMHEwIC0yIDIgLTZxMiAtMSAxIC0zdC0xIC0zcTQgMCA1IDdxMCAtMSAxIC0xcS0yIC0zIDEgLTZ2LTVxMTAgMCAxNCAxMCBxMSAwIDEgLTJ0MSAtM3EzIC0zIDIgLTV0MiAtMnEyIC0xIDIgMXYycTQgLTIgNCAtNnQtNCAtNnEwIC0xIC0xIC0zdC0xIC00cTAgLTYgLTQgLThsLTQgLTJxLTQgLTMgLTggLTUuNXQtNCAtMy41cS0xMiAwIC0xNSAtN3EtNyAwIC0xMSAtNHEtNiAwIC04LjUgNnQtNC41IDZsLTIgNXExIDAgLTEuNSA2bC01LjUgMTN0LTMgOWwtNSAxMHEtMiAxIC03IDEycS04IDQgLTEwIDEzcTEwIDAgMTAgNHEtMSAwIC0yIDFxLTIgMiAxIDJsMyA5IHEwIDEgMSA1LjV0MSA2LjVxLTIgMCAtOCAtMnEwIC0xIC0xLjUgLTAuNXQtMy41IDAuNWwtMyAxcTAgMSAtNi41IDB0LTguNSAycS0yIDIgLTQgMTRxLTEgMyAtOCAzcS0zIDEgLTMuNSAtMXQwLjUgLTVsMSAtNHEyIDAgLTIgLTdxLTEgLTEgLTEgLTJxLTQgMSAtNiA2dC00IDZxLTEgNCAtMyA0cTAgMTAgLTEgMTBsLTMgMXEtNCAyIC01IDNxLTIgMCAtNS41IDMuNXQtNi41IDUuNXQtNCAwbDMgLTZxMiAwIDUgLTQuNXQ3IC0zLjV2LTUgcTMgMSA0LjUgLTEuNXQyLjUgLTIuNXEwIC0xIC0zIDBxLTQgMiAtMyAtMXEyIC02IC00IC05cTAgMTIgLTMgMTJxLTIgMyAtNyA1dC02IDRxLTEgMCAtMy41IDMuNXQtNC41IDQuNXEtMiAtMiAtNSAtMnEtMSAtMiAtNC41IC0yLjV0LTcuNSAwLjVsLTMgMXEtNyAtMTggLTggLTIwcS0xIC0zIC0zIC01dC0zIC01cTAgLTEgLTcuNSAtMS41dC03LjUgLTEuNXEtMTEgNCAtMTEgMTN2NXQxIDl0MSA2bDIgLTJoMy41aDQuNXQzLjUgMXQxLjUgMiBxNCAwIDMgLTRxOSAtMyA5IDNxLTIgMCAtMiAycTMgNCAyIDd0LTQgNnQtMyA0bC00IDRxOSAtNiAxMSAtMXEwIDEgLTEgM3YxcTIgLTIgMy41IC0yLjV0Mi41IDEuNXEyIDEgMyAzdjZxMyAtNCA0LjUgMHQyLjUgNXEwIC0zIDMgMHEyIDIgMyAycTEgMiA1IDIuNXQ1IDMuNXEtMyAxIC0zIDEycTIgMCA0LjUgMS41dDMuNSAxLjV0MiAtMnEwIC02IDEgLTZxNCAyIDQgNXEtMiAwIC01IDEwcS0zIDAgLTUgLTJxLTMgMCAtNy41IDF0LTYuNSAxIHEtNyA3IC02IDdxLTIgNCAyIDVoMnEwIDIgMTEuNSA1dDEyLjUgOHEtNiAwIDggMTNxMTAgOCAxNCA4cTEgMCA5LjUgMmwxNC41IDMuNXQ4IC0wLjVxMjIgMCAyMiAtMnExIDAgMy41IC0xdDQgLTEuNXQzLjUgMC41cTMgMiAxMSAtMnQ4IC04cS0zIDAgLTEyIC0xdC0xNCAtMXYtMnEyIDAgNS41IC00LjV0Mi41IC02LjVxMyAwIDYgMnQ0IDJxMCAtMiAxIC0zcTMgLTIgNCAzbC0xIDRxMSAyIDQuNSAyLjV0NC41IDMuNXEtNDcgNTYgLTExNC41IDg4IHQtMTQzLjUgMzJxLTEzNCAwIC0yMzEgLTkxcTEgLTEgNSAybDIgMXEwIC02IDEgLThsMyAtN3E4IDAgOSAtMmgtNXExIC02IC0zIC00cS0zIDEgLTQgMXEwIDEgLTMgMnQtNSAwdDAgLTVxMSAwIDIgLTF0MyAtMnEyIDAgNi41IC0xdDYuNSAtMnEyIDAgNSAwLjV0NCAwLjVxMiAxIDMgMnQtMSAycTEgMiAtNCA0cTAgMSAxMSAxcTIgMiAxLjUgMy41dDAuNSAzLjV0NCAydDQgM3E0IC0yIDUgLTZxMSAwIDMgLTNxOSAtMTAgOSAtM3E2IC0xIDYgLTExIHE3IDEgNyAxMXEtMSAwIC0xIDNoNHEyIC0xIDIgMXExIDAgMSAtMmg4di0xMXEwIC0yIC0yIC0zdC0zIC0xbC0yIC0xcS0zIC00IC0xLjUgLTV0Ni41IC0zLjV0NiAtMy41bC04IDFxLTEgMCAtNC41IC0wLjV0LTYgLTF0LTQuNSAwLjVxNSAwIDcgMTFxLTggMiAtMTEgLTVxLTEgLTQgLTQgLTMuNXQtNCAtMS41bC0yIC0xcS0zIC0xIC01IC0xLjV0LTIgMC41cS03IC0yIC03IC0xN3ExMSAtOCAxMSAtMTJxNCAtMSA5LjUgLTJ0OC41IC0xIHExIC0zIDQgLTNxMCAtNCA5IC00cTAgNiA2IC00cTEgLTIgMSAtM3EtMSAwIDAgLTIuNXQzIC01LjVxLTIgMCAtMSAtMXEyIC0yIDUuNSAtMXQzLjUgM3EtMiAwIC0yIDZxLTYgNiAxIDhxMCAtNCA2IDFxMiAyIC0xIDNxMiA5IDAgMTJxLTEgMSAtMi41IDF0LTIuNSAycTQgMSAxIDE0aDVxMiAwIDUuNSAtMS41dDUuNSAtMXQzIDMuNXEzIC0yIDQuNSAtNXQ0LjUgMXEwIC0xIDQgLTUuNXQ1IC00LjVxMCAtMyAyIC0zbC0xIC0ycTcgMCA3IDEgcTYgMCA2IDhxMSAwIDIuNSAtM2wzIC02dDIuNSAtM2wyLjUgLTIuNWwzIC0zdDIuNSAtM3QxIC0yLjVxMiAtMiAyIC01cTEgMCAyIDJxMyAzIDMgLTFxMiAwIDQuNSAtMi41dDIuNSAtMy41cS0yIDAgLTEuNSAtMnQtMC41IC0ycTAgLTEgLTExIC0xcS0xIC01IC02IC02dC0xMSAwLjV0LTExIC0wLjVxLTQgLTIgLTkuNSAtOC41dC01LjUgLTEwLjVxMyAwIDcuNSAzLjV0Ni41IDQuNXEyIDAgMTAgNHEwIC0xIDEgLTF2LTFxLTYgMCAtMiAtNyBxMSAtMSAxIC0ycTMgLTUgOCAtNXEwIC0xIC0yLjUgLTF0LTIuNSAtMmwtNSAtM2gtNmwxIDFsMSAxaDN2NHEtMyAwIC02IC0xLjV0LTUgLTEuNXEtNCAtNCAtNiAtNHEtMiAtMTAgLTYgLTEybC0yIC0xbC00IC0ybC0yIC0ybC0yIC0ycS0xIC0yIC0yIC01cS0zIC03IC0zIC05cS0xIDAgLTMuNSAtNS41dC02LjUgLTUuNXEtMSAtMiAtNS41IC02dC00LjUgLTEwcTEgLTEgMS41IC00dDEuNSAtNi41dDEgLTQuNXEwIC04IC00IC04bC0yIDN0LTEgMyBxMCA0IC00IDEycTAgMiAtNC41IDEuNXQtNS41IC0wLjVxLTEgMyAtMTMgM3EwIC0xIDEgLTJ0MSAtM3EtNiAtMiAtNyAtMnEtMiAwIC00LjUgMi41dC01LjUgMS41cS0xNCAtMiAtMTQgLTE2cS0xIDAgLTEgLTguNXQxIC04LjVxMCAtMiAyIC02dDIgLTVxMiAwIDYgLTR0NSAtNHExIC00IDUgLTRsMiAxbDIgNHEtMyAxIC0xLjUgMy41dDMuNSAzLjVxMCAtMiA2IDJsNiAybDIgMnExIC0zIC0xIC00cS0yIDAgLTMgLTNsLTEgLTIgcS0xIC0yIC0yIC01dC0xIC01dDEgLTQuNXQwIC00LjVoMTN2M3EzIDAgMi41IC02LjV0MS41IC02LjVxMCAtMiAxIC02dDEgLTVxNSAtMyA0IC04cTEyIDAgMTIgM3E3IDAgNSAtN3E1IDAgNiAzdDEgNS41dDIgMi41cTAgMyAyIDFsNiAzbDMgMnEyIC0xIDIgLTJxNSAwIDkgNHEyIDAgNCAtNXQ2IC01cTEyIDAgMTMgMXEzIC0yIDMgLTNxMSAwIDIgLTFsMSAtMWgxbDQgLTRxMCAtMiAyLjUgLTN0Mi41IC0ybDEgLTFsMyAtMmw5IC0zcTEgMyA0IDAgcTEgLTEgMiAtMWwyIC0ycTEgLTEgNCAtN3EyIC0yIDQgLTExcS0xIDAgLTEgLThsNCAtMXEyIDAgMiAycTIgMCA1IC0ydDQgLTJxLTIgLTIgMSAtMy41dDMgMi41cTMgMCAzIC0xMXEyIDAgNC41IDEuNXQ0LjUgMS41cTYgMCA2IDFxOCAtMiAxMyAtOHE1IC01IDUuNSAtMTR0LTQuNSAtMTRsLTggLTEwcTAgLTEyIC0xIC0xMnEwIC0xNCAtMyAtMTRxMCAtMyAtMi41IC03dC0zLjUgLTZxLTEgLTEgLTYuNSAtNC41dC02LjUgLTUuNSBxLTEgMCAtNCAtMXQtNCAtMWwtMiAtM3EtMyAtMyAtMiAtM3EwIC0xIC0wLjUgLTcuNXQtMS41IC04LjVxLTQgLTIgLTMgLTRxLTEgMCAtMS41IC0xdC0zLjUgLTFxLTIgMCAtNSAtMi41dC0zIC01LjVxLTIgLTggLTYgLTExbC0zIC0ycS00IC0yIC00IC00di04cS02IDAgLTggLTRxLTQgMCAtMTEgLTRxMCAtNCAtMiAtNHEwIC00IC0zIC0zdC00IDBxMiAwIDIgLTZxMCAtMSAtNiAtOWwtMSAtMnEtMiAtMyAtMyAtM3EwIC0xIC0wLjUgLTQgdC0wLjUgLTV2LTNsMiAycTAgMSAyIC0xcS0xIC0yIC0zIC00dC0zIC01cS01IDAgLTUgLThxMCAtMiAxIC0ycTAgLTEgMiAtNWwtMjcgOXEwIDM3IDQgMzdxMCA5IDIgOXYxNHEtMSAyIDEuNSA2LjV0Mi41IDYuNXEzIDEgMy41IDEwdDAuNSAxN3QyIDhxMCA0IDEuNSAyMC41dC0wLjUgMjAuNWwtNyA4cS01IDAgLTkgNi41dC00IDEyLjVxLTMgOSAtMyAxMHExIDAgLTIgNC41dC02IDkuNWwtNCA1cS0zIDMgLTMgNC41dDIgNXQyIDYuNSBxLTQgMiAtMiAxMC41dDUgOC41cTAgMyAzIDRxMSAtMyAzIC0ycTMgMyAwIDV2MTNxMCAxMCAtNSAxMHEtMiAwIC00IC01cS0xIDEgLTUgMS41dC03IDJ0LTMgNC41cTIgNiAtOCAxMXExIDQgLTUuNSA4LjV0LTEwLjUgNC41cTAgMSAtMiAxLjV0LTIgMS41cS0yIDAgLTUgM3QtNiAzcS00IDAgLTEwIDIuNXQtOSAyLjVxLTEgMiAtNi41IDN0LTYuNSAzcS03IDAgLTcgMTNxMCAxOCAtOSAxOHEwIDMgLTQgNi41dC02IDMuNXEtMyA3IC01IDcgcTAgNCAtNiA5cS0zIDIgLTMgMHEtMSAtMiAyLjUgLTUuNXQzLjUgLTUuNXExIDAgOCAtMTNxNiAtMTAgMyAtMTFxLTQgLTEgLTEwIDhxLTIgNCAtMiA2cS0yIDEgLTQuNSA2LjV0LTIuNSA3LjVxLTEgMSAtMi41IDR0LTIuNSA2bC0xIDJxMCAxMCAtMTEgMTBsLTcgOXEwIDEwIC04IDEzcTAgMiAtMSA5dDAgMTBxMCAyMyAtMTAgMzFxLTMzIC02OCAtMzMgLTE0NHEwIC0xNDAgOTkuNSAtMjM5dDIzOS41IC05OXE4MiAwIDE1MyAzN3QxMTggMTAwIHEtNyAtMiAtOSA5cS0zIDE3IDIgMzJxNSAtMiA2IDBxLTQgMSAtMiA2cTEwIC03IDEwIDJsLTIgMnEwIDIgMSAzdDEuNSAwLjV0MC41IC0yLjVxMyAwIDMuNSA0LjV0MS41IDUuNXEwIC0xMSAzIC0xMnEyIC0yIC0wLjUgLTQuNXQtMi41IC0zLjVxLTIgLTEgLTIgLTZoLTNxMCAtMyAtMSAtOC41dC0xIC03LjVxLTIgMCAtMiAtMTZ6TTY2NiAzODNxMiAtMSAyIC00cTI1IDAgMjUgM3ExIC0yIDIgLTN0MiAycTEgMCA0LjUgLTN0Ny41IC0ybDcgNCBsLTIgMXEwIDYgLTUgOS41dC02IDQuNXEtMSAwIC0zLjUgMXQtNC41IDFxLTMgMiAtNiAtMXEtMyAtMiAtMyAwcS0xIDIgLTMgMnEwIDggLTkgN3EtMSAtMyAtMy41IC03dC0zLjUgLTcuNXQtMSAtNy41ek01MTggNDkxcTAgLTUgLTEgLTVxLTUgLTMgLTEwIC0zaC0xMXEtMiAwIC0xMCAycTAgMSAxIDJxMyA0IC0xIDRxNyAzIDggM3YtMXYtNHEwIC0xIDIgLTAuNXQ0LjUgMXQzLjUgMS41cTMgMCA2IDFxMSAxIDEuNSAwLjV0MC41IC0zLjV6IE01NTEgNDQ0cTAgMiAtMSA0dC0xIDRxMCAzIDMgMi41dDQgMy41cTMgLTEgMCAtM3YtNHEyIDAgNCAydDMgMnEtMiAtNyAtMSAtOHE1IC01IDQgLTZxNyAwIDUgLTExcTMgMCAzIDNxMiAtMSAyIC0yLjV0LTIgLTEuNXEtMyAtNSAtMTUgLTVxMCA2IC00IDNxLTMgLTEgLTIgNHExIDIgMSAzcS0yIDEgNSAycS0xIDggLTggOHpNNTM2IDQyOHEtMiAyIDAgOHEtMyAxIDEgMmw1IDJxLTQgMCAtMiA0aDJxMSAtMiAyIC0xaDRxMSAtMSAwIC0zIHEtMyAtMTIgLTEyIC0xMnpNNTUxIDQyMnExIDAgMSAxaDNxMCAtMiAtMS41IC0ydC0yLjUgMXpNMzkyIDQwMXExIDEgNCAzcTAgLTMgLTQgLTN6TTU5OCAzODhxMiAwIC0xIC02cS0xIDIgLTIgNXEzIDAgMyAxek01OTggMzgwcTIgMCAxLjUgLTQuNXQtNS41IC0zLjVxMCA3IDIgN2wxIC0ycTEgMSAxIDN6TTYyMCAzNjVxMCAtNCAtMSAtNC41dC00LjUgMS41dC01LjUgMmg1cTEgLTEgNiAxek03MjggMjQwcTYgMCA2IDFxMTAgMCAxNiAzIHEwIC00IC0yLjUgLTkuNXQtMS41IC05LjVxLTMgMCAtMyAtNWwtMiAtMnEtMiAtMyAtNCAtNHEwIC0yIC05IC0xMXEtMSAtMiAtNS41IC02LjV0LTUuNSAtNi41cS0xNCAtMTQgLTEwIC0xNHEwIC0yNCAyIC0yNGwxIC02cTEgLTYgMSAtMTB0LTEgLTVxMCAtMyAtMiAtNy41dC0yIC02LjVsLTIgLTFsLTMgLTNxLTIgMCAtNCAtMy41dC0zIC0zLjVxMCAtNCAtMSAtMTF0LTEgLTExbC0xIC00bC0yIC02bC0xIC00cS0xNSAtOCAtMTUgLTE3IHEtNyAtMTAgLTggLTEycS0xOSAwIC0xOSAtNGgtMTVxMCAyIC0xIDZ0LTEgN3EtMSAwIC0yIDMuNXQtMiAzLjVxMCAxIC0yLjUgNi41dC00LjUgMTF0LTEgNS41cTAgOSAtMyA5cTAgNCAtMi41IDExdC0yLjUgMTBxLTEgMCAtMiA0dC0xLjUgNy41dDAuNSA0LjVxMCA0IDQgMjJxMSA5IC0zIDIzcS00IDAgLTQgNnEtNiA0IC02IDE1cTYgNiAzIDIwcS0zIDEgLTE0IDFxLTEgMyAtNy41IDR0LTE2LjUgMGwtMTAgLTFxLTEgLTIgLTQuNSAtMS41IHQtOC41IDIuNXQtNSAzcS0zIDAgLTcuNSA0LjV0LTQuNSA4LjVxLTQgMSAtOCA5LjV0LTQgMTIuNXEtNCA0IDAgOXEwIDMgLTMgMTJxMCAyIDEuNSA0dDEuNSA0cTAgMTEgNCAxOXEwIDEgMiA0dDIgNHEyIDMgMyAzcTIgMSAzIDNxMiAxIDUgNXEyIDMgMyA0cTMgMSAwIDRxNCAwIDQgMTBxMiAzIDYgM2wxIDFxNCA1IDUgNXEyIDMgNiAzcTEgLTEgMi41IC0xdDQuNSAxbDMgMXE1IDcgMTQgN3ExIDIgNSAxLjV0MTAuNSAtMS41dDcuNSAtMXYyIHEzIC0xIDcgLTEwdDQgLTEyaDhxMCAtNCAxMCAtNHExNiAwIDE2IDZxNiAwIDYgLTZoNnQ4LjUgLTAuNXQ3LjUgLTJ0MiAtMi41cTIgMCA0IC0zdDMgLTNxMCAtMyAyLjUgLTguNXQ0LjUgLTUuNXEwIC04IDUgLTExcTYgLTE0IDEyIC0xOHEtMSAtMiAxLjUgLTZ0Mi41IC01cTEgLTYgMyAtN3EwIC00IDUgLTExLjV0OCAtNy41cTAgLTEgLTEgLTJ0MiAtMnpNMzEyIDI5NnEwIC0zIDMgMHEwIC00IC00IC0ycS0yIDAgLTEgM3ExIDAgMiAtMXogTTMyOCAyOTdxNCAtMSA3LjUgLTMuNXQ1LjUgLTIuNXEzIC0zIDMuNSAtNHQtMS41IC0ycS04IC0yIC0xMiA1cS01IDAgLTEwIDVxNiAwIDcgMnpNMzYyIDI4M2wyIC0xcTIgLTIgMyAtNGwxIC0xaC0xM3EtMSAtMSAtNC41IC0xdC00LjUgMmg3bC0yIDRxMSAwIDUgLTF0NiAtMXYzek0zMzEgMjc4cTQgMCA0IC0zcS01IDAgLTQgM3pNMzM2IDI3NWwyIDNxMSAwIDEgLTJxLTEgLTEgLTMgLTF6TTM3NiAyNzhxMyAwIDMgLTFxLTQgMiAtMyAxeiBNMzczIDI3OGwyIC0xcS0xIDAgLTEgLTAuNXQtMSAtMC41djJ6TTM1NyAyNTBxMSAxIDEgMmwxIC0xcTAgLTEgLTIgLTF6TTc0MCAxMzRxMCAyIDIgM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJIIiBob3Jpei1hZHYteD0iODY1IiBkPSJNNjg2IDI3OXYtMzc4aC0xNzd2MjM1aC0xNTJ2LTIzNWgtMTgzdjM3OGgtMTUzbDQxMiA0MTFsNDExIC00MTFoLTE1OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJJIiBob3Jpei1hZHYteD0iOTMyIiBkPSJNODg0IDIzNHYtMzE0aC04MzZ2MzE0bDE1NyA0MThoNTIyek01ODIgMjM0aDE5OGwtMTA1IDMyMmwtNDE4IDFsLTEwNCAtMzIzaDE5N2w0OSAtOTZoMTMweiIgLz4KPGdseXBoIHVuaWNvZGU9IkoiIGhvcml6LWFkdi14PSI4NjIiIGQ9Ik04NDggNTM0bC0xMjIgLTEyMmw4MiAtODJsLTM3MCAtNDJsNDMgMzY5bDgxIC04MWwxMjIgMTIyek0xMzYgMTQ4bC04MiA4MmwzNjkgNDNsLTQzIC0zNzBsLTgxIDgybC0xMjIgLTEyMmwtMTYzIDE2M3pNMTgyIDM4OGwxOTcgLTY4bC0yMjEgMTh6TTM5MyA0MTd2LTg1bC0yOCA4MHpNNjgyIDE3NGwtMTk3IDY5bDIyMSAtMTl6TTQ3MSAxNDZ2ODVsMjggLTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IksiIGhvcml6LWFkdi14PSI4NjkiIGQ9Ik01MzAgMzUxbDMxOCAtMzE4di0xNjh2MGgtMTY4aC0xdjEyOWgtMTI4djEyOGgtMTI4bC02MSA2MXEtNDAgLTE0IC04MyAtMTRxLTEwOSAwIC0xODcgNzcuNXQtNzggMTg3LjV0NzggMTg3LjV0MTg3IDc3LjV0MTg3IC03Ny41dDc4IC0xODcuNXEwIC00MyAtMTQgLTgzek0yMjQgNDAycTM3IDAgNjMgMjZ0MjYgNjN0LTI2IDYzdC02MyAyNnQtNjMuNSAtMjZ0LTI2LjUgLTYzdDI2LjUgLTYzdDYzLjUgLTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkwiIGQ9Ik00NjAgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjN0LTI5NyAxMjN0LTEyMyAyOTd0MTIzIDI5N3QyOTcgMTIzek00NjAgLTM0cTEzMCAwIDIyMi41IDkydDkyLjUgMjIzdC05Mi41IDIyM3QtMjIyLjUgOTJ0LTIyMi41IC05MnQtOTIuNSAtMjIzdDkyLjUgLTIyM3QyMjIuNSAtOTJ6TTQ2NCA1MjlxMTAzIDAgMTc2LjUgLTczLjV0NzMuNSAtMTc3LjV0LTczIC0xNzcuNXQtMTc3IC03My41IHQtMTc3LjUgNzMuNXQtNzMuNSAxNzcuNXQ3My41IDE3Ny41dDE3Ny41IDczLjV6TTM5NiAzNTlxMzMgMzMgMTAyIDcwbC0zMCA0MHEtNCAxIC0xMiAxcS02MSAwIC0xMTYuNSAtNTV0LTU1LjUgLTExNnEwIC02IDEgLTlsNDIgLTMycTM4IDcwIDY5IDEwMXpNNTQwIDE1NXExNiAwIDI4IDEydDEyIDI5dC0xMS41IDI5dC0yOC41IDEydC0yOSAtMTJ0LTEyIC0yOXQxMiAtMjl0MjkgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9Ik0iIGhvcml6LWFkdi14PSI5NTIiIGQ9Ik04OTIgMzJsLTI3MyAyNjJsMjczIDIzNHEzIC04IDMgLTE1di00NjVxMCAtOCAtMyAtMTZ6TTQ3NiAyMzhsLTcyIDU4bC0zNiAzMGwtMjc1IDIzNXExMCAyIDE0IDJoNzM4cTQgMCAxNCAtMmwtMjc1IC0yMzVsLTM2IC0zMHpNODQ1IC0yaC03MzhxLTUgMCAtMTMgMmwyNzYgMjY1bDEwNiAtODdsMTA3IDg3bDI3NSAtMjY1cS04IC0yIC0xMyAtMnpNNjAgNTI4bDI3MyAtMjM0bC0yNzMgLTI2MnEtMyA4IC0zIDE2djQ2NXEwIDcgMyAxNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJOIiBob3Jpei1hZHYteD0iOTQzIiBkPSJNODU3IDY3MHExNyAwIDIzIC02dDYgLTIzdi02NTVxMCAtMTcgLTYgLTIzdC0yMyAtNmgtMTA4aC01NDZoLTcxcS0yOCAwIC01My41IDI2LjV0LTI1LjUgNTIuNXY0ODFxMCAxNyA2IDIzdDIzIDZoOTJ2OTVxMCAxNyA2IDIzdDIzIDZoNjU0ek04MzcgN3Y2MTNoLTYxNHYtNzR2LTUwdi00NDVoLTQ5djQ0NWgtNzF2LTQ2MHEwIC03IDExIC0xOHQxOCAtMTFoNzFoNTQ2aDg4ek01MTEgNTU2di0yMjNoLTIyM3YyMjNoMjIzek03NjUgNTI1di0zNyBoLTE4NXYzN2gxODV6TTc2NSA0MTF2LTM3aC0xODV2MzdoMTg1ek03NjUgMjU5di0zN2gtNDc3djM3aDQ3N3pNNzY1IDE0NHYtMzdoLTQ3N3YzN2g0Nzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjkzMCIgZD0iTTg4MiA1MTB2LTUxMWgtNzB2NTExaDcwek02OTUgNTEwaDQ3di01MTFoLTU1NnY1MTFoNTJxNjggMTMzIDEyMiAxMzNoMjA3cTMyIDAgNjYuNSAtNDAuNXQ2MS41IC05Mi41ek01MTQgNTIycTEzIDAgMjIgOXQ5IDIydC05IDIxLjV0LTIyIDguNWgtMTA0cS0xMyAwIC0yMS41IC04LjV0LTguNSAtMjEuNXQ4LjUgLTIydDIxLjUgLTloMTA0ek00OCA1MTBoNjl2LTUxMWgtNjl2NTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IlAiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik03MTkgNDk2aDE0M3YtNDk1aC02NTl2MWwtMTc3IDQ2MWw2MTUgMjM3ek02NjAgNDk2bC01MSAxMzNsLTM0NSAtMTMzaDM5NnpNOTcgNDMybDEwNiAtMjc3djMxOHpNMjU4IDU2aDU0OXYzODVoLTU0OXYtMzg1ek02OTkgMjkybDU4IC0xOTBoLTQzMmwxMDMgMTEybDY2IC00MmwxMjMgMTc3bDM4IC03MXpNMzc5IDI3NXEtMjIgMCAtMzcgMTV0LTE1IDM3dDE1IDM3dDM3IDE1dDM3IC0xNXQxNSAtMzd0LTE1IC0zN3QtMzcgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IlEiIGhvcml6LWFkdi14PSI4NDQiIGQ9Ik02ODEgNTIxcTYxIC01NCA5NS41IC0xMjkuNXQzNC41IC0xNjAuNXEwIC0xNjEgLTExNCAtMjc1LjV0LTI3NSAtMTE0LjV0LTI3NSAxMTQuNXQtMTE0IDI3NS41cTAgODUgMzUgMTYxdDk2IDEzMHEyMCAxNyA0Ni41IDE1LjV0NDMuNSAtMjEuNXExNyAtMTkgMTUuNSAtNDUuNXQtMjEuNSAtNDMuNXEtODggLTc4IC04OCAtMTk2cTAgLTEwOSA3Ni41IC0xODZ0MTg1LjUgLTc3dDE4NS41IDc3dDc3LjUgMTg2cTAgMTE3IC04OCAxOTUgcS0yMCAxOCAtMjEuNSA0NHQxNi41IDQ2cTE3IDE5IDQzLjUgMjAuNXQ0NS41IC0xNS41ek00MjMgMTY2cS0yNiAwIC00NC41IDE5dC0xOC41IDQ1djQwN3EwIDI2IDE4LjUgNDV0NDQuNSAxOXQ0NSAtMTl0MTkgLTQ1di00MDdxMCAtMjYgLTE5IC00NXQtNDUgLTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik02NjggMTA1djg3bDEwNCA3MHYtMjYyaC03MzF2NTIzaDMyN3EtMiAtMSAtNi41IC0zdC02LjUgLTNxLTg3IC0zOSAtMTQxIC05OWgtNjl2LTMxM2g1MjN6TTg3NyA0MTdsLTMxMyAtMjExdjEzN3EtOTAgMCAtMTQxIC03cS00OSAtNiAtODkuNSAtMjF0LTYzLjUgLTMzLjV0LTM5IC0zNS41dC0yMiAtMjhsLTYgLTEycTAgNTQgMjAgMTAwdDUxLjUgNzUuNXQ3MC41IDUyLjV0NzcuNSAzNXQ3MCAyMHQ1MS41IDEwbDIwIDJ2MTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSI4NTMiIGQ9Ik04MjYgMzg5cTEwIC0xMSA4IC0yNHEwIC0xMyAtMTAgLTI4cS0zIC00IC0xNiAtMTRsLTE4NCAtMTIxcS0yIC0xIC01LjUgLTd0LTIuNSAtMTB2LTRsODEgLTIzN3E0IC0xMSA0IC0yM3EwIC0xNSAtNyAtMjVxLTExIC0xNiAtMzAgLTE2aC0xcS0xNiAxIC0zNiAxNWwtMTkwIDE1NXEtMyAzIC0xMCAzdC05IC0zbC0xODEgLTE1NHEtMTggLTE0IC0zNiAtMTVxLTIxIC0yIC0zMSAxNXEtOCAxMSAtOCAyNnEwIDcgNCAyMWw3MiAyMzZ2NCBxMSA1IC0yIDExdC02IDdsLTE4NSAxMjJxLTEwIDcgLTE2IDE0cS0xMSAxMyAtMTEgMjhxMCAxNCA4IDI0cTkgOSAxNiAxMnExMiA1IDI3IDVoMjMwcTYgMCAxMSA0cTcgNSA3IDEwbDY3IDIzOXE0IDE0IDkgMjFxMTMgMTggMzMgMTlxMjAgLTEgMzMgLTE5cTMgLTQgMTAgLTIxbDY2IC0yMzlxMCAtNSA3IC0xMHE1IC00IDExIC00aDIzMHE5IDAgMjAgLTNxMTQgLTQgMjMgLTE0eiIgLz4KPGdseXBoIHVuaWNvZGU9IlQiIGhvcml6LWFkdi14PSI4OTkiIGQ9Ik04MTcgMTg1bDYzIC02NGwtMTYyIC05MWwtOTIgLTE2M2wtNjMgNjRsMTQgMTQ4bC0xNjkgMTY5bC0yMjQgLTM3MWwtNjMgNjNsMTIwIDQ3NWwtMTc2IDE3NXEtMTkgMjAgLTE5IDQ2LjV0MTkgNDUuNXQ0NiAxOXQ0NiAtMTlsMTc2IC0xNzVsNDc1IDEyMGw2MyAtNjNsLTM3MSAtMjI1bDE2OCAtMTY4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSI4OTQiIGQ9Ik03NjAgMTU0cTQ2IC0yMCA3Mi41IC00NC41dDI5LjUgLTM4LjVsMyAtMTR2LTg2aC04MzZ2ODZxMCAyIDAuNSA2dDYgMTV0MTUuNSAyMnQzMS41IDI2dDUwLjUgMjhxMTIgNSA1NCAyOXQ4NyA0M3Q5NCAyOHEtMzMgMzQgLTcyIDEzNHEtMTEgMjggLTExIDEwMHEwIDcgLTEgMzF0LTAuNSA0MS41dDMuNSAyOS41cTMxIDExMSAxNTkgMTExcTEyNyAwIDE1OCAtMTExcTQgLTEyIDQuNSAtMjkuNXQtMSAtNDF0LTEuNSAtMzEuNSBxMCAtNzIgLTEwIC0xMDBxLTM4IC05NiAtNzIgLTEzNHE1MCAtOCA5NC41IC0yN3Q4NyAtNDMuNXQ1NC41IC0yOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IlYiIGhvcml6LWFkdi14PSI5NDkiIGQ9Ik02NTkgNDE2bDIzNSAxMTF2LTQ0OWwtMjM1IDExMXYxdi0xMDNxMCAtMTkgLTEzIC0zMnQtMzIgLTEzaC01MTBxLTE5IDAgLTMyIDEzdC0xMyAzMnY0MzNxMCAxOSAxMyAzMnQzMiAxM2g1MTBxMTkgMCAzMiAtMTN0MTMgLTMydi0xMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0iVyIgaG9yaXotYWR2LXg9Ijk1NCIgZD0iTTcwNCA1NHYxODFsOTIgOTN2LTI3NHEwIC01MSAtMzYgLTg3dC04NyAtMzZoLTQ5MnEtNTEgMCAtODcgMzZ0LTM2IDg3djQ5M3EwIDUxIDM2IDg3dDg3IDM2aDQ5MnExNyAwIDI0IC0ybC04OSAtOTBoLTQyN3EtMTMgMCAtMjIgLTl0LTkgLTIydi00OTNxMCAtMTMgOSAtMjJ0MjIgLTloNDkycTEzIDAgMjIgOXQ5IDIyek00MzEgMzE0bDM1NCAzNTRsMTMyIC0xMzJsLTM1NCAtMzU0djBsLTE5NSAtNjNsNjMgMTk1djB6TTU0NyAyMDggbC04OSA4OWwtNDMgLTEzMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iOTIxIiBkPSJNODY4IDU0MnYtNDIzaC02NnEtMTMgMjkgLTQwIDQ2LjV0LTYwIDE3LjV0LTU5LjUgLTE3LjV0LTQwLjUgLTQ2LjVoLTIyMHY0MjNoNDg2ek0yNDAgMTgzcS0zMyAwIC02MCAtMTcuNXQtNDAgLTQ2LjVoLTEwN3YxODBsMTExIDEyM2gxODR2LTI4NHEtMzMgNDUgLTg4IDQ1ek0xMDEgMjg4di01OGgxNjF2MTMyaC05OXpNMjQwIDE0NnEzMCAwIDUxLjUgLTIxdDIxLjUgLTUycTAgLTMwIC0yMS41IC01MS41dC01MS41IC0yMS41IHEtMzEgMCAtNTIgMjEuNXQtMjEgNTEuNXEwIDMxIDIxIDUydDUyIDIxek03MDIgMTQ2cTMxIDAgNTIgLTIxdDIxIC01MnEwIC0zMCAtMjEgLTUxLjV0LTUyIC0yMS41cS0zMCAwIC01MS41IDIxLjV0LTIxLjUgNTEuNXEwIDMxIDIxLjUgNTJ0NTEuNSAyMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iODYxIiBkPSJNNDI1IDQ4OGwtMTQ1IC00MDlsLTEyNiAxOTNsLTgxIC03NmwtMjIgLTIwbC00NiAzOWwxNjIgMTUxbDk2IC0xNDdsMTcxIDQ4M2wxNTcgLTYwNWwxMzEgNDEzbDExNiAtMzcxbC02MSAtMTZsLTU1IDE3OGwtMTM3IC00MzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9Ijg5NyIgZD0iTTQwMiA2MDd2LTM2OWgzNzFxMCAtMTUzIC0xMDggLTI2MXQtMjYxIC0xMDh0LTI2MSAxMDh0LTEwOCAyNjFxMCAxNTIgMTA3LjUgMjYwdDI1OS41IDEwOXpNNDk2IDcwMHExNTMgMCAyNjEuNSAtMTA4LjV0MTA4LjUgLTI2MS41aC0zNzF2MzcwaDF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWyIgaG9yaXotYWR2LXg9Ijg2MSIgZD0iTTQ0NSA2NzF2LTI3OGg0MDl2LTE4NWgtNDA5di0yNzdsLTQyNyAzNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iXCIgaG9yaXotYWR2LXg9Ijg1NCIgZD0iTTcxMCA1NzloODd2LTczOWgtNzQwdjczOWg4OXY0NnEwIDM1IDIwIDU0dDU2IDE5dDU2LjUgLTE5LjV0MjAuNSAtNTMuNXYtNDZoNTJ2NDZxMCAzNCAyMC41IDUzLjV0NTYuNSAxOS41dDU2IC0xOXQyMCAtNTR2LTQ2aDUydjQ2cTAgMzQgMjAuNSA1My41dDU2LjUgMTkuNXQ1Ni41IC0xOS41dDIwLjUgLTUzLjV2LTQ2ek01OTggNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41IHQtMjcuNSA3LjVxLTM1IDAgLTM1IC0zMnpNMzkyIDYyNXYtMTIzcTAgLTE3IDguNSAtMjQuNXQyNy41IC03LjVxMzUgMCAzNSAzMnYxMjNxMCAzMiAtMzUgMzJxLTE5IDAgLTI3LjUgLTcuNXQtOC41IC0yNC41ek0xODcgNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41dC0yNy41IDcuNXEtMzUgMCAtMzUgLTMyek03MzUgLTk5djUxNGgtNjE2di01MTRoNjE2ek00MjkgOTkgcTAgLTQ1IC0zNSAtNzB0LTkwIC0yNXEtMzYgMCAtNzMgMTRsNyA1MnEzNSAtMTQgNzMgLTE0cTI0IDAgMzggMTF0MTQgMjhxMCAyMiAtMTYuNSAzMi41dC01OS41IDEyLjV2NTJxNjMgNSA2MyAzOHEwIDI4IC00MiAyOHEtMjkgMCAtNjEgLTE1bC03IDUycTM0IDE1IDg0IDE1cTQ1IDAgNzEgLTE4dDI2IC00NnEwIC01MCAtNjUgLTcydi0xcTczIC0yMCA3MyAtNzR6TTUzNyAyMjlsLTUyIC0yMGwtNyA1Mmw5MSA0NGgzMXYtMjk2aC02M3YyMjB6ICIgLz4KPGdseXBoIHVuaWNvZGU9Il0iIGhvcml6LWFkdi14PSI4NjEiIGQ9Ik00MTUgLTY5djI3N2gtNDA4djE4NWg0MDh2Mjc4bDQyOCAtMzcweiIgLz4KPGdseXBoIHVuaWNvZGU9Il4iIGhvcml6LWFkdi14PSI3NzUiIGQ9Ik03NDkgNTcycTIyIC00NiAtMyAtMTMycS0yNCAtODUgLTUgLTIzNHEtOCAtMiAtMjEgLTR0LTQ5IC04dC02NiAtOHQtNjEgLTJ0LTQ2LjUgOXQtMTAuNSAyNnExNSA0OCAtNDggNDZxLTYxIC0yIC0xODIgLTQ4cS0zNyAtMTQgLTYzIC0zdjM5OXEyMiA2IDU4IDE1dDExMiAyNXQxMjYuNSAxNC41dDUwLjUgLTI0LjVxMCAtMyAtMiAtMTQuNXQtMy41IC0yM3QtMS41IC0yM3Q1IC0xOHQxNiAtNS41cTMwIDQgNzguNSA3dDgyLjUgNHogTTE0NSA2NTh2LTgxN2gtODV2ODE3cTAgMTcgMTIuNSAyOS41dDMwLjUgMTIuNXExNyAwIDI5LjUgLTEyLjV0MTIuNSAtMjkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJfIiBob3Jpei1hZHYteD0iODIwIiBkPSJNNTkgMTk4djE5OWg3MDJ2LTE5OWgtNzAyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImAiIGhvcml6LWFkdi14PSI5MzYiIGQ9Ik0zMDYgMzc4bC0xNTIgMTUzbC05NSAtOTZ2Mjc3aDI3N2wtOTUgLTk1bDE1MiAtMTUyek03ODMgNzVsOTUgOTV2LTI3NmgtMjc3bDk1IDk1bC0xNTIgMTUxbDg3IDg3ek02MzEgMzc4bC04NyA4N2wxNTIgMTUybC05NSA5NWgyNzZ2LTI3N2wtOTQgOTV6TTMwNiAyMjdsODcgLTg3bC0xNTIgLTE1Mmw5NSAtOTVsLTI3NyAxdjI3N2w5NSAtOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iYSIgaG9yaXotYWR2LXg9IjgxMCIgZD0iTTc0NSAxNDRxMjEgMCAzNS41IC0xNC41dDE0LjUgLTM1LjV0LTE0LjUgLTM2dC0zNS41IC0xNXEtMiAwIC02IDAuNXQtNiAwLjVxLTQyIC0zNiAtNzkgLTU5cS04MyAtNTUgLTE1NyAtNzZxLTcxIC00NCAtOTAgLTQ0cS0xNCAwIC05NSA0NXEtNzYgMjIgLTE1NiA3NXEtNDAgMjcgLTc5IDU5cS0yIDAgLTUuNSAtMC41dC01LjUgLTAuNXEtMjEgMCAtMzYgMTV0LTE1IDM2dDE1IDM1LjV0MzYgMTQuNXQzNS41IC0xNC41dDE0LjUgLTM1LjV2LTggcTkgLTggMzQgLTIydDM4IC0yM3E0NyAtMzEgMTQ0IC0zM2wzMiAxNTFxNCA5OCA3IDE5MmgtMTM2bC01MiAxMnEtMTQgLTE3IC0zMyAtMTdxLTE3IDAgLTI5IDExLjV0LTEyIDI4LjV0MTIgMjguNXQyOSAxMS41cTIyIDAgMzMgLTE4aDE5MHEyIDcyIDMgOTZxLTMyIDEwIC01MiAzNi41dC0yMCA2MC41cTAgNDIgMjkuNSA3MS41dDcwLjUgMjkuNXE0MiAwIDcxLjUgLTI5LjV0MjkuNSAtNzEuNXEwIC0zMyAtMjAgLTU5LjV0LTUxIC0zNi41IHEwIC03IDEuNSAtNDAuNWwyLjUgLTU2LjVoMTg5cTExIDE4IDMzIDE4cTE3IDAgMjkgLTExLjV0MTIgLTI4LjV0LTEyIC0yOC41dC0yOSAtMTEuNXEtMjEgMCAtMzIgMTdsLTUzIC0xMmgtMTM1bDYgLTE5MmwzMyAtMTU0cTc5IC00IDEyMCAyMXE1MCAzMCA5NiA2MnEtMSAyIC0xIDZxMCAyMSAxNSAzNS41dDM2IDE0LjV6TTM1MSA2MDFxMCAtMjIgMTUuNSAtMzcuNXQzNy41IC0xNS41cTIzIDAgMzguNSAxNS41dDE1LjUgMzcuNXQtMTYgMzcuNSB0LTM4IDE1LjV0LTM3LjUgLTE1LjV0LTE1LjUgLTM3LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjkxOSIgZD0iTTQ2MSA2OTlsNDA4IC0xMTN2LTU5MWwtNDA4IC0xMTRsLTQxMCAxMTR2NTkxek00MjYgLTM4djQzOWwtMzA2IDg2di00NDF6TTQ2MCA0NjJsMzAwIDg0bC0yOTkgODJsLTMwMCAtODJ6TTgwMSA0NnY0NDBsLTMwNyAtODV2LTQ0MHoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iOTA4IiBkPSJNNzY3IDMxOHE0NiAtMTkgNzMuNSAtNjB0MjcuNSAtOTJxMCAtNjggLTQ4IC0xMTZ0LTExNiAtNDhoLTloLTE5OHYxNjJoMzBoNzZxMTIgMCAxNSA2LjV0LTQgMTYuNWwtMTQ1IDE3M3EtOCAxMCAtMTkuNSAxMHQtMTkuNSAtMTBsLTE0NSAtMTczcS04IC0xMCAtNSAtMTYuNXQxNiAtNi41aDc2aDMwdi0xNjJoLTE5OGgtMWgtMWgtMnYxcS02OCAxIC0xMTYuNSA1MHQtNDguNSAxMTdxMCA0NiAyMiA4NHQ2MCA2MXEtNSAxOCAtNSAzNCBxMCA0NyAzMy41IDgwLjV0ODEuNSAzMy41cTM5IDAgNjkgLTI0cTMxIDY0IDkxIDEwM3QxMzMgMzlxMTAzIDAgMTc1LjUgLTcyLjV0NzIuNSAtMTc1LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSI5MTgiIGQ9Ik00NTkgNjk5cTE3NCAwIDI5Ni41IC0xMjN0MTIyLjUgLTI5NnEwIC0xNzQgLTEyMi41IC0yOTYuNXQtMjk2LjUgLTEyMi41cS0xNzMgMCAtMjk2IDEyMi41dC0xMjMgMjk2LjVxMCAxNzMgMTIzIDI5NnQyOTYgMTIzek03NzQgMjgwcTAgMTMwIC05Mi41IDIyMnQtMjIyLjUgOTJxLTEwMCAwIC0xODIgLTU4bDQzOCAtNDM4cTU5IDgxIDU5IDE4MnpNMTQ1IDI4MHEwIC0xMzAgOTIgLTIyMnQyMjIgLTkycTEwMyAwIDE4MyA1OGwtNDM4IDQzOSBxLTU5IC04MyAtNTkgLTE4M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJlIiBob3Jpei1hZHYteD0iNTU2IiBkPSJNNTUwIDY5OWwtMTkzIC0zNDJoMTU4bC01MTAgLTQ3NmwyMzkgMzg2aC0xNjB6IiAvPgo8Z2x5cGggdW5pY29kZT0iZiIgaG9yaXotYWR2LXg9IjkxMiIgZD0iTTU2IDQxNXExNDkgMCAyNzUgLTczLjV0MjAwIC0xOTkuNXQ3NSAtMjc1aC0xNjBxLTIgMTYxIC0xMTUgMjc0cS0xMTQgMTE0IC0yNzUgMTE0djE2MHpNNTYgNzAwcTE2OSAwIDMyMi41IC02NnQyNjUuNSAtMTc3LjV0MTc4IC0yNjZ0NjcgLTMyMy41aC0xNjBxLTEgMTgzIC05MS41IDMzNy41dC0yNDUgMjQ0LjV0LTMzNi41IDkwdjE2MXpNMTY3IDkwcTQ2IDAgNzguNSAtMzIuNXQzMi41IC03OC41dC0zMi41IC03OC41dC03OC41IC0zMi41IHQtNzguNSAzMi41dC0zMi41IDc4LjV0MzIuNSA3OC41dDc4LjUgMzIuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJnIiBob3Jpei1hZHYteD0iODk0IiBkPSJNODY1IDM2di0zNWgtMTUxdjQ3djFxLTQgNDMgLTU1IDczcS0xMCAxNiAtMjIgNDdxLTUgMTEgLTUgNDBxMCAzNyAxIDQxcTEzIDQ0IDY0IDQ0dDY0IC00NHYtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzkgLTI5IC01NHEyMCAtNCAzOCAtMTEuNXQzNS41IC0xN3QyMS41IC0xMS41cTE5IC04IDI5LjUgLTE4dDExLjUgLTE1ek0xODAgNDl2LTF2LTQ3aC0xNTF2MzVxMCAyIDEgNnQxMS41IDE0dDI5LjUgMThxNSAyIDIxLjUgMTJ0MzQuNSAxNy41IHQzOCAxMS41cS0xNCAxNSAtMjkgNTRxLTQgMTAgLTQgNDBxMCAzNyAxIDQxcTExIDQ0IDYzIDQ0cTUxIDAgNjQgLTQ0cTEgLTQgMSAtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzYgLTI0IC00OHEtNTMgLTMyIC01MyAtNzJ6TTYyMCAxMDJxMjUgLTExIDM5LjUgLTI0LjV0MTYuNSAtMjEuNWwyIC04di00N2gtNDYydjQ3cTAgMyAxLjUgOC41dDE2IDE5LjV0NDAuNSAyNnE2IDMgMjkgMTZ0NDggMjMuNXQ1MiAxNS41cS0xOCAyMSAtMzkgNzQgcS02IDEzIC02IDU2cTAgNTMgMSA1NnExNyA2MSA4NyA2MXQ4OCAtNjFxMSAtMyAxIC01NnEwIC00MSAtNiAtNTZxLTIxIC01NCAtNDAgLTc0cTI4IC01IDUyLjUgLTE1dDQ5IC0yNHQyOS41IC0xNnoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iOTA2IiBkPSJNODQ4IDQyNXEyNSAtNjggMjUgLTE0NHQtMjUgLTE0NHEtMTAgLTI4IC00MCAtMjhxLTYgMCAtMTAgMWwtNyAycS01NSAtMTExIC0xNjkgLTE2OWwyIC03cTQgLTE2IC0zLjUgLTMwdC0yMi41IC0yMHEtNzIgLTI1IC0xNDQgLTI1cS03MyAwIC0xNDUgMjVxLTE1IDYgLTIyLjUgMjB0LTMuNSAzMGwyIDdxLTExMiA1NSAtMTcwIDE2OWwtNyAtMnEtMyAtMSAtMTAgLTFxLTI5IDAgLTM5IDI4cS0yNiA3MCAtMjYgMTQ0dDI2IDE0NCBxMTAgMjggMzkgMjhxMyAwIDExIC0ybDYgLTFxNTggMTE1IDE3MCAxNjlsLTIgN3EtNCAxNiAzLjUgMzB0MjIuNSAyMHE3MiAyNSAxNDQgMjVxNzUgMCAxNDUgLTI2cTE1IC01IDIyLjUgLTE5dDMuNSAtMzBsLTIgLTdxMTEzIC01NiAxNzAgLTE2OWw2IDFxOCAyIDExIDJxMjkgMCAzOSAtMjh6TTgwOCAxNTFxMjMgNjMgMjMgMTMwcTAgNjYgLTIyIDEzMGwtMTY2IC00MXEyMCAtNDIgMjAgLTg5dC0yMCAtODl6TTU4MyAtNzRsLTQwIDE2NSBxLTQyIC0yMCAtODkgLTIwdC05MCAyMGwtNDAgLTE2NXE2MSAtMjMgMTMwIC0yM3E2OCAwIDEyOSAyM3pNNTYxIDEyOXExMiAtNyAxNyAtMTZxMjQgMTcgNDQgNDNxLTExIDYgLTE3IDE4cS04IDE3IDAgMzZxMTYgMzIgMTYgNzFxMCAzOCAtMTYgNzFxLTggMTggMCAzNnE3IDEyIDE3IDE4cS0xOSAyNSAtNDQgNDNxLTcgLTEyIC0xNyAtMTZxLTggLTQgLTE4IC00cS0xMSAwIC0xOCA0cS0zMyAxNiAtNzIgMTZxLTM4IDAgLTcxIC0xNiBxLTcgLTQgLTE4IC00cS0xMCAwIC0xOCA0cS0xMiA3IC0xNyAxNnEtMjUgLTE4IC00NCAtNDNxMTEgLTYgMTcgLTE4cTggLTE4IDAgLTM2cS0xNyAtMzYgLTE3IC03MXEwIC0zNiAxNiAtNzFxOSAtMTkgMCAtMzZxLTQgLTExIC0xNiAtMThxMTYgLTIyIDQ0IC00NHE1IDEwIDE3IDE3cTggNCAxOCA0cTExIDAgMTggLTRxMzMgLTE2IDcyIC0xNnEzOCAwIDcxIDE2cTcgNCAxOCA0cTEwIDAgMTggLTR6TTc1IDI4MXEwIC02NCAyMyAtMTMwbDE2NSA0MSBxLTIwIDQ1IC0yMCA4OXEwIDQ1IDIxIDg5bC0xNjYgNDFxLTIzIC02NyAtMjMgLTEzMHpNNDUzIDY1OXEtNjggMCAtMTI5IC0yM2w0MCAtMTY1cTQzIDIwIDg5IDIwcTQ3IDAgOTAgLTIwbDQwIDE2NXEtNjEgMjMgLTEzMCAyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJpIiBkPSJNNDYwIDY5OXExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzcS0xNzMgMCAtMjk2LjUgMTIzdC0xMjMuNSAyOTd0MTIzLjUgMjk3dDI5Ni41IDEyM3pNNTE0IDU2OXEtMzEgLTEgLTQ5IC0yMnQtMTggLTQ1cTAgLTI1IDEzLjUgLTQwLjV0MzYuNSAtMTUuNWgxcTI5IDAgNDguNSAyMC41dDE5LjUgNDguNXEwIDIzIC0xMyAzN3EtMTUgMTcgLTM5IDE3ek01NjUgOThsMyAzbC0yIDRsLTE4IDM4bC01IC00IHEtMTQgLTE0IC0zNC41IC0yOHQtMjQuNSAtMTV2NXEwIDcgMyAyMGw0NiAxODhxNiAyNSA2IDU3cTAgMTggLTYgMzBxLTcgMTIgLTIyIDEycS0yNSAwIC03MS41IC0yOC41dC05MS41IC03MC41bC0zIC0zbDE2IC00NWw2IDRxMzUgMzEgNTUgMzlxMCAtNiAtMyAtMjFsLTQzIC0xODJxLTYgLTMwIC02IC02MHEwIC0yNSAxMCAtMzZxOSAtMTAgMjYgLTEwcTIzIDAgNzAuNSAyOXQ4OC41IDc0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI4NzciIGQ9Ik04MzUgMjMydi0xbDEgLTF2LTFxMTkgLTM1IDE5IC03OXEwIC0xOCAtNSAtNDNxLTEyIC00NiAtNDUgLTgwbC02NCAtNjNxLTUxIC01MSAtMTIzIC01MXQtMTIyIDUxbC03NyA3NmwtNDcgNDhsLTMzIDMzcS0zNyAzNyAtNDggOTFxLTIgMjAgLTIgMzFxMCAxNyAzIDM1bDMgMTJxNCAxNSAxNCAzNHYxcTEgMSAyLjUgNGwyLjUgNWwxIDJsMSAxcTEgMSAyLjUgMy41dDIuNSAzLjV2MWwyIDJxMSAxIDMgMy41dDMgMy41djFsMiAybDQgNHQ0IDUgbDI4IDI4bDQgLTVsNTcgLTU2cTAgLTEgMiAtM3QyIC0zdDEgLTMuNXQxIC0zLjVsLTI1IC0yNXEtMSAtMSAtMyAtMy41dC00IC00LjVxMCAtMSAtMSAtMnYtMXEtMiAtMiAtNCAtNnEtMSAwIC0xIC0xdC0xIC0ydC0xLjUgLTMuNXQtMC41IC0zLjVsLTEgLTF2LTJxLTQgLTkgLTQgLTIycTAgLTE1IDcgLTMycTQgLTggMTQgLTIwbDU3IC01N2w0MCAtMzlsNjAgLTYxcTIxIC0yMSA1MiAtMjFxMzIgMCA1MiAyMWw2NCA2NHExMiAxMiAxOCAyOSBxMyAxMSAzIDIzcTAgMTAgLTMgMjFxLTUgMTkgLTE4IDMxbC05OCA5OHExIDYgMSAxN3EwIDIxIC0zIDQwcS0xMiA2OCAtNTkgMTE2cTM5IC0xMiA3MSAtNDJsMiAtMmwxNTcgLTE1N3ExOCAtMTggMjkgLTM5cTAgLTEgMSAtMXpNNTM4IDQ0MXEzOSAtMzkgNDggLTkxcTMgLTE1IDMgLTMxcTAgLTExIC00IC0zNWwtMyAtMTJxLTMgLTEyIC0xMyAtMzRsLTEgLTFxLTEgLTEgLTIuNSAtNGwtMi41IC01bC0xIC0ybC0xIC0xcS0yIC00IC01IC03IGwtMSAtMXEtMSAtMSAtMSAtMnEtMyAtMyAtNSAtN2wtMSAtMWwtMiAtMnEtMiAtMyAtOCAtOWwtMjggLTI4bC00IDVsLTU3IDU2cS0xIDEgLTIgM3QtMiAzdC0xIDMuNXQtMSAzLjVsMjUgMjVxMSAxIDMgMy41dDQgNC41cTAgMSAwLjUgMXQwLjUgMXYxcTIgMiA0IDZsMSAxcTEgMSAxIDJxMiA0IDMgN3YxcTAgMSAxIDJxMyAxMSAzIDIycTAgMTUgLTcgMzJxLTQgOCAtMTQgMjBsLTU3IDU3bC0zOSAzOWwtNjEgNjFxLTIxIDIxIC01MiAyMSB0LTUyIC0yMWwtNjQgLTY0cS0xMiAtMTIgLTE4IC0yOXEtMyAtMTEgLTMgLTIzcTAgLTEwIDMgLTIxcTUgLTE5IDE4IC0zMWw5OCAtOThxLTEgLTYgLTEgLTE3cTAgLTIzIDQgLTQwcTEwIC02NSA1OCAtMTE2cS00MCAxMiAtNzEgNDJsLTIgMmwtMTU3IDE1N3EtMTggMTggLTI5IDM5cTAgMSAtMSAxdjFsLTEgMXYxcS0xOSAzOCAtMTkgNzlxMCAxOCA1IDQzcTEyIDQ2IDQ1IDgwbDY0IDYzcTUxIDUxIDEyMyA1MXQxMjIgLTUxbDc3IC03NiBsNDcgLTQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9ImsiIGhvcml6LWFkdi14PSI4OTYiIGQ9Ik02NTcgNjEwcTg5IDAgMTQ4LjUgLTUwLjV0NTkuNSAtMTU5LjVxMCAtNDkgLTI2IC0xMDF0LTUyIC03OWwtMjYgLTI4bC0zMTMgLTMxMmwtMzEzIDMxMmwtMTEgMTF0LTI1IDMwdC0zMiA0NnQtMjUgNTYuNXQtMTEgNjQuNXEwIDEwOSA1OSAxNTkuNXQxNDggNTAuNXE5MCAwIDE5MSAtMTA3bDE5IC0yMXE0IDUgMTEuNSAxMy41dDMxIDMxdDQ3IDM5dDU2LjUgMzAuNXQ2MyAxNHoiIC8+CjxnbHlwaCB1bmljb2RlPSJsIiBob3Jpei1hZHYteD0iOTQyIiBkPSJNMjc5IDcwMGg2MDV2LTEzM2gtNjA1djEzM3pNMjc5IDI4NHYxMzNoNjA1di0xMzNoLTYwNXpNMjc5IDB2MTMzaDYwNXYtMTMzaC02MDV6TTEyMiA3MDBxMjggMCA0Ny41IC0xOS41dDE5LjUgLTQ2LjVxMCAtMjggLTE5LjUgLTQ3LjV0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ny41cTAgMjcgMTkuNSA0Ni41dDQ2LjUgMTkuNXpNMTIyIDQxOHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDcuNXEwIC0yNyAtMTkuNSAtNDYuNSB0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ni41cTAgMjggMTkuNSA0Ny41dDQ2LjUgMTkuNXpNMTIyIDEzNHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDYuNXEwIC0yOCAtMTkuNSAtNDcuNXQtNDcuNSAtMTkuNXEtMjcgMCAtNDYuNSAxOS41dC0xOS41IDQ3LjVxMCAyNyAxOS41IDQ2LjV0NDYuNSAxOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Im0iIGhvcml6LWFkdi14PSI4MDgiIGQ9Ik03NzEgNjk4di04M3YtNTE0cS0xIC01MiAtNDYuNSAtODh0LTExMC41IC0zNnQtMTExIDM3dC00NiA4OXQ0NiA4OXQxMTEgMzdxMzYgMCA3MCAtMTN2MzA4bC0zNTIgLTg0di00OTVxLTEgLTUyIC00NyAtODguNXQtMTEwIC0zNi41cS02NSAwIC0xMTEgMzd0LTQ2IDkwcTAgNTIgNDYgODl0MTExIDM3cTM1IDAgNjkgLTEzdjUxM2gybDQzOCAxMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0ibiIgaG9yaXotYWR2LXg9Ijk1NiIgZD0iTTc1OSA3MDBxNTggMCA5OSAtNDF0NDEgLTk5di01NjFxMCAtNTggLTQxIC05OXQtOTkgLTQxaC01NjFxLTU4IDAgLTk5IDQxdC00MSA5OXY1NjFxMCA1OCA0MSA5OXQ5OSA0MWg1NjF6TTc5NCA0OTBoLTUxM3YtMTE3aDUxM3YxMTd6TTI1OSAyMTdoLTk2di0xMTRoOTZ2MTE0ek0xNjMgMjM4aDk2djExNGgtOTZ2LTExNHpNMjgxIDIxN3YtMTE0aDUxM3YxMTRoLTUxM3pNMjgxIDIzOGg1MTN2MTE0aC01MTN2LTExNHpNMjU5IDQ5MGgtOTYgdi0xMTdoOTZ2MTE3ek0xNjMgLTFxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDYxdjExN2gtOTZ2LTgyek03NTkgLTM2cTE0IDAgMjQuNSAxMC41dDEwLjUgMjQuNXY4MmgtNTEzdi0xMTdoNDc4eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSI5NDEiIGQ9Ik04NjcgNTQ1cTExIDAgMTggLTcuNXQ3IC0xNy41di01MjVxMCAtMTEgLTcgLTE4dC0xOCAtN2gtNzg0cS0xMSAwIC0xOCA3dC03IDE4djUyNXEwIDEwIDcgMTcuNXQxOCA3LjVoMzhsMjkgNTlxMTEgMjIgMzYgMjJoMTU4cTI1IDAgMzYgLTIybDI4IC01OWg0NTl6IiAvPgo8Z2x5cGggdW5pY29kZT0icCIgaG9yaXotYWR2LXg9Ijg1NSIgZD0iTTU0MiA1NDlsMTUzIC0xNTNsLTQ2MCAtNDYwdjB2MGwtMjI2IC03NGw3MyAyMjd2MHYwek0xODggNjVsMzc5IDM3OWwtMjUgMjZsLTM4MCAtMzgwek02OTQgNzAxbDE1NCAtMTUzbC0xMDEgLTEwMGwtMTUzIDE1M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJxIiBob3Jpei1hZHYteD0iOTEwIiBkPSJNODY1IDE2MHEwIC00MiAtMjYgLTc1dC02NiAtNDRxMTUgLTQzIDY2IC04MnExMiAtOCAtOSAtMTRxLTQ1IC0xMSAtMTE0IDIxcS01MiAyNSAtOTcgNzFoLTI5OXEtNDIgMCAtNzcgMjdxMzAgMTggNTYgNDNoMjc2cTc0IDAgMTI2LjUgNTIuNXQ1Mi41IDEyNi41djIzNXE0NyAtNSA3OSAtNDB0MzIgLTgzdi0yMzh6TTY5OCAyODZxMCAtNTIgLTM2IC04OHQtODcgLTM2aC0yOThxLTQ5IC01MCAtMTAwIC03MnQtOTAgLTIycS0zNCAwIC0zNCAxMSBxMCAzIDMgNXE1MCAzOCA2NiA4MnEtNDAgMTEgLTY2IDQ0dC0yNiA3NnYyMzdxMCA1MSAzNiA4Ny41dDg4IDM2LjVoNDIxcTUxIDAgODcgLTM2LjV0MzYgLTg3LjV2LTIzN3oiIC8+CjxnbHlwaCB1bmljb2RlPSJyIiBob3Jpei1hZHYteD0iOTAwIiBkPSJNNzI2IDI3OGwyNCAyNGw5MSA5MXYtMjYwcTAgLTEyOCAtMTI4IC0xMjhoLTUwOXYtMTA4bC0xNzEgMTcybDE3MSAxNzJ2LTExNXYtNmg0ODRxMTYgMCAyNyAxMXQxMSAyN3YxMjB6TTE3NCAzMTlsLTI0IC0yNGwtOTEgLTkxdjI2MHEwIDEyNyAxMjggMTI3aDUwOXYxMDhsMTcxIC0xNzFsLTE3MSAtMTcydjExNXY2aC00ODRxLTE2IDAgLTI3IC0xMS41dC0xMSAtMjcuNXYtMTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSI4NjQiIGQ9Ik04MTYgNHEyMyAtMjMgMjMgLTU0cTAgLTI5IC0yMCAtNDhxLTE5IC0xOSAtNDcgLTE5cS0zMiAwIC01NSAyM2wtMjE5IDIxOXEtNzQgLTQ4IC0xNjYgLTQ4cS0xMjkgMCAtMjIwLjUgOTEuNXQtOTEuNSAyMjAuNXQ5MS41IDIyMC41dDIyMC41IDkxLjV0MjIwLjUgLTkxLjV0OTEuNSAtMjIwLjVxMCAtOTAgLTQ3IC0xNjV6TTUwNiAzODlxMCA3MiAtNTEgMTIzdC0xMjMgNTF0LTEyMyAtNTF0LTUxIC0xMjN0NTEgLTEyM3QxMjMgLTUxIHQxMjMgNTF0NTEgMTIzeiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NjAgNjk5cTE3MyAwIDI5NiAtMTIzdDEyMyAtMjk2cTAgLTE3NCAtMTIzIC0yOTd0LTI5NiAtMTIzcS0xNzQgMCAtMjk3IDEyM3QtMTIzIDI5N3EwIDE3MyAxMjMgMjk2dDI5NyAxMjN6TTQ2MCAtMzVxMTMwIDAgMjIyIDkyLjV0OTIgMjIyLjV0LTkyIDIyMnQtMjIyIDkydC0yMjIuNSAtOTJ0LTkyLjUgLTIyMnQ5Mi41IC0yMjIuNXQyMjIuNSAtOTIuNXpNNjYzIDE4NnExNCAtMTAgNSAtMjRsLTI0IC0zOXEtNSAtNiAtMTEgLThoLTQgcS01IDAgLTEwIDNsLTE5MyAxMjlxLTEgMSAtMi41IDJ0LTIuNSAxcS01IDcgLTUgMTN2MjI4cTAgNyA1IDEycTcgNSAxMyA1aDQ2cTcgMCAxMiAtNXQ1IC0xMnYtMTkzeiIgLz4KPGdseXBoIHVuaWNvZGU9InUiIGhvcml6LWFkdi14PSI5NTUiIGQ9Ik02MCA2MzFoODM1di02NzNoLTgzNXY2NzN6TTgyNSAyOHY1MzRoLTY5NXYtNTM0aDY5NXpNMjI1IDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNNzMxIDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNMjI1IDE1OXExOCAwIDMwLjUgLTEzIHQxMi41IC0zMXQtMTIuNSAtMzAuNXQtMzAuNSAtMTIuNXQtMzEgMTIuNXQtMTMgMzAuNXQxMyAzMXQzMSAxM3pNNzMxIDE1OXExOCAwIDMwLjUgLTEzdDEyLjUgLTMxdC0xMi41IC0zMC41dC0zMC41IC0xMi41dC0zMSAxMi41dC0xMyAzMC41dDEzIDMxdDMxIDEzek01OTMgNDU3di0zMjVoLTIyOHYzMjVoMjI4ek01MzMgMTgxdjExOGgtMTA5di0xMThoMTA5eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSI5NDUiIGQ9Ik04NjYgNTU3cTEwIDAgMTcuNSAtN3Q3LjUgLTE3di00NzJxMCAtMTEgLTcuNSAtMTh0LTE3LjUgLTdoLTc4NnEtMTAgMCAtMTcuNSA3dC03LjUgMTh2NDcycTAgMTAgNy41IDE3dDE3LjUgN2gxNzNxMCAxIDEgMWwyMyA0OHE0IDkgMTUgMTUuNXQyMSA2LjVoMzE5cTI1IDAgMzYgLTIybDI0IC00OHYtMWgxNzR6TTQ3MiAxMjBxNzUgMCAxMjggNTIuNXQ1MyAxMjcuNXQtNTMgMTI4dC0xMjggNTNxLTc0IDAgLTEyNyAtNTN0LTUzIC0xMjggdDUzIC0xMjcuNXQxMjcgLTUyLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjkyNyIgZD0iTTg4NSAzOTdxMTYgLTEzNyAtOTQuNSAtMjQ3dC0yODIuNSAtMTI5cS02MiAtNyAtMTIwIDBxLTkyIC05NSAtMTk3IC0xMDZxLTQ3IC01IC01NiA4cS0zIDQgMyA4cTg4IDY2IDgwIDE0NXEtNjkgMzkgLTExMiA5OHQtNTEgMTMwcS0xNiAxMzYgOTQgMjQ2LjV0MjgyIDEzMC41cTE3MiAxOSAzMDQuNSAtNjR0MTQ5LjUgLTIyMHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ4IiBob3Jpei1hZHYteD0iOTQ5IiBkPSJNNTI2IDEwMHEyIDEwIDIgMTZsOTggOThsMTM5IC0xMzlsOTQgLTY5bDEwIC0zOGwtMTA0IC0xMDRsLTM3IDEwbC03MCA5NHpNNzU1IDIycS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMS41cTAgLTE4IDEyLjUgLTMwLjV0MzAuNSAtMTIuNXExOSAwIDMxLjUgMTIuNXQxMi41IDMwLjVxMCAxOSAtMTIuNSAzMS41dC0zMS41IDEyLjV6TTQ2OSAzNzFsLTk4IC05OHEtNiAwIC0xNiAtMmwtNzEgNzBxLTMyIC0xNSAtNTYgLTE1IHEtNzQgMCAtMTMzLjUgNjB0LTYwLjUgMTM0cTAgMSAxNyAxOHE2MyAtNjMgNzEgLTY4dDQ1IC01cTI5IDAgNjUuNSAzNnQzNi41IDY2cTAgMzYgLTYgNDUuNXQtNjcgNjkuNXExNSAxOCAxOCAxOHE3NCAxIDEzNCAtNTkuNXQ2MCAtMTM0LjVxMCAtMjcgLTE2IC01N3pNNzg2IDIwMnEwIDMgMC41IDcuNXQwLjUgMTguNXQtMS41IDI4dC01LjUgMzJ0LTEwLjUgMzMuNXQtMTkgMzAuNXQtMjguNSAyNGgtM3EtMTAgMCAtMzQgLTIybC0yMTggLTIxNyBxOCAtMjkgLTggLTQ3cS0yIC0xIC03IC02bC0yMDEgLTIwMXEtNSAtNSAtNiAtN3EtMTEgLTExIC0yOSAtMTFxLTQxIDAgLTc3IDQ4dC04IDc3cTMgMiA2IDZsMjAyIDIwMnE1IDMgNiA2cTExIDExIDI4IDExcTkgMCAxOSAtM2wxOTQgMTk0bDQgNnE0IDYgNS41IDh0NSA4LjV0NC41IDExdDEuNSAxMXQtMSAxMy41dC00LjUgMTRxLTE2IDI5IC02MCAzOGgtMXEtMTYgMCAtNTUgMzdsLTYgNnEtMTkgMTkgLTIwIDI1dDE4IDI3bDcyIDczIHExNyAxNyAyNiAxN3E2IDAgMjYgLTIwbDYgLTZxMzMgLTMzIDM3IC00OXE0IC0yMCAyNCAtNDZxMyAtNCAxOCAtNHQxOSAtNGwxMTkgLTExOXE3MyAtNzMgMzAgLTI1MmwtMTUgLTUweiIgLz4KPGdseXBoIHVuaWNvZGU9InkiIGhvcml6LWFkdi14PSI4OTciIGQ9Ik04NDMgMzU5cTkgLTEgMTUuNSAtOXQ2LjUgLTE3di05N3EwIC05IC02LjUgLTE3dC0xNS41IC05bC0xMjQgLTIzcS05IC0yIC0xMiAtOHQyIC0xNGw3MiAtMTA2cTEyIC0xOSAtNCAtMzVsLTY4IC02OHEtMTYgLTE2IC0zNCAtM2wtMTA2IDcxcS03IDUgLTE0LjUgMi41dC04LjUgLTExLjVsLTIzIC0xMjVxLTEgLTkgLTkgLTE1LjV0LTE3IC02LjVoLTk3cS05IDAgLTE3IDYuNXQtOSAxNS41bC0yMyAxMjVxLTEgOSAtOC41IDExLjUgdC0xNC41IC0yLjVsLTEwNSAtNzFxLTIwIC0xMiAtMzUgM2wtNjggNjhxLTE2IDE2IC00IDM1bDcyIDEwNnE1IDggMiAxNHQtMTIgOGwtMTI0IDIzcS05IDEgLTE1LjUgOXQtNi41IDE3djk3cTAgOSA2LjUgMTd0MTUuNSA5bDEyNCAyM3EyMiA2IDEwIDIzbC03MiAxMDZxLTExIDE5IDQgMzRsNjggNjhxMTYgMTYgMzUgNGwxMDUgLTcycTcgLTUgMTQuNSAtMnQ4LjUgMTJsMjMgMTI0cTEgOSA5IDE1LjV0MTcgNi41aDk3cTkgMCAxNyAtNi41IHQ5IC0xNS41bDIzIC0xMjRxMSAtOSA4LjUgLTEydDE0LjUgMmwxMDYgNzJxMTggMTIgMzQgLTRsNjggLTY4cTE1IC0xNSA0IC0zNGwtNzIgLTEwNnEtMTIgLTE3IDEwIC0yM3pNNDQ4IDEzNHE2MyAwIDEwNyA0NHQ0NCAxMDZ0LTQ0IDEwNi41dC0xMDcgNDQuNXEtNjIgMCAtMTA2IC00NC41dC00NCAtMTA2LjV0NDQgLTEwNnQxMDYgLTQ0eiIgLz4KPGdseXBoIHVuaWNvZGU9InoiIGhvcml6LWFkdi14PSI3MzYiIGQ9Ik00MzMgLTMzcTM0IDAgNTUgMjNsMTc2IDE3NmwzOSAtMzlxMTUgLTE1IDAgLTMxbC0yNTQgLTI1NHEtMTUgLTE2IC0zMSAwbC0zNTAgMzUwcS0xNSAxNSAtMTcgMzZsLTggOTdsMzM1IC0zMzVxMjMgLTIzIDU1IC0yM3pNMzUzIDY2NGwzNTAgLTM0OXExNiAtMTYgMCAtMzFsLTI1NCAtMjU1cS03IC02IC0xNiAtNnQtMTUgNmwtMzUwIDM1MHEtMTUgMTcgLTE3IDM3bC0xNyAxOTBxLTIgMjIgMTQgMzZsNDMgNDRxMTUgMTMgMzQgMTNoMyBsMTg5IC0xN3EyMiAtMiAzNiAtMTh6TTExNSA2MTdxLTE0IC0xMyAtMTQgLTMzdDE0IC0zM3ExMyAtMTMgMzMgLTEzdDMzIDEzdDEzIDMzdC0xMyAzM3EtMTQgMTQgLTMzIDE0dC0zMyAtMTR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieyIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTc1MSAyOTloLTI3OHYtNDA4aC0xODV2NDA4aC0yNzdsMzcwIDQyOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ8IiBob3Jpei1hZHYteD0iOTE1IiBkPSJNMTgyIDI4MHEtMyAtMTYgLTMgLTM1di02OXEtNTggMCAtOTguNSA0MC41dC00MC41IDk4LjV2MjQ0cTAgNTggNDAuNSA5OC41dDk4LjUgNDAuNWgzNDhxNTggMCA5OC41IC00MC41dDQwLjUgLTk4LjV2LTEwNWgtMTA0djEwNXEwIDE0IC0xMC41IDI0LjV0LTI0LjUgMTAuNWgtMzQ4cS0xNCAwIC0yNC41IC0xMC41dC0xMC41IC0yNC41di0yNDRxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDN6TTczNiAzODVxNTcgMCA5OCAtNDEgdDQxIC05OXYtMjQzcTAgLTU4IC00MSAtOTl0LTk4IC00MWgtMzQ4cS01OCAwIC05OC41IDQxdC00MC41IDk5djI0M3EwIDU4IDQwLjUgOTl0OTguNSA0MWgzNDh6TTc3MCAydjI0M3EwIDE1IC0xMCAyNXQtMjQgMTBoLTM0OHEtMTQgMCAtMjQuNSAtMTB0LTEwLjUgLTI1di0yNDNxMCAtMTUgMTAuNSAtMjV0MjQuNSAtMTBoMzQ4cTE0IDAgMjQgMTB0MTAgMjV6IiAvPgo8Z2x5cGggdW5pY29kZT0ifSIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTExIDMwMWgyNzd2NDA5aDE4NXYtNDA5aDI3OGwtMzcwIC00Mjd6IiAvPgo8Z2x5cGggdW5pY29kZT0ifiIgZD0iTTQ2MCA2OTlxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTYyOCAzNHYyMzJoLTE2NmwxNDUgMTY3aC0xMTJ2MTM1aC03NXYtMTM1aC0xMTJsMTQ0IC0xNjdoLTE2MnYtMjMyaDE0NWwtMzkgLTM5aDEyNmwtMzkgMzloMTQ1ek0zMzMgNzZ2MTQ4aDI1M3YtMTQ4aC0yNTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZmY7IiBob3Jpei1hZHYteD0iODMzIiAvPgo8Z2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+IA==') format('svg')}.x-tab .x-button-icon:before,.x-button .x-button-icon:before{font-family:"Pictos"}.x-img.x-img-image{text-align:center}.x-img.x-img-image img{width:auto;height:100%}.x-img.x-img-background{background-repeat:no-repeat;background-position:center;background-size:auto 100%}.x-map{background-color:#edeae2}.x-map *{-webkit-box-sizing:content-box;box-sizing:content-box}.x-mask-map{background:transparent !important}.x-map-container{position:absolute !important;top:0;left:0;right:0;bottom:0}.x-mask{min-width:8.5em;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;z-index:10;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0,0,0,0.3) center center no-repeat}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask.x-mask-transparent{background-color:transparent}.x-mask .x-mask-inner{position:relative;background:rgba(0,0,0,0.25);color:#fff;text-align:center;padding:.4em;font-size:.95em;font-weight:bold}.x-mask .x-loading-spinner-outer{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;min-width:8em;height:8em}.x-mask.x-indicator-hidden .x-mask-inner{padding-bottom:0 !important}.x-mask.x-indicator-hidden .x-loading-spinner-outer{display:none}.x-mask.x-indicator-hidden .x-mask-message{position:relative;bottom:.25em}.x-mask .x-mask-message{position:absolute;bottom:5px;color:#333;left:0;right:0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-mask.x-has-message .x-mask-inner{padding-bottom:2em}.x-mask.x-has-message .x-loading-spinner-outer{height:168px}.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el{visibility:collapse}.x-video{height:100%;width:100%;background-color:#000}.x-video>*{height:100%;width:100%;position:absolute}.x-video-ghost{-webkit-background-size:100% auto;background:#000 url() center center no-repeat}audio{width:100%}.x-msgbox{min-width:15em;max-width:20em;max-height:90%;margin:6px;border:1px solid #ccc}.x-msgbox .x-docking-vertical{overflow:hidden}.x-msgbox .x-toolbar.x-docked-top{border-bottom:0}.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-msgbox-text{text-align:center}.x-msgbox-buttons .x-button{min-width:4.5em}.x-progressindicator{width:50%;height:1.3em}.x-progressindicator .x-progressindicator-inner{background:#222222;padding:10px;height:100%;border-radius:20px;box-shadow:0px 5px 17px rgba(40,40,40,0.5);box-sizing:content-box;position:relative}.x-progressindicator .x-progressindicator-text{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;position:absolute;top:0px;left:0px;color:white;text-shadow:1px 1px 2px black}.x-progressindicator .x-progressindicator-bar{height:100%;width:0%;border-radius:10px}.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill{height:100%;width:100%;background-color:gray;border-radius:10px;-webkit-animation-name:progressIndicator;-moz-animation-name:progressIndicator;-ms-animation-name:progressIndicator;-o-animation-name:progressIndicator;animation-name:progressIndicator;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background-repeat:repeat-x;background-size:30px 30px;background-image:-webkit-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-moz-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-o-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-ms-linear-gradient(-45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}@-webkit-keyframes progressIndicator{to{background-position:30px}}@-moz-keyframes progressIndicator{to{background-position:30px}}@keyframes progressIndicator{to{background-position:30px}}.x-panel,.x-msgbox{position:relative}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{padding:6px;background-color:#ccc}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{z-index:1;background-color:#fff}.x-panel.x-floating>.x-dock,.x-msgbox>.x-dock,.x-form.x-floating>.x-dock{z-index:1}.x-panel.x-floating>.x-dock.x-sized,.x-msgbox>.x-dock.x-sized,.x-form.x-floating>.x-dock.x-sized{margin:6px}.x-sheet,.x-sheet-action{height:auto}.x-toolbar{position:relative;background-color:#eee;min-height:2.6em;overflow:hidden}.x-toolbar.x-docked-top{border-bottom:1px solid}.x-toolbar.x-docked-bottom{border-top:1px solid}.x-toolbar.x-docked-left{width:50px;height:auto;border-right:1px solid}.x-toolbar.x-docked-right{width:50px;height:auto;border-left:1px solid}.x-title{font-size:1.2em;text-align:center;font-weight:bold;max-width:100%}.x-title.x-title-align-left{padding-left:10px}.x-title.x-title-align-right{padding-right:10px}.x-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-navigation-bar .x-container{overflow:visible}.x-toolbar-inner .x-field .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-ie .x-toolbar-inner{height:100% !important}.x-toast{min-width:15em;max-width:20em;max-height:90%;margin:6px}.x-toast .x-toast-text{text-align:center}.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-menu{background:#eee}.x-carousel-inner{position:relative;overflow:hidden}.x-carousel-item,.x-carousel-item>*{position:absolute !important;width:100%;height:100%}.x-carousel-indicator{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-carousel-indicator span{display:block;width:10px;height:10px;margin:3px;background-color:#eee}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#ccc}.x-carousel-indicator-horizontal{width:100%}.x-carousel-indicator-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.x-android-3 .x-surface-wrap,.x-android-3 .x-surface-wrap>*{-webkit-perspective:1}.x-draw-component{position:relative}.x-draw-component .x-inner{overflow:hidden}.x-surface{position:absolute}.x-chart-watermark{opacity:0.5;z-index:9;right:0;bottom:0;background:rgba(0,0,0,0.5);color:white;padding:4px 6px;font-family:"Helvetica";font-size:12px;position:absolute;border-top-left-radius:4px;white-space:nowrap;-webkit-border-top-left-radius:4px}.x-legend .x-legend-inner .x-legend-container{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #ccc;background:#fff}.x-legend .x-legend-inner .x-legend-container .x-legend-item{padding:0.8em 1em 0.8em 1.8em;color:#333;background:rgba(255,255,255,0);max-width:20em;min-width:0;font-size:14px;line-height:14px;font-weight:bold;white-space:nowrap;position:relative}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);opacity:.3}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker{position:absolute;width:.8em;height:.8em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;-webkit-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;left:.7em;top:1em}.x-legend.x-docked-top .x-legend-item,.x-legend.x-docked-bottom .x-legend-item{border-right:1px solid rgba(204,204,204,0.5)}.x-legend.x-docked-top .x-legend-item:last-child,.x-legend.x-docked-bottom .x-legend-item:last-child{border-right:0}.x-legend.x-docked-left .x-legend-inner,.x-legend.x-docked-right .x-legend-inner{display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center}.x-chart-toolbar{position:absolute;z-index:9;display:-webkit-box;display:-moz-box;display:-ms-box;display:box;padding:.6em}.x-chart-toolbar .x-button{margin:.2em}.x-chart-toolbar[data-side=left],.x-chart-toolbar[data-side=right]{top:0;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}.x-chart-toolbar[data-side=left]{left:0}.x-chart-toolbar[data-side=right]{right:0}.x-chart-toolbar[data-side=top],.x-chart-toolbar[data-side=bottom]{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal;right:0}.x-chart-toolbar[data-side=top]{top:0}.x-chart-toolbar[data-side=bottom]{bottom:0;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}.x-tab .x-button-icon.list:before,.x-button .x-button-icon.list:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"l"}.x-tab .x-button-icon.expand:before,.x-button .x-button-icon.expand:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"`"}.x-dataview-inlineblock .x-dataview-item,.x-dataview-inlineblock .x-data-item{display:inline-block !important}.x-dataview-nowrap .x-dataview-container{white-space:nowrap !important}.x-dataview-nowrap .x-container.x-dataview{white-space:nowrap !important}.x-list{overflow:hidden}.x-list .x-scroll-scroller{max-width:100%}.x-list .x-list-inner{width:100% !important}.x-list.x-list-indexed .x-list-disclosure{margin-right:50px}.x-list .x-item-selected .x-list-disclosure{background-color:#fff}.x-list .x-list-scrolldock-hidden{display:none}.x-list .x-list-item{position:absolute !important;left:0;top:0;width:100%}.x-list .x-list-item>.x-dock{height:auto}.x-list .x-list-item .x-dock-horizontal{border-top:1px solid #ccc}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-color:#ccc}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background-color:#ddd}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:5px}.x-list .x-list-item.x-list-item-relative{position:relative !important}.x-list .x-list-header{background-color:#eee;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-weight:bold}.x-list .x-list-header.x-list-item-relative{position:relative !important}.x-list .x-list-disclosure{margin:5px 15px 5px 0;overflow:visible;width:20px;height:20px;border:1px solid #ccc;background-color:#eee}.x-list .x-list-item-tpl .x-list-disclosure{position:absolute;right:0px;top:0px}.x-list .x-list-emptytext{text-align:center;pointer-events:none;font-color:#333333;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-list.x-list-indexed .x-list-disclosure{margin-right:35px}.x-list .x-list-scrolldockitem{position:absolute !important;left:0;top:0;width:100%}.x-ie .x-list-grouped .x-translatable-container .x-list-item:before,.x-ie .x-list-grouped .x-translatable-container .x-list-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-list-header{position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-list-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,.x-list-grouped .x-list-item-tpl.x-list-header-wrap{border-top:0}.x-list-inlineblock .x-list-item{display:inline-block !important}.x-list-nowrap .x-list-inner{width:auto}.x-list-nowrap .x-list-container{white-space:nowrap !important}.x-list-item-dragging{border-bottom:1px solid #ccc;background:#fff !important;z-index:1}.x-indexbar-wrapper{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;pointer-events:none}.x-indexbar{pointer-events:auto;z-index:2;min-height:0 !important;height:auto !important;-webkit-box-flex:0 !important;-ms-flex:0 0 auto !important;flex:0 0 auto !important}.x-indexbar>div{font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-indexbar-vertical{width:15px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px}.x-indexbar-horizontal{height:15px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-phone.x-landscape .x-indexbar>div{font-size:0.38em;line-height:1em}.x-indexbar-pressed{background-color:#ccc}.x-form-label{display:none !important}.x-form-label span{font-weight:bold}.x-form-label-nowrap .x-form-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-field{display:flex;display:-webkit-box;display:-ms-flexbox}.x-field .x-field-input{position:relative;min-width:3.7em}.x-field .x-field-input,.x-field .x-input-el{width:100%}.x-field.x-field-labeled .x-form-label{display:block !important}.x-field .x-component-outer{position:relative}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-label-align-left .x-component-outer,.x-label-align-right .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-label-align-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-label-align-bottom{-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.x-input-el{display:block}.x-field-mask{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-ie .x-field.x-field-text .x-field-mask,.x-ie .x-field.x-field-textarea .x-field-mask,.x-ie .x-field.x-field-search .x-field-mask{z-index:-1}.x-field-required .x-form-label:after{content:"*";display:inline}.x-spinner .x-component-outer{display:flex;display:-webkit-box;display:-ms-flexbox}.x-spinner .x-component-outer>*{width:auto}.x-spinner .x-field-input{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-spinner .x-field-input .x-input-el{width:100%;text-align:center}.x-spinner .x-field-input input::-webkit-outer-spin-button,.x-spinner .x-field-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-spinner .x-spinner-button{text-align:center;border:1px solid #ccc !important;background-color:#eee}.x-spinner.x-field-grouped-buttons .x-input-el{text-align:left}.x-select-overlay .x-list-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.x-field-number input::-webkit-outer-spin-button,.x-field-number input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-field-input .x-clear-icon,.x-field-input .x-reveal-icon{display:none;width:10px;height:10px;background-color:#ccc;position:absolute;top:50%;right:0}.x-field-clearable .x-clear-icon{display:block}.x-field-clearable .x-field-input{padding-right:10px}.x-field-revealable .x-reveal-icon{display:block}.x-field-revealable .x-field-input{padding-right:10px}.x-field-clearable.x-field-revealable .x-reveal-icon{right:20px}.x-android .x-input-el{-webkit-text-fill-color:#000}.x-android .x-empty .x-input-el{-webkit-text-fill-color:#A9A9A9}.x-android .x-item-disabled .x-input-el{-webkit-text-fill-color:#b3b3b3}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ccc;overflow:hidden}.x-form-fieldset .x-dock .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-form-fieldset-title{font-weight:bold}.x-form-fieldset-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-form-fieldset-instructions{text-align:center}.x-ie .x-field-select .x-field-mask{z-index:3}.x-sheet.x-picker{padding:0}.x-sheet.x-picker .x-sheet-inner{background-color:#fff;overflow:hidden}.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body{border-left:1px solid #999999;border-right:1px solid #ACACAC}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body{border-left:0}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body{border-left:0;border-right:0}.x-picker-slot .x-scroll-view{z-index:2;position:relative}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none}.x-picker-slot-title{position:relative;z-index:2}.x-picker-slot-title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold}.x-picker-slot .x-dataview-inner{width:100% !important}.x-picker-slot .x-dataview-item{vertical-align:middle;height:30px;line-height:30px}.x-picker-slot .x-dataview-item.x-item-selected{font-weight:bold}.x-picker-slot .x-picker-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-ie .x-picker-item{cursor:default}.x-ie .x-picker-item::before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;clear:both}.x-list-paging.x-loading .x-loading-spinner{display:block}.x-list-paging.x-loading .x-list-paging-msg{display:none}.x-list-pullrefresh{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;top:-5em;left:0;width:100%;height:4.5em}.x-list-pullrefresh .x-loading-spinner{display:none}.x-list-pullrefresh-arrow{width:2.5em;height:4.5em;background-color:#bbb}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;text-align:center}.x-list-pullrefresh-updated{text-align:center}.x-list-pullrefresh-loading *.x-loading-spinner{display:block}.x-list-pullrefresh-loading .x-list-pullrefresh-arrow{display:none}.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner{display:none}.x-slider,.x-toggle{position:relative;height:16px;min-height:0;min-width:0}.x-slider>*,.x-toggle>*{position:absolute;width:100%;height:100%}.x-thumb{position:absolute;height:16px;width:10px;border:1px solid #ccc;background-color:#ddd}.x-slider:before{content:'';position:absolute;width:auto;height:8px;top:4px;left:0;right:0;margin:0 5px;background-color:#eee}.x-toggle{border:1px solid #ccc;width:30px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-toggle-on{background-color:#eee}.x-tab{z-index:1;overflow:visible !important;background-color:#eee;border:1px solid #ccc}.x-tabbar{border-color:#ccc;border-style:solid;border-width:0;background-color:#eee}.x-tabbar.x-docked-top{border-bottom-width:1px}.x-tabbar.x-docked-top .x-tab .x-button-icon{position:relative}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown{display:inline-block}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden{display:none}.x-tabbar.x-docked-bottom{border-top-width:1px}.x-tabbar.x-docked-bottom .x-tab .x-button-icon{display:block;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown{visibility:visible}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden{visibility:hidden}.x-tab{position:relative;min-width:3.3em}.x-table-inner{display:table !important;width:100% !important;height:100% !important}.x-table-inner.x-fixed-layout{table-layout:fixed !important}.x-table-row{display:table-row !important}.x-table-cell{display:table-cell !important;vertical-align:middle}.x-orientation-inspector{display:none;content:"landscape"}@media (orientation: portrait){.x-orientation-inspector{content:"portrait"}}.x-grid .x-grid-header-container{border-width:0 1px 1px 0;border-style:solid;height:65px;font-weight:bold;overflow:hidden}.x-grid .x-grid-header-container .x-grid-column{display:inline-block}.x-grid .x-grid-header-container .x-grid-header-container-inner{width:100000px;position:absolute;top:0;left:0}.x-grid .x-grid-column{height:64px;border-width:1px 1px 0 1px;border-style:solid;line-height:64px;vertical-align:middle;padding:0 8px}.x-grid .x-grid-column .x-innerhtml{display:inline-block;width:auto;position:relative}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{position:absolute;width:12px;line-height:64px;top:0;height:64px;font-family:'Pictos';font-size:12px}.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after,.x-grid .x-grid-column.x-column-align-center .x-innerhtml:after{right:-16px}.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after{left:-16px}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after{content:"{"}.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{content:"}"}.x-grid .x-grid-headergroup{display:inline-block;position:relative;vertical-align:bottom;height:64px;padding-top:32px}.x-grid .x-grid-headergroup .x-inner>.x-innerhtml{height:32px;line-height:28px;vertical-align:middle;display:block;position:absolute;width:100%;top:0;left:0;text-align:center;border-style:solid;border-width:1px;overflow:hidden;text-overflow:ellipsis}.x-grid .x-grid-headergroup .x-grid-column{height:32px !important;line-height:27px !important;font-size:0.7em}.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after{line-height:27px;height:27px}.x-grid .x-grid-row{position:absolute;left:0;top:0;border-width:0 0 1px 0;border-style:solid}.x-grid .x-grid-cell{display:inline-block;vertical-align:middle;line-height:60px;padding:0 8px;height:60px;overflow:hidden;border-width:0 1px 0 0}.x-grid .x-grid-cell-align-center,.x-grid .x-grid-column-align-center{text-align:center}.x-grid .x-grid-cell-align-right,.x-grid .x-grid-column-align-right{text-align:right}.x-grid .x-grid-viewoptions{border-width:0 0 0 1px;border-style:solid}.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml{padding:0px !important}.x-grid .x-grid-viewoptions .x-column-options-header{height:32px;line-height:28px;vertical-align:middle;border-style:solid;border-width:1px;overflow:hidden;padding-left:10px}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,.x-grid .x-grid-viewoptions .x-column-options-groupindicator,.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:40px;height:48px;position:absolute;bottom:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{position:absolute;top:0;left:0;height:100%;width:100%;text-align:center;font-size:24px;font-family:'Pictos';line-height:48px;content:"l";vertical-align:middle}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle{left:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after{line-height:54px}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator{right:0}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after{font-size:30px;line-height:54px;content:"E"}.x-grid .x-grid-viewoptions .x-column-options-groupindicator{right:40px}.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after{font-size:30px;line-height:54px;content:"g"}.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:30px;left:40px}.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{line-height:52px;content:"o"}.x-grid .x-grid-viewoptions .x-column-options-leaf:after{content:"F"}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl{background:transparent}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml{background:transparent}.x-grid .x-grid-viewoptions .x-column-options-text{display:block;height:30px;margin:10px 50px 5px 80px;position:relative;vertical-align:middle;line-height:28px}.x-grid .x-grid-columnoptions{border-width:0 0 1px}.x-grid .x-grid-multiselection-column{position:relative;padding:0}.x-grid .x-grid-multiselection-column:after{position:absolute;top:0;left:0;width:60px;height:64px;line-height:64px;font-family:'Pictos';font-size:26px;text-align:center;content:"2"}.x-grid .x-grid-multiselection-cell{position:relative;padding:0}.x-grid .x-grid-multiselection-cell:after{position:absolute;top:0;left:0;width:60px;height:60px;line-height:60px;font-family:'Pictos';font-size:20px;text-align:center;content:"_"}.x-grid .x-item-selected .x-grid-multiselection-cell:after{content:"3"}.x-grid .x-grid-pagingtoolbar>.x-body{padding:0 30px 0 50px}.x-grid .x-grid-pagingtoolbar-currentpage{position:relative;height:22px}.x-grid .x-grid-pagingtoolbar-currentpage span{position:absolute;right:0;top:0;line-height:22px;height:22px}.x-grid .x-grid-summaryrow{height:32px;font-size:0.8em;position:relative}.x-grid .x-grid-summaryrow .x-grid-cell{height:32px;line-height:30px;border-width:0 0 1px;border-style:solid}.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after{content:''}.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before,.x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-grid-header{line-height:44px;font-weight:bold;position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-grid-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap{border-top:0}.x-scroll-view{position:relative;display:block;overflow:hidden}.x-scroll-container{position:absolute;width:100%;height:100%}.x-scroll-scroller{position:absolute;min-width:100%;min-height:100%;height:auto !important;width:auto !important}.x-scroll-stretcher{position:absolute;visibility:hidden}.x-scroll-bar-grid-wrapper{position:absolute;width:100%;height:100%}.x-scroll-bar-grid{display:table;width:100%;height:100%}.x-scroll-bar-grid>*{display:table-row}.x-scroll-bar-grid>*>*{display:table-cell}.x-scroll-bar-grid>:first-child>:first-child{width:100%;height:100%}.x-scroll-bar-grid>:first-child>:nth-child(2){padding:3px 3px 0 0}.x-scroll-bar-grid>:nth-child(2)>:first-child{padding:0 0 3px 3px}.x-scroll-bar{position:relative;overflow:hidden}.x-scroll-bar-stretcher{position:absolute;visibility:hidden;width:100%;height:100%}.x-scroll-bar-x{width:100%}.x-scroll-bar-x>.x-scroll-bar-stretcher{width:300%}.x-scroll-bar-x.active{height:6px}.x-scroll-bar-y{height:100%}.x-scroll-bar-y>.x-scroll-bar-stretcher{height:300%}.x-scroll-bar-y.active{width:6px}.x-scroll-indicator{background:#333;position:absolute;z-index:3}.x-scroll-indicator-x{height:100%}.x-scroll-indicator-y{width:100%}.x-scroll-indicator.rounded{background:none}.x-scroll-indicator.rounded>*{position:absolute;background-color:#333}.x-scroll-indicator.rounded>:nth-child(2){-webkit-transform-origin:0% 0%;background:none;content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-light>*{background-color:#eee}.x-scroll-indicator.rounded.x-scroll-indicator-light>:nth-child(2){content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-y>*{width:100%}.x-scroll-indicator.rounded.x-scroll-indicator-y>:first-child{height:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:nth-child(2){height:1px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:last-child{height:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>*{height:100%}.x-scroll-indicator.rounded.x-scroll-indicator-x>:first-child{width:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:nth-child(2){width:1px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:last-child{width:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-list-light .x-scroll-indicator,.x-dataview-light .x-scroll-indicator{background:#fff}.x-ios .x-scroll-scroller{-webkit-transform:translate3d(0, 0, 0)}.x-ie .x-scroll-bar-y{position:absolute;margin-left:-5px}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:.5em .5em;transform-origin:.5em .5em}.x-loading-spinner>span,.x-loading-spinner>span:before,.x-loading-spinner>span:after{display:block;position:absolute;width:.1em;height:.25em;top:0;-webkit-transform-origin:.05em .5em;transform-origin:.05em .5em;content:" "}.x-loading-spinner>span{left:50%;margin-left:-0.05em}.x-loading-spinner>span.x-loading-top{background-color:rgba(170,170,170,0.99)}.x-loading-spinner>span.x-loading-top::after{background-color:rgba(170,170,170,0.9)}.x-loading-spinner>span.x-loading-left::before{background-color:rgba(170,170,170,0.8)}.x-loading-spinner>span.x-loading-left{background-color:rgba(170,170,170,0.7)}.x-loading-spinner>span.x-loading-left::after{background-color:rgba(170,170,170,0.6)}.x-loading-spinner>span.x-loading-bottom::before{background-color:rgba(170,170,170,0.5)}.x-loading-spinner>span.x-loading-bottom{background-color:rgba(170,170,170,0.4)}.x-loading-spinner>span.x-loading-bottom::after{background-color:rgba(170,170,170,0.35)}.x-loading-spinner>span.x-loading-right::before{background-color:rgba(170,170,170,0.3)}.x-loading-spinner>span.x-loading-right{background-color:rgba(170,170,170,0.25)}.x-loading-spinner>span.x-loading-right::after{background-color:rgba(170,170,170,0.2)}.x-loading-spinner>span.x-loading-top::before{background-color:rgba(170,170,170,0.15)}.x-loading-spinner>span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg)}.x-loading-spinner>span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg)}.x-loading-spinner>span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg)}.x-loading-spinner>span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg)}.x-loading-spinner>span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg)}.x-loading-spinner>span::after{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);-ms-transform:rotate(-30deg)}.x-loading-spinner{-webkit-animation-name:x-loading-spinner-rotate;-webkit-animation-duration:.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-name:x-loading-spinner-rotate;animation-duration:.5s;animation-timing-function:linear;animation-iteration-count:infinite}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-button{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;min-height:1.8em;padding:.3em .6em}.x-button,.x-toolbar .x-button{border:1px solid #999;border-top-color:#a6a6a6;background-color:#ccc;color:#000}.x-button.x-button-back:before,.x-button.x-button-forward:before,.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#999}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after,.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:none;background-color:#ccc;background-image:-webkit-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-moz-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-o-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-ms-linear-gradient(to bottom, #f2f2f2,#d9d9d9 3%,#bfbfbf)}.x-button.x-button-pressing,.x-button.x-button-pressing:after,.x-button.x-button-pressed,.x-button.x-button-pressed:after,.x-button.x-button-active,.x-button.x-button-active:after,.x-toolbar .x-button.x-button-pressing,.x-toolbar .x-button.x-button-pressing:after,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-pressed:after,.x-toolbar .x-button.x-button-active,.x-toolbar .x-button.x-button-active:after{background-image:none;background-color:#c4c4c4;background-image:-webkit-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-moz-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-o-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-ms-linear-gradient(to bottom, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6)}.x-button .x-button-icon{width:1.5em;height:1.5em}.x-button .x-button-icon:before{font-size:1.6em;line-height:1em}.x-button.x-item-disabled .x-button-label,.x-button.x-item-disabled .x-badge,.x-button.x-item-disabled .x-button-icon{opacity:.5}.x-button-round{-moz-border-radius:.9em;-webkit-border-radius:.9em;border-radius:.9em}.x-ie .x-button{height:0px}.x-ie .x-button .x-button-label,.x-ie .x-button .x-badge{overflow:visible}.x-iconalign-left .x-button-label,.x-iconalign-left .x-badge{margin-left:.6em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-badge{margin-right:.6em}.x-iconalign-top,.x-iconalign-bottom{padding-top:.2em !important;padding-bottom:.2em !important}.x-button-label,.x-badge,.x-hasbadge .x-badge{font-weight:bold;line-height:1.2em;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;font-size:1em}.x-toolbar .x-button{margin:6px .2em;padding:0 .6em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge{font-size:.7em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge,.x-toolbar .x-button .x-hasbadge .x-badge{line-height:1.6em}.x-toolbar .x-button .x-button-icon:before{font-size:1.3em;line-height:1.3em}.x-ie .x-toolbar .x-button .x-button-icon::before{font-size:.6em;line-height:1em}.x-button-small,.x-toolbar .x-button-small{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button-small .x-badge{font-size:.6em}.x-button-small .x-button-icon,.x-toolbar .x-button-small .x-button-icon{width:.75em;height:.75em}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.7em;z-index:1}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-button-back:before,.x-webkit .x-button-back:after{content:'';position:absolute;width:15px;height:auto;top:-2px;left:auto;bottom:-2px;z-index:2;-webkit-mask:4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:15px 100%;overflow:hidden}.x-webkit .x-button-back,.x-webkit .x-toolbar .x-button-back{margin-left:.77217em;padding-left:.4em}.x-webkit .x-button-back:before,.x-webkit .x-toolbar .x-button-back:before{left:-15px}.x-webkit .x-button-back:after,.x-webkit .x-toolbar .x-button-back:after{left:-14px}.x-webkit .x-button-forward,.x-webkit .x-toolbar .x-button-forward{margin-right:.78217em;padding-right:.4em}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:after{-webkit-mask:-4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:15px 100%}.x-webkit .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:before{right:-15px}.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:after{right:-14px}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;min-height:0;text-shadow:none;line-height:auto;height:1.9em;padding:0 0.5em;-moz-border-radius:none;-webkit-border-radius:none;border-radius:none}.x-button.x-button-plain>*,.x-toolbar .x-button.x-button-plain>*{overflow:visible}.x-button.x-button-plain.x-button-pressing,.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressing,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;background-image:-webkit-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-moz-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-ms-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px)}.x-segmentedbutton .x-button{margin:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-segmentedbutton .x-button.x-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-segmentedbutton .x-button.x-last{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-segmentedbutton .x-button:not(.x-first){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{border-color:#900;min-width:2em;line-height:1.2em;top:-.2em;padding:.1em .3em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;color:#fcc;background-image:none;background-color:#c00;background-image:-webkit-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-moz-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-o-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-ms-linear-gradient(to bottom, #ff1a1a,#e60000 3%,#b30000);-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em}.x-sheet,.x-picker,.x-sheet-action{padding:.7em;border-top:1px solid #7f7f7f;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-sheet-inner>.x-button,.x-sheet-action-inner>.x-button{margin-bottom:.5em}.x-sheet-inner>.x-button:last-child,.x-sheet-action-inner>.x-button:last-child{margin-bottom:0}.x-msgbox{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-msgbox .x-icon{margin:0 0.8em 0 0.5em;background:#fff;-webkit-mask-size:100%}.x-msgbox .x-msgbox-info{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-warning{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAGXElEQVRoBeWa2Y8UVRSHpxEBEUYURUEdxhA2hbgQiVtgJIgbQpQQBRSi7AF88MknX30m/gP6YIiaGI34YkxcEo1xfTDikmgk7gtGAQFBHb+v6Wp6uquqq7rqtjpzkl+q6y7nnN9dzj230pXBwcGekSSjRhJZuY44wqO7NcOVSuU0bJ0PLgXnggo4CPaBr9laJ3gGl0o39jBkHdi54BawDswDEv4KPAmeAx/iyzGeYUXCIYH3kr0K7AV/AaNkM96k7GYwJqQv6g5KtmrgJNnnY0g2k36XNgNgVEjSQQnj/ETwNGgml/T+Km2nhiQcLEqzb9W9FLhvs8oNNFxJ39OzdsjbLhhhHDEiPwCc5axiJN8EZmXtkLddEMK1GbobZ5bldYj2C8A6dIzvoG/7LiH2C1bng/0gaa+2Kz9A35tC+Fb6DDMzZ+LsVtAHOpVz6LgTXZM6VZDUr1TCOGgysQiYXBSVJSi4E5Xu69KkVMJ4dRF4EJQxMxPQsw3MAaVJaYSZCY+SDWBxad719FyJrq3oHlOWztII41A/WAPOAGWJg3gHMPcuRcxzC0ttBlahKGn5GZW/aWPIYHd2TJvplG3AxsdE7aMx9bmKSrkt4Yxn5x4wM8G6jj4M/k6ot9jLw/KE+u8pXwvhVxLqsxcXPeuwdAF4ETiLSfDe25dmi/pHU/qr9y0wI01HlrpCe5iZ9RhaC24EaaIdByZWanoS62udXEUbaVsogBUijANG0Q2gXaDSjl85ksSBm5pUWSs33ji4nvMdS8eEGemxWN0IZmewrrNeJtIkS+58MQo2Y9sA15F0TBhrfsVYASTeTpzBuAgc9dOPdkvatrZz+wxAuqMMrCPCGOvF6FZgZpVFdK7dkj0viyLa2G5n7Zmxy6lmHRGm+63A2c0qzvBZKY0nU5fHl8W0X8XAqzeX5DFSVYwN9+IOkLZE45yYEldYK3M551miBsltIOncr6ltfeQiDNlxqDAqX92qqm1JGmEHL+9s+X17Ez7lCmC5CGPAQLUFSDyvjKsNWFw/93feNFffPaZc3pklM2Gc9brm7PZn1j60ocsw6dro/s47w2p3oExGMm+vTIRRqDMLgTeXPHuN5nXx5jOx/jb0h5E3ky9Du1X7DFC2qOZjU3Xra1Yjzsx60O5oabVwqsRtYDSOE/d3pwPp5yBXXpZzvP2oMnIOyu3Ao6iImAMnEc68JBMcWEL5mpqvCU1OFmeZYdM5j6G0KJtqpFYp4aQ9PC2LgpQ2xgCDqZE7VVIJM2Luu/uBN5WiYtBqyaZqs2JALCqeyVvQl5rqphJGgUTvBRIvKh47cUHLNLWTY67ZH7ncBa5vrmh8TyTMSLn8toO+xg4FfhvpW2aYMgehDMK6Zha4C98Tr6KJhOl4LbgNlDG7qKmes3HByYF1f5chrqKlwNtULLfYQho7Uu7dxJGirhPpRbeYGAEl/cD9XZYYDzaDC+MUtqRzOOJ5uBIsi+tQsGwu/XcB/wmgDAIja6582I5tZID61XDZzXeuyNbJLs0fvii9DLwHdKZsHEfnz+CnBvzGb79mlm1rHzoXtPBrLKCBS2sPCOFAROgH9L8AHgcfgD9BVFf28yV0TxrCcchLT899NPglkAMO4kdgNZgHZoDrwG5wCJRNVn2HwTZQ/f4u1/p/PCg0QL0OQs2uy9gz3VVU/eMKT+OFwWUvCGX3HXRPjya2SpgCDd8DjoAQI63Ot0FvZLjxSfl68AcIYfsYeneA6l+iomOpj4KHgKMfSn6F5MEE5Z9RfiKhrmixqeZ2MFNFowjdHk3LwRUWBJQp2Eq6ws3BbssRWaIvs9Hlv4OqCY657MsgxHJq1Ol2eQSMbVrOOvMaCLWHIx/ex0avozoeXANCi9vFpXWIkX6Dp2eygdL9tRCYa4cUE5ypGrkEfBHSUpPub3k3YhtMXF39IGTsQH1dVjjDLqVuyjSMCe1GQbNb9o9o8Hewv1sWG+x0m6yr6nONmuU81eDIcP1pOvtjlHjM4uUZEEW04fZ8Fm6Xg0pE2ExrPngMfAeGC2GX8RPAHGO0x2H9Ty0cFZL2u7OJ/QJgMuCxYYCxzkH4L0sF57z7egp4Bf0EeBv7FHwJ2eq9uE6Ywh5I28lUTKKTgcfFBOBe/z8QNvIfBkfBASDx45Ctn0RDCFM57KXbR8O/PqAjjvA/zIVqEDmIpQQAAAAASUVORK5CYII=')}.x-msgbox .x-msgbox-question{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-error{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC')}.x-msgbox .x-title{font-size:.9em;line-height:1.4em}.x-msgbox .x-body{background:transparent !important}.x-msgbox .x-toolbar{background:transparent none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-msgbox .x-toolbar.x-docked-top{height:1.3em}.x-msgbox .x-field{min-height:2em;background:#fff;-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em}.x-msgbox .x-form-field{min-height:1.5em;padding-right:0 !important;-webkit-appearance:none}.x-msgbox .x-field-input{padding-right:2.2em}.x-msgbox-text{padding:6px 0;line-height:1.4em}.x-msgbox-buttons{padding:0.4em 0;height:auto}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-toolbar{padding:0 .2em}.x-toolbar.x-docked-left{width:7em;padding:.2em}.x-toolbar.x-docked-right{width:7em;padding:.2em}.x-title{line-height:2.1em;font-size:1.2em;margin:0 0.3em;padding:0 .3em}.x-spinner .x-input-el,.x-field-select .x-input-el{-webkit-text-fill-color:#000;-webkit-opacity:1}.x-spinner.x-item-disabled .x-input-el,.x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:currentcolor}.x-toolbar .x-field-select .x-input-el{-webkit-text-fill-color:#fff}.x-toolbar .x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:rgba(255,255,255,0.6)}.x-toolbar .x-form-field-container{padding:0 .3em}.x-toolbar .x-slider-field .x-component-outer,.x-toolbar .x-toggle-field .x-component-outer{padding:0em .3em}.x-toolbar .x-field{width:13em;padding:.5em;min-height:0;border-bottom:0;background:transparent}.x-toolbar .x-field .x-clear-icon{background-size:50% 50%;right:-0.8em;margin-top:-1.06em}.x-toolbar .x-field-input{padding-right:1.6em !important}.x-toolbar .x-field-textarea .x-component-outer,.x-toolbar .x-field-text .x-component-outer,.x-toolbar .x-field-number .x-component-outer,.x-toolbar .x-field-search .x-component-outer{background-color:#fff;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset}.x-toolbar .x-form-label{background:transparent;border:0;padding:0;line-height:1.4em}.x-toolbar .x-form-field{height:1.6em;color:#6e6e6e;background:transparent;min-height:0;-webkit-appearance:none;padding:0em .3em;margin:0}.x-toolbar .x-form-field:focus{color:#000}.x-toolbar .x-field-select .x-component-outer,.x-toolbar .x-field-search .x-component-outer{-moz-border-radius:.8em;-webkit-border-radius:.8em;border-radius:.8em}.x-toolbar .x-field-search .x-field-input{background-position:.5em 50%}.x-toolbar .x-field-select{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-form-field{height:1.4em}.x-toolbar .x-field-select{background:transparent}.x-toolbar .x-field-select .x-component-outer:after{right:.4em}.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after{opacity:.6}.x-toolbar .x-field-select .x-component-outer:before{width:3em;border-left:none;-moz-border-radius-topright:.8em;-webkit-border-top-right-radius:.8em;border-top-right-radius:.8em;-moz-border-radius-bottomright:.8em;-webkit-border-bottom-right-radius:.8em;border-bottom-right-radius:.8em;-webkit-mask:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');-webkit-mask-position:right top;-webkit-mask-repeat:repeat-y;-webkit-mask-size:3em 0.05em}.x-toolbar .x-field-select .x-input-text{color:#fff}.x-android .x-field-search .x-field-input{padding-left:.2em !important;padding-right:2.2em !important}.x-form .x-scroll-container{background-color:#eee}.x-form .x-toolbar .x-scroll-container{background-color:transparent}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;padding:.6em;background-color:#f7f7f7;color:#080808}.x-form-label span{font-size:.8em}.x-button.border-radius-10{-moz-border-radius:10px !important;-webkit-border-radius:10px;border-radius:10px !important}.x-toolbar{background-color:transparent}.x-toolbar-edit{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb);border-color:#4c4c4c}.x-toolbar-edit .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-edit.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-edit .x-button.x-button-back:before,.x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-button.x-button-back:before,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-edit .x-button,.x-toolbar-edit .x-button.x-button-back:after,.x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button.x-button-back:after,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-edit .x-button.x-button-pressing,.x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar-edit .x-button.x-button-pressed,.x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar-edit .x-button.x-button-active,.x-toolbar-edit .x-button.x-button-active:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-button.x-button-active,.x-toolbar .x-toolbar-edit .x-button.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-edit .x-label,.x-toolbar-edit .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-toolbar{background-color:transparent}.x-toolbar-search{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-moz-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-o-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#e7e7e7 20%,#e7e7e7);border-color:#4c4c4c}.x-toolbar-search .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-search.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-search .x-button.x-button-back:before,.x-toolbar-search .x-button.x-button-forward:before,.x-toolbar .x-toolbar-search .x-button.x-button-back:before,.x-toolbar .x-toolbar-search .x-button.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-search .x-button,.x-toolbar-search .x-button.x-button-back:after,.x-toolbar-search .x-button.x-button-forward:after,.x-toolbar .x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button.x-button-back:after,.x-toolbar .x-toolbar-search .x-button.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-search .x-button.x-button-pressing,.x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar-search .x-button.x-button-pressed,.x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar-search .x-button.x-button-active,.x-toolbar-search .x-button.x-button-active:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressing,.x-toolbar .x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressed,.x-toolbar .x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-button.x-button-active,.x-toolbar .x-toolbar-search .x-button.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-search .x-label,.x-toolbar-search .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-button-icon.share,.list-icon.share{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 0px;background-size:72px 144px}.x-button-pressing .x-button-icon.share,.x-button-pressing .list-icon.share,.x-button-pressed .x-button-icon.share,.x-button-pressed .list-icon.share,.x-button-active .x-button-icon.share,.x-button-active .list-icon.share,.x-item-pressed .x-button-icon.share,.x-item-pressed .list-icon.share{background-position:-24px 0px}.x-button-icon.search,.list-icon.search{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -24px;background-size:72px 144px}.x-button-pressing .x-button-icon.search,.x-button-pressing .list-icon.search,.x-button-pressed .x-button-icon.search,.x-button-pressed .list-icon.search,.x-button-active .x-button-icon.search,.x-button-active .list-icon.search,.x-item-pressed .x-button-icon.search,.x-item-pressed .list-icon.search{background-position:-24px -24px}.x-button-icon.fullscreen,.list-icon.fullscreen{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -24px;background-size:72px 144px}.x-button-pressing .x-button-icon.fullscreen,.x-button-pressing .list-icon.fullscreen,.x-button-pressed .x-button-icon.fullscreen,.x-button-pressed .list-icon.fullscreen,.x-button-active .x-button-icon.fullscreen,.x-button-active .list-icon.fullscreen,.x-item-pressed .x-button-icon.fullscreen,.x-item-pressed .list-icon.fullscreen{background-position:-24px -24px}.x-button-icon.right,.list-icon.right{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -48px;background-size:72px 144px}.x-button-pressing .x-button-icon.right,.x-button-pressing .list-icon.right,.x-button-pressed .x-button-icon.right,.x-button-pressed .list-icon.right,.x-button-active .x-button-icon.right,.x-button-active .list-icon.right,.x-item-pressed .x-button-icon.right,.x-item-pressed .list-icon.right{background-position:-24px -48px}.x-button-icon.left,.list-icon.left{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -72px;background-size:72px 144px}.x-button-pressing .x-button-icon.left,.x-button-pressing .list-icon.left,.x-button-pressed .x-button-icon.left,.x-button-pressed .list-icon.left,.x-button-active .x-button-icon.left,.x-button-active .list-icon.left,.x-item-pressed .x-button-icon.left,.x-item-pressed .list-icon.left{background-position:-24px -72px}.x-button-icon.play,.list-icon.play{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -96px;background-size:72px 144px}.x-button-pressing .x-button-icon.play,.x-button-pressing .list-icon.play,.x-button-pressed .x-button-icon.play,.x-button-pressed .list-icon.play,.x-button-active .x-button-icon.play,.x-button-active .list-icon.play,.x-item-pressed .x-button-icon.play,.x-item-pressed .list-icon.play{background-position:-24px -96px}.x-button-icon.pause,.list-icon.pause{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -120px;background-size:72px 144px}.x-button-pressing .x-button-icon.pause,.x-button-pressing .list-icon.pause,.x-button-pressed .x-button-icon.pause,.x-button-pressed .list-icon.pause,.x-button-active .x-button-icon.pause,.x-button-active .list-icon.pause,.x-item-pressed .x-button-icon.pause,.x-item-pressed .list-icon.pause{background-position:-24px -120px}.x-button.x-button-base{padding:.3em 8px}.x-button.x-button-base,.x-toolbar .x-button.x-button-base{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-base .x-button-icon,.x-toolbar .x-button.x-button-base .x-button-icon{width:24px;height:24px}.x-button.x-button-base.x-button-forward:before,.x-button.x-button-base.x-button-forward:after,.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base .x-button-label,.x-button.x-button-base .x-badge,.x-toolbar .x-button.x-button-base .x-button-label,.x-toolbar .x-button.x-button-base .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-forward:before{background:#989898}.x-button.x-button-base,.x-button.x-button-base.x-button-back:after,.x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base,.x-toolbar .x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-base.x-button-pressing,.x-button.x-button-base.x-button-pressing:after,.x-button.x-button-base.x-button-pressed,.x-button.x-button-base.x-button-pressed:after,.x-button.x-button-base.x-button-active,.x-button.x-button-base.x-button-active:after,.x-toolbar .x-button.x-button-base.x-button-pressing,.x-toolbar .x-button.x-button-base.x-button-pressing:after,.x-toolbar .x-button.x-button-base.x-button-pressed,.x-toolbar .x-button.x-button-base.x-button-pressed:after,.x-toolbar .x-button.x-button-base.x-button-active,.x-toolbar .x-button.x-button-base.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-base.x-button-pressing .x-button-label,.x-button.x-button-base.x-button-pressing .x-badge,.x-button.x-button-base.x-button-pressed .x-button-label,.x-button.x-button-base.x-button-pressed .x-badge,.x-button.x-button-base.x-button-active .x-button-label,.x-button.x-button-base.x-button-active .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-base:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-light{padding:.3em 8px}.x-button.x-button-light,.x-toolbar .x-button.x-button-light{border:1px solid #c7c7c7;border-top-color:#d9d9d9;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#262626}.x-button.x-button-light .x-button-icon,.x-toolbar .x-button.x-button-light .x-button-icon{width:24px;height:24px}.x-button.x-button-light.x-button-forward:before,.x-button.x-button-light.x-button-forward:after,.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-light .x-button-label,.x-button.x-button-light .x-badge,.x-toolbar .x-button.x-button-light .x-button-label,.x-toolbar .x-button.x-button-light .x-badge{color:#666;text-shadow:#fff 0 0.09em 0}.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-forward:before{background:#ccc}.x-button.x-button-light,.x-button.x-button-light.x-button-back:after,.x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light,.x-toolbar .x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:after{background-image:none;background-color:#fff;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#ffffff)}.x-button.x-button-light.x-button-pressing,.x-button.x-button-light.x-button-pressing:after,.x-button.x-button-light.x-button-pressed,.x-button.x-button-light.x-button-pressed:after,.x-button.x-button-light.x-button-active,.x-button.x-button-light.x-button-active:after,.x-toolbar .x-button.x-button-light.x-button-pressing,.x-toolbar .x-button.x-button-light.x-button-pressing:after,.x-toolbar .x-button.x-button-light.x-button-pressed,.x-toolbar .x-button.x-button-light.x-button-pressed:after,.x-toolbar .x-button.x-button-light.x-button-active,.x-toolbar .x-button.x-button-light.x-button-active:after{background-image:none;background-color:#999;background-image:-webkit-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-moz-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-o-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-ms-linear-gradient(to bottom, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a)}.x-button.x-button-light.x-button-pressing .x-button-label,.x-button.x-button-light.x-button-pressing .x-badge,.x-button.x-button-light.x-button-pressed .x-button-label,.x-button.x-button-light.x-button-pressed .x-badge,.x-button.x-button-light.x-button-active .x-button-label,.x-button.x-button-light.x-button-active .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-light.x-button-active .x-button-label,.x-toolbar .x-button.x-button-light.x-button-active .x-badge{color:#fff;text-shadow:gray 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-light{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-light:not(.x-first){border-left:1px solid #c7c7c7}.x-segmentedbutton-base.divided .x-button-light:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-light.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-light.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-base-blue{padding:.3em 8px}.x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue{border:1px solid #2e519b;border-top-color:#3760b7;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#fff}.x-button.x-button-base-blue .x-button-icon,.x-toolbar .x-button.x-button-base-blue .x-button-icon{width:24px;height:24px}.x-button.x-button-base-blue.x-button-forward:before,.x-button.x-button-base-blue.x-button-forward:after,.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base-blue .x-button-label,.x-button.x-button-base-blue .x-badge,.x-toolbar .x-button.x-button-base-blue .x-button-label,.x-toolbar .x-button.x-button-base-blue .x-badge{color:#fff;text-shadow:#2e519b 0 -0.09em 0}.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before{background:#3155a3}.x-button.x-button-base-blue,.x-button.x-button-base-blue.x-button-back:after,.x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-moz-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-o-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-ms-linear-gradient(to bottom, #ffffff,#9bb2e1 3%,#688ad2)}.x-button.x-button-base-blue.x-button-pressing,.x-button.x-button-base-blue.x-button-pressing:after,.x-button.x-button-base-blue.x-button-pressed,.x-button.x-button-base-blue.x-button-pressed:after,.x-button.x-button-base-blue.x-button-active,.x-button.x-button-base-blue.x-button-active:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressing,.x-toolbar .x-button.x-button-base-blue.x-button-pressing:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressed,.x-toolbar .x-button.x-button-base-blue.x-button-pressed:after,.x-toolbar .x-button.x-button-base-blue.x-button-active,.x-toolbar .x-button.x-button-base-blue.x-button-active:after{background-image:none;background-color:#416cc6;background-image:-webkit-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-moz-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-o-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-ms-linear-gradient(to bottom, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7)}.x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-button.x-button-base-blue.x-button-pressing .x-badge,.x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-button.x-button-base-blue.x-button-pressed .x-badge,.x-button.x-button-base-blue.x-button-active .x-button-label,.x-button.x-button-base-blue.x-button-active .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge{text-shadow:#2e519b 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base-blue{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first){border-left:1px solid #2e519b}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base-blue.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base-blue.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-back{padding:.3em 8px}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-back .x-button-icon,.x-toolbar .x-button.x-button-back .x-button-icon{width:24px;height:24px}.x-button.x-button-back.x-button-forward:before,.x-button.x-button-back.x-button-forward:after,.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-back .x-button-label,.x-button.x-button-back .x-badge,.x-toolbar .x-button.x-button-back .x-button-label,.x-toolbar .x-button.x-button-back .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-forward:before{background:#989898}.x-button.x-button-back,.x-button.x-button-back.x-button-back:after,.x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back,.x-toolbar .x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-back.x-button-pressing,.x-button.x-button-back.x-button-pressing:after,.x-button.x-button-back.x-button-pressed,.x-button.x-button-back.x-button-pressed:after,.x-button.x-button-back.x-button-active,.x-button.x-button-back.x-button-active:after,.x-toolbar .x-button.x-button-back.x-button-pressing,.x-toolbar .x-button.x-button-back.x-button-pressing:after,.x-toolbar .x-button.x-button-back.x-button-pressed,.x-toolbar .x-button.x-button-back.x-button-pressed:after,.x-toolbar .x-button.x-button-back.x-button-active,.x-toolbar .x-button.x-button-back.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-back.x-button-pressing .x-button-label,.x-button.x-button-back.x-button-pressing .x-badge,.x-button.x-button-back.x-button-pressed .x-button-label,.x-button.x-button-back.x-button-pressed .x-badge,.x-button.x-button-back.x-button-active .x-button-label,.x-button.x-button-back.x-button-active .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-back.x-button-active .x-button-label,.x-toolbar .x-button.x-button-back.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-back{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-back:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-back:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-back.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-back.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.unsuported-view{position:absolute;left:0;top:0;right:0;bottom:0;background:url(../img/ios-only.png) no-repeat center #efefef;background-attachment:fixed;z-index:90000}.x-button.text-offset-12{padding-left:12px;padding-right:12px}.x-button.text-offset-30{padding-left:30px;padding-right:30px} diff --git a/apps/presentationeditor/mobile/resources/css/application-retina.css b/apps/presentationeditor/mobile/resources/css/application-retina.css index 5c463b8a3..a147e6268 100644 --- a/apps/presentationeditor/mobile/resources/css/application-retina.css +++ b/apps/presentationeditor/mobile/resources/css/application-retina.css @@ -1,10258 +1 @@ -/* line 3, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, -h4, h5, h6, pre, code, form, fieldset, legend, -input, textarea, p, blockquote, th, td { - margin: 0; - padding: 0; -} - -/* line 8, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/* line 13, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -fieldset, img { - border: 0; -} - -/* line 18, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -address, caption, cite, code, -dfn, em, strong, th, var { - font-style: normal; - font-weight: normal; -} - -/* line 23, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -li { - list-style: none; -} - -/* line 27, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -caption, th { - text-align: left; -} - -/* line 31, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -h1, h2, h3, h4, h5, h6 { - font-size: 100%; - font-weight: normal; -} - -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -q:before, -q:after { - content: ""; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -abbr, acronym { - border: 0; - font-variant: normal; -} - -/* line 46, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sup { - vertical-align: text-top; -} - -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sub { - vertical-align: text-bottom; -} - -/* line 54, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -input, textarea, select { - font-family: inherit; - font-size: inherit; - font-weight: inherit; -} - -/* line 60, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -*:focus { - outline: none; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 10, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -html, body { - font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif; - font-weight: normal; - position: relative; - -webkit-text-size-adjust: none; -} - -/* line 17, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - overflow: hidden; -} - -/* line 21, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -*, *:after, *:before { - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -webkit-touch-callout: none; - -webkit-user-drag: none; -} - -/* line 29, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-ios.x-tablet .x-landscape * { - -webkit-text-stroke: 1px transparent; -} - -/* line 33, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body { - font-size: 104%; -} - -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone { - font-size: 116%; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone.x-silk { - font-size: 130%; -} - -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-ios.x-phone { - font-size: 114%; -} - -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - font-size: 114%; -} - -/* line 53, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -input, textarea { - -webkit-user-select: text; -} - -/* line 57, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-visibility { - visibility: hidden !important; -} - -/* line 61, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-display, .x-field-hidden { - display: none !important; -} - -/* line 65, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-offsets { - position: absolute !important; - left: -10000em; - top: -10000em; - visibility: hidden; -} - -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-fullscreen { - position: absolute !important; -} - -/* line 79, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-desktop .x-body-stretcher { - margin-bottom: 0px; -} - -/* line 83, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: 100%; - z-index: 10; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - background: rgba(0, 0, 0, 0.3) center center no-repeat; -} -/* line 100, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-gray { - background-color: rgba(0, 0, 0, 0.5); -} -/* line 104, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-transparent { - background-color: transparent; -} -/* line 108, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-inner { - position: relative; - background: rgba(0, 0, 0, 0.25); - color: #fff; - text-align: center; - padding: .4em; - font-size: .95em; - font-weight: bold; - -webkit-border-radius: 0.5em; - border-radius: 0.5em; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-loading-spinner-outer { - display: -webkit-box; - display: box; - -webkit-box-orient: vertical; - box-orient: vertical; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - width: 100%; - min-width: 8.5em; - height: 8.5em; -} -/* line 130, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-inner { - padding-bottom: 0 !important; -} -/* line 133, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-loading-spinner-outer { - display: none; -} -/* line 136, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-message { - position: relative; - bottom: .25em; -} -/* line 142, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-message { - position: absolute; - bottom: 1.7em; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-flex: 0 !important; - max-width: 13em; - min-width: 8.5em; -} -/* line 152, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-mask-inner { - padding-bottom: 2em; -} -/* line 156, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-loading-spinner-outer { - height: 7.5em; -} - -/* line 162, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-draggable { - z-index: 1; -} - -/* line 166, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-dragging { - opacity: 0.7; -} - -/* line 170, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-panel-list { - background-color: white; -} - -/* line 175, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html { - -webkit-user-select: auto; - -webkit-touch-callout: inherit; - line-height: 1.5; - color: #333; - font-size: .8em; - padding: 1.2em; -} -/* line 33, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html body { - line-height: 1.5; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - color: #333333; - font-size: 75%; -} -/* line 51, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 { - font-weight: normal; - color: #222222; -} -/* line 52, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img { - margin: 0; -} -/* line 53, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 { - font-size: 3em; - line-height: 1; - margin-bottom: 0.50em; -} -/* line 54, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h2 { - font-size: 2em; - margin-bottom: 0.75em; -} -/* line 55, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h3 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; -} -/* line 56, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h4 { - font-size: 1.2em; - line-height: 1.25; - margin-bottom: 1.25em; -} -/* line 57, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h5 { - font-size: 1em; - font-weight: bold; - margin-bottom: 1.50em; -} -/* line 58, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h6 { - font-size: 1em; - font-weight: bold; -} -/* line 59, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p { - margin: 0 0 1.5em; -} -/* line 60, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .left { - display: inline; - float: left; - margin: 1.5em 1.5em 1.5em 0; - padding: 0; -} -/* line 61, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .right { - display: inline; - float: right; - margin: 1.5em 0 1.5em 1.5em; - padding: 0; -} -/* line 62, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html a { - text-decoration: underline; - color: #0066cc; -} -/* line 18, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:visited { - color: #004c99; -} -/* line 21, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:focus { - color: #0099ff; -} -/* line 24, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:hover { - color: #0099ff; -} -/* line 27, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:active { - color: #bf00ff; -} -/* line 63, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html blockquote { - margin: 1.5em; - color: #666666; - font-style: italic; -} -/* line 64, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html strong, .x-html dfn { - font-weight: bold; -} -/* line 65, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html em, .x-html dfn { - font-style: italic; -} -/* line 66, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html sup, .x-html sub { - line-height: 0; -} -/* line 67, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html abbr, .x-html acronym { - border-bottom: 1px dotted #666666; -} -/* line 68, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html address { - margin: 0 0 1.5em; - font-style: italic; -} -/* line 69, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html del { - color: #666666; -} -/* line 70, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre { - margin: 1.5em 0; - white-space: pre; -} -/* line 71, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre, .x-html code, .x-html tt { - font: 1em "andale mono", "lucida console", monospace; - line-height: 1.5; -} -/* line 72, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html li ul, .x-html li ol { - margin: 0; -} -/* line 73, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul, .x-html ol { - margin: 0 1.5em 1.5em 0; - padding-left: 1.5em; -} -/* line 74, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul { - list-style-type: disc; -} -/* line 75, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ol { - list-style-type: decimal; -} -/* line 76, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl { - margin: 0 0 1.5em 0; -} -/* line 77, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl dt { - font-weight: bold; -} -/* line 78, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dd { - margin-left: 1.5em; -} -/* line 79, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table { - margin-bottom: 1.4em; - width: 100%; -} -/* line 80, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th { - font-weight: bold; -} -/* line 81, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html thead th { - background: #c3d9ff; -} -/* line 82, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th, .x-html td, .x-html caption { - padding: 4px 10px 4px 5px; -} -/* line 85, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table.striped tr:nth-child(even) td, -.x-html table tr.even td { - background: #e5ecf9; -} -/* line 86, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html tfoot { - font-style: italic; -} -/* line 87, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html caption { - background: #eeeeee; -} -/* line 88, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .quiet { - color: #666666; -} -/* line 89, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .loud { - color: #111111; -} -/* line 185, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ul li { - list-style-type: circle; -} -/* line 188, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ol li { - list-style-type: decimal; -} - -/* line 194, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-video { - background-color: #000; -} - -/* line 198, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-sortable .x-dragging { - opacity: 1; - z-index: 5; -} - -/* line 203, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-layout-card-item { - background: #eeeeee; -} - -/* line 1, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map { - background-color: #edeae2; -} -/* line 3, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map * { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -/* line 9, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-mask-map { - background: transparent !important; -} - -/* line 13, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map-container { - position: absolute !important; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Toolbar - */ -/** - * @var {color} $toolbar-base-color - * The primary color variable from which toolbars derive their light and dark UIs. - */ -/** - * @var {measurement} $toolbar-spacing - * Space between items in a toolbar (like buttons and fields) - */ -/** - * @var {string} $toolbar-gradient - * Background gradient style for toolbars. - */ -/** - * @var {boolean} $include-toolbar-uis - * Optionally disable separate toolbar UIs (light and dark). - */ -/** - * Includes default toolbar styles. - */ -/** - * Creates a theme UI for toolbars. - * - * // SCSS - * @include sencha-toolbar-ui('sub', #58710D, 'glossy'); - * - * // JS - * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'}) - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Button - */ -/** - * @var {measurement} $button-height Default height for buttons. - */ -/** - * @var {measurement} $button-radius Default border-radius for buttons. - */ -/** - * @var {measurement} $button-stroke-weight Default border width for buttons. - */ -/** - * @var {string} $button-gradient Default gradient for buttons. - */ -/** - * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons. - */ -/** - * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline. - */ -/** - * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows. - */ -/** - * Includes default button styles. - */ -/** - * Creates a theme UI for buttons. - * Also automatically generates UIs for {ui-label}-round and {ui-label}-small. - * - * // SCSS - * @include sencha-button-ui('secondary', #99A4AE, 'glossy'); - * - * // JS - * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'}); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.tab.Bar - */ -/** - * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark). - */ -/** - * @var {boolean} $include-top-tabs - * Optionally exclude top tab styles by setting to false. - */ -/** - * @var {boolean} $include-bottom-tabs - * Optionally exclude bottom tab styles by setting to false. - */ -/** - * @var {color} $tabs-light - * Base color for "light" UI tabs. - */ -/** - * @var {color} $tabs-light-active - * Active color for "light" UI tabs. - */ -/** - * @var {color} $tabs-dark - * Base color for "dark" UI tabs. - */ -/** - * @var {color} $tabs-dark-active - * Active color for "dark" UI tabs. - */ -/** - * @var {string} $tabs-bar-gradient - * Background gradient style for tab bars. - */ -/** - * @class Ext.tab.Tab - */ -/** - * @var {string} $tabs-bottom-radius - * Border-radius for bottom tabs. - */ -/** - * @var {string} $tabs-bottom-icon-size - * Icon size for bottom tabs - */ -/** - * @var {string} $tabs-bottom-active-gradient - * Background gradient style for active bottom tabs. - */ -/** - * @var {boolean} $include-tab-highlights - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * Includes default tab styles. - * - * @member Ext.tab.Bar - */ -/** - * Creates a theme UI for tabbar/tab components. - * - * // SCSS - * @include sencha-button-ui('pink', #333, 'matte', #AE537A); - * - * // JS - * var tabs = new Ext.tab.Panel({ - * tabBar: { - * ui: 'pink', - * dock: 'bottom', - * layout: { pack: 'center' } - * }, - * ... - * }); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $bar-color Base color for the tab bar. - * @param {string} $bar-gradient Background gradient style for the tab bar. - * @param {color} $tab-active-color Background-color for active tab icons. - * - * @member Ext.tab.Bar - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.carousel.Indicator - */ -/** - * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots. - */ -/** - * @var {measurement} $carousel-indicator-spacing - * Amount of space between carousel indicator dots. - */ -/** - * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in. - */ -/** - * Creates a theme UI for carousel indicator components. - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - * @param {color} $active-color Active color for the UI. - * @param {string} $active-gradient Active gradient for the UI. - */ -/** - * @class Ext.carousel.Carousel - */ -/** - * Includes basic carousel formatting. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.IndexBar - */ -/** - * @var {measurement} $index-bar-width - * Width of the index bar. - */ -/** - * @var {color} $index-bar-bg-color - * Background-color of the index bar. - */ -/** - * @var {color} $index-bar-color - * Text color of the index bar. - */ -/** - * Includes default index bar styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.List - */ -/** - * @var {color} $list-color - * Text color for list rows. - */ -/** - * @var {color} $list-bg-color - * Background-color for list rows. - */ -/** - * @var {color} $include-list-highlights - * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $list-zebrastripe - * Optionally zebra-stripe the list (alternating background colors). - */ -/** - * @var {color} $list-pressed-color - * Background-color for pressed list rows. - */ -/** - * @var {color} $list-active-color - * Background-color for selected list rows. - */ -/** - * @var {string} $list-active-gradient - * Gradient style for selected list rows. - */ -/** - * @var {color} $list-header-bg-color - * Background-color for list header rows (in grouped lists). - */ -/** - * @var {string} $list-header-gradient - * Gradient style for list header rows (in grouped lists). - */ -/** - * @var {measurement} $list-disclosure-size - * Default size (width/height) for disclosure icons. - */ -/** - * @var {measurement} $list-disclosure-round-size - * Default size (width/height) for disclosure icons in a list with a `round` ui. - */ -/** - * @var {measurement} $list-round-padding - * Default padding for lists with a `round` ui. - */ -/** - * Includes default list styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * Includes default form slider styles. - * - * @member Ext.field.Slider - */ -/** - * @var {color} $form-bg-color - * Default background-color for forms. - * - * @member Ext.form.Panel - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $form-field-bg-color - * Default background-color for form fields. - */ -/** - * @var {color} $form-light - * Light color for form fields, mostly used on field borders. - */ -/** - * @var {color} $form-dark - * Dark color for form fields, mostly used on labels/text. - */ -/** - * @var {measurement} $form-label-width - * Default width for form labels. - */ -/** - * @var {color} $form-label-background-color - * The default background color for labels - */ -/** - * @var {measurement} $form-field-height - * Default height for form fields. - */ -/** - * @var {measurement} $form-spacing - * Default spacing for form fields, used for padding, etc. - */ -/** - * @var {measurement} $form-textarea-height - * Default height for form textareas. - * - * @member Ext.field.TextArea - */ -/** - * @var {measurement} $form-thumb-size - * Default size of "thumbs" for form sliders/toggles. - * - * @member Ext.field.Slider - */ -/** - * @var {measurement} $form-toggle-size - * Thumb size minus padding for inset thumbs like in a Toggle element. - * - * @member Ext.field.Toggle - */ -/** - * @var {measurement} $form-fieldset-radius - * Default border-radius for form fieldsets. - * - * @member Ext.form.FieldSet - */ -/** - * @var {measurement} $form-slider-size - * Height of the slider "track." - * - * @member Ext.field.Slider - */ -/** - * Includes default form styles. - * - * @member Ext.form.Panel - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Sheet - */ -/** - * @var {color} $sheet-bg-color - * Background-color for action sheets and message boxes. - */ -/** - * @var {color} $sheet-bg-gradient - * Background gradient style for action sheets and message boxes. - */ -/** - * @var {measurement} $sheet-button-spacing - * Vertical spacing between sheet buttons. - */ -/** - * @var {measurement} $sheet-padding - * Overall padding in a sheet. - */ -/** - * Includes default sheet styles (also required for message box). - */ -/** - * Includes default message box styles. - * - * @member Ext.MessageBox - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $toolbar-input-bg - * Background-color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-color - * Text color for toolbar form fields. - */ -/** - * @var {measurement} $toolbar-input-height - * Text color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-border-color - * Border color for toolbar form fields. - */ -/** - * Includes default toolbar form field styles. - * - * @member Ext.tab.Bar - */ -/** - * @class Ext.LoadMask - */ -/** - * @var {color} $loading-spinner-color - * Background-color for the bars in the loading spinner. - */ -/** - * Includes default loading spinner styles (for dataviews). - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 4, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image { - text-align: center; -} -/* line 7, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image img { - width: auto; - height: 100%; -} -/* line 13, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-background { - background-repeat: no-repeat; - background-position: center; - background-size: auto 100%; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 3, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video { - height: 100%; - width: 100%; -} - -/* line 8, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video > * { - height: 100%; - width: 100%; - position: absolute; -} - -/* line 14, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video-ghost { - -webkit-background-size: 100% auto; - background: black url() center center no-repeat; -} - -/* line 19, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -audio { - width: 100%; -} - -/* line 129, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.border-radius-10 { - -webkit-border-radius: 10px !important; - border-radius: 10px !important; -} - -/** - * // SCSS - * @include application-toolbar-ui('edit', $base-color); - */ -/** - * // SCSS - * @include application-toolbar-iconmask('code3', '../../img/toolbar/code3.png'); - */ -/* line 8, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel, -.x-msgbox, -.x-panel-body { - position: relative; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating, -.x-msgbox, -.x-form.x-floating { - padding: 6px; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - background-image: none; - background-color: #656565; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating.x-floating-light, -.x-msgbox.x-floating-light, -.x-form.x-floating.x-floating-light { - background-image: none; - background-color: #cbcbcb; -} -/* line 26, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating .x-panel-inner, -.x-panel.x-floating > .x-body, -.x-msgbox .x-panel-inner, -.x-msgbox > .x-body, -.x-form.x-floating .x-panel-inner, -.x-form.x-floating > .x-body { - z-index: 1; - background-color: #fff; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 35, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock, -.x-msgbox > .x-dock, -.x-form.x-floating > .x-dock { - z-index: 1; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock.x-sized, -.x-msgbox > .x-dock.x-sized, -.x-form.x-floating > .x-dock.x-sized { - margin: 6px; -} - -/* line 48, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor { - position: absolute; - overflow: hidden; -} -/* line 53, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-top { - margin-top: -0.68em; - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-bottom { - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-left { - margin-left: -0.6655em; - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} -/* line 82, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-right { - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} - -/* line 93, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-floating.x-panel-light:after { - background-color: #cbcbcb; -} - -/* line 52, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - min-height: 1.8em; - padding: 0.3em 0.6em; - position: relative; - overflow: hidden; - -webkit-user-select: none; - z-index: 1; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-toolbar .x-button { - border: 1px solid #999999; - border-top-color: #a6a6a6; - color: black; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before { - background: #999999; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after { - background-image: none; - background-color: #cccccc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf)); - background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); - background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after { - background-image: none; - background-color: #c4c4c4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6)); - background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); - background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); -} -/* line 66, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon { - width: 2.1em; - height: 2.1em; - background-repeat: no-repeat; - background-position: center; - display: block; -} -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon.x-icon-mask { - width: 1.1em; - height: 1.1em; - -webkit-mask-size: 1.1em; -} -/* line 80, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon { - opacity: .5; -} - -/* line 86, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-round { - -webkit-border-radius: 0.9em; - border-radius: 0.9em; -} - -/* line 92, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left, .x-icon-align-right { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} - -/* line 95, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top, .x-iconalign-bottom { - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 98, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom, .x-iconalign-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} - -/* line 101, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-center { - -webkit-box-pack: center; - box-pack: center; -} - -/* line 104, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge { - margin-left: 0.3em; -} - -/* line 107, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge { - margin-right: 0.3em; -} - -/* line 110, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge { - margin-top: 0.3em; -} - -/* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge { - margin-bottom: 0.3em; -} - -/* line 118, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-label, .x-hasbadge .x-badge { - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-align: center; - box-align: center; - white-space: nowrap; - text-overflow: ellipsis; - text-align: center; - font-weight: bold; - line-height: 1.2em; - display: block; - overflow: hidden; -} - -/* line 131, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button { - margin: 0 0.2em; - padding: 0.3em 0.6em; -} -/* line 135, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge { - font-size: .7em; -} -/* line 139, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge { - line-height: 1.6em; -} - -/* line 144, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small, .x-toolbar .x-button-small { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - padding: 0.2em 0.4em; - min-height: 0; -} -/* line 149, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge { - font-size: .6em; -} -/* line 153, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon { - width: .75em; - height: .75em; -} -/* line 157, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask { - -webkit-mask-size: .75em; -} - -/* line 175, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, .x-button-back { - position: relative; - overflow: visible; - height: 1.7em; - z-index: 1; -} -/* line 180, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after { - content: ""; - position: absolute; - width: 0.80717em; - height: 1.8em; - top: -0.1em; - left: auto; - z-index: 2; - -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat; - -webkit-mask-size: 0.80717em 1.8em; - overflow: hidden; -} - -/* line 190, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back, -.x-toolbar .x-button-back { - margin-left: 0.87217em; - padding-left: .4em; -} -/* line 193, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:before, -.x-toolbar .x-button-back:before { - left: -0.72717em; -} -/* line 196, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:after, -.x-toolbar .x-button-back:after { - left: -0.68217em; -} - -/* line 202, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, -.x-toolbar .x-button-forward { - margin-right: 0.88217em; - padding-right: .4em; -} -/* line 205, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, -.x-toolbar .x-button-forward:before, -.x-toolbar .x-button-forward:after { - -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat; -} -/* line 208, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, -.x-toolbar .x-button-forward:before { - right: -0.72717em; -} -/* line 211, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:after, -.x-toolbar .x-button-forward:after { - right: -0.68217em; -} - -/* line 219, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain, -.x-toolbar .x-button.x-button-plain { - background: none; - border: 0 none; - -webkit-border-radius: none; - border-radius: none; - min-height: 0; - text-shadow: none; - line-height: auto; - height: 1.9em; - padding: 0em 0.5em; -} -/* line 229, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain > *, -.x-toolbar .x-button.x-button-plain > * { - overflow: visible; -} -/* line 233, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain .x-button-icon, -.x-toolbar .x-button.x-button-plain .x-button-icon { - -webkit-mask-size: 1em; - width: 1em; - height: 1em; -} -/* line 239, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed, -.x-toolbar .x-button.x-button-plain.x-button-pressing, -.x-toolbar .x-button.x-button-plain.x-button-pressed { - background: none; - background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(255, 255, 255, 0.7)), color-stop(100%, rgba(255, 255, 255, 0))); - background-image: -webkit-radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); - background-image: radial-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 24px); -} -/* line 244, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); - background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); -} - -/* line 251, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button { - margin: 0; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 257, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-first { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 260, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-last { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 265, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button:not(.x-first) { - border-left: 0; -} - -/* line 276, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge { - overflow: visible; -} -/* line 278, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge .x-badge { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; - padding: 0.1em 0.3em; - z-index: 2; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - overflow: hidden; - color: #ffcccc; - border: 1px solid #990000; - position: absolute; - width: auto; - min-width: 2em; - line-height: 1.2em; - font-size: .6em; - right: 0px; - top: -.2em; - max-width: 95%; - background-image: none; - background-color: #cc0000; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000)); - background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - display: inline-block; -} - -/* line 36, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar { - padding: 0 0.2em; - position: relative; -} -/* line 46, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-top { - border-bottom: 0.1em solid; -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-bottom { - border-top: 0.1em solid; -} -/* line 54, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-left { - width: 7em; - height: auto; - padding: 0.2em; - border-right: 0.1em solid; -} -/* line 61, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-right { - width: 7em; - height: auto; - padding: 0.2em; - border-left: 0.1em solid; -} - -/* line 69, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title { - line-height: 2.1em; - font-size: 1.2em; - text-align: center; - font-weight: bold; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: 0 0.3em; - padding: 0 0.3em; - max-width: 100%; -} -/* line 81, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 103, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-navigation-bar .x-container { - overflow: visible; -} - -/* line 43, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner .x-input-el, -.x-field-select .x-input-el { - -webkit-text-fill-color: #000; - -webkit-opacity: 1; -} - -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner.x-item-disabled .x-input-el, -.x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: currentcolor; -} - -/* line 54, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-el { - -webkit-text-fill-color: #fff; -} - -/* line 58, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: rgba(255, 255, 255, 0.6); -} - -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field-container { - padding: 0 0.3em; -} -/* line 67, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field { - width: 13em; - margin: .5em; - min-height: 0; - border-bottom: 0; - background: transparent; -} -/* line 74, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field .x-clear-icon { - background-size: 50% 50%; - right: -0.8em; - margin-top: -1.06em; -} -/* line 81, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-input { - padding-right: 1.6em !important; -} -/* line 89, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-textarea .x-component-outer, -.x-toolbar .x-field-text .x-component-outer, -.x-toolbar .x-field-number .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - background-color: white; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; -} -/* line 99, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-label { - background: transparent; - border: 0; - padding: 0; - line-height: 1.4em; -} -/* line 106, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field { - height: 1.6em; - color: #6e6e6e; - background: transparent; - min-height: 0; - -webkit-appearance: none; - padding: 0em 0.3em; - margin: 0; -} -/* line 115, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field:focus { - color: black; -} -/* line 122, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.8em; - border-radius: 0.8em; -} -/* line 128, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-search .x-field-input { - background-position: 0.5em 50%; -} -/* line 133, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - -webkit-box-shadow: none; -} -/* line 136, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-form-field { - height: 1.4em; -} -/* line 141, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - background: transparent; -} -/* line 145, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:after { - right: .4em; -} -/* line 151, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after { - opacity: .6; -} -/* line 157, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:before { - width: 3em; - border-left: none; - -webkit-border-top-right-radius: 0.8em; - border-top-right-radius: 0.8em; - -webkit-border-bottom-right-radius: 0.8em; - border-bottom-right-radius: 0.8em; - -webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC'); - -webkit-mask-position: right top; - -webkit-mask-repeat: repeat-y; - -webkit-mask-size: 3em 0.05em; -} -/* line 172, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-text { - color: #fff; -} - -/* line 178, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-android .x-field-search .x-field-input { - padding-left: 0.2em !important; - padding-right: 2.2em !important; -} - -/* line 29, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-wrapper { - -webkit-box-pack: end !important; - box-pack: end !important; - pointer-events: none; -} - -/* line 35, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-vertical { - width: 1.1em; - -webkit-box-orient: vertical; - box-orient: vertical; - margin-right: 8px; -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-horizontal { - height: 1.1em; - -webkit-box-orient: horizontal; - box-orient: horizontal; - margin-bottom: 8px; -} - -/* line 47, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar { - pointer-events: auto; - z-index: 2; - padding: 0.3em 0; - min-height: 0 !important; - height: auto !important; - -webkit-box-flex: 0 !important; -} -/* line 55, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar > div { - color: #a5a5a5; - font-size: 0.6em; - text-align: center; - line-height: 1.1em; - font-weight: bold; - display: block; -} - -/* line 66, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-phone.x-landscape .x-indexbar > div { - font-size: 0.38em; - line-height: 1em; -} - -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-pressed { - -webkit-border-radius: 0.55em; - border-radius: 0.55em; - background-color: rgba(163, 143, 143, 0.8); -} - -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -html, body { - width: 100%; - height: 100%; -} - -@-webkit-keyframes x-paint-monitor-helper { - /* line 47, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - from { - zoom: 1; - } - - /* line 48, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - to { - zoom: 1; - } -} - -/* line 51, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitored { - position: relative; -} - -/* line 55, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor { - width: 0 !important; - height: 0 !important; - visibility: hidden; -} -/* line 59, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.cssanimation { - -webkit-animation-duration: 0.0001ms; - -webkit-animation-name: x-paint-monitor-helper; -} -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange { - overflow: hidden; -} -/* line 65, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange::after { - content: ""; - display: block; - width: 1px !important; - height: 1px !important; -} - -/* line 74, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitored { - position: relative; -} - -/* line 78, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - visibility: hidden; - z-index: -9999; - overflow: hidden; -} -/* line 87, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors > * { - width: 100%; - height: 100%; - overflow: hidden; -} -/* line 93, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.shrink::after { - content: ""; - display: block; - width: 200%; - height: 200%; - min-width: 1px; - min-height: 1px; -} -/* line 101, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.expand::after { - content: ""; - display: block; - width: 100000px; - height: 100000px; -} -/* line 110, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.shrink > * { - width: 100%; - height: 100%; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.expand > * { - width: 200%; - height: 200%; -} - -/* line 130, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-body { - position: relative; - z-index: 0; -} - -/* line 135, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-inner, .x-body { - width: 100%; - height: 100%; -} - -/* line 140, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock, .x-dock-body { - height: 100%; -} - -/* line 144, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-sized { - position: relative; -} - -/* line 148, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container { - display: -webkit-box; - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 151, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 158, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-innerhtml { - width: 100%; -} - -/* line 162, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card { - position: relative; - overflow: hidden; -} - -/* line 167, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item-container { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 171, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 175, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item, .x-layout-newcard-item > * { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 179, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item:not(.active) { - display: none; -} - -/* line 183, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit.x-stretched > .x-layout-fit-item { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 188, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit { - position: relative; -} - -/* line 193, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-sized { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 196, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-unsized { - width: 100%; - height: 100%; -} - -/* line 202, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center, .x-centered { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: -webkit-box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; -} -/* line 207, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > *, .x-centered > * { - position: relative; -} -/* line 210, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > .x-floating, .x-centered > .x-floating { - position: relative !important; -} - -/* line 215, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-floating { - position: absolute; -} - -/* line 219, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock { - display: -webkit-box; -} -/* line 222, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 225, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock .x-dock-body { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 229, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized > .x-dock-body { - position: relative; -} -/* line 233, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 235, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * { - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 240, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 243, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} -/* line 245, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item { - display: -webkit-box; -} -/* line 248, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 252, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 254, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 301, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box { - display: -webkit-box; -} -/* line 303, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal { - -webkit-box-orient: horizontal !important; -} -/* line 305, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed { - width: 0 !important; -} -/* line 309, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 311, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical > .x-layout-box-item.x-flexed { - height: 0 !important; -} -/* line 315, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box > .x-layout-box-item { - display: -webkit-box !important; -} -/* line 318, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-start { - -webkit-box-align: start; - box-align: start; -} -/* line 321, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-center { - -webkit-box-align: center; - box-align: center; -} -/* line 324, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-end { - -webkit-box-align: end; - box-align: end; -} -/* line 327, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-stretch { - -webkit-box-align: stretch; - box-align: stretch; -} -/* line 330, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-start { - -webkit-box-pack: start; - box-pack: start; -} -/* line 333, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-center { - -webkit-box-pack: center; - box-pack: center; -} -/* line 336, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-end { - -webkit-box-pack: end; - box-pack: end; -} -/* line 339, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-justify { - -webkit-box-pack: justify; - box-pack: justify; -} - -/* line 345, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 350, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float { - overflow: hidden; -} -/* line 352, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float > .x-layout-float-item { - float: left; -} -/* line 356, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float.x-direction-right > .x-layout-float-item { - float: right; -} - -/* line 362, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner { - display: table !important; - width: 100% !important; - height: 100% !important; -} -/* line 367, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner.x-fixed-layout { - table-layout: fixed !important; -} - -/* line 372, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-row { - display: table-row !important; -} - -/* line 376, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-cell { - display: table-cell !important; - vertical-align: middle; -} - -/* line 381, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable { - position: absolute; - top: 100% !important; - left: 100% !important; - overflow: visible !important; - z-index: 1; -} -/* line 387, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable::before { - content: ""; - display: block; - position: absolute; - top: 100%; - left: 100%; - width: 100%; - height: 100%; - visibility: hidden; -} - -/* line 399, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container { - overflow: hidden; - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 402, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container::before { - content: ""; - display: block; - width: 300%; - height: 300%; - visibility: hidden; -} - -/* line 411, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector { - visibility: hidden; - position: absolute; - left: 0; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - overflow: hidden; -} - -/* line 422, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector > * { - visibility: hidden; -} - -/* line 426, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-shrink > * { - width: 200%; - height: 200%; -} - -/* line 431, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-expand > * { - width: 100000px; - height: 100000px; -} - -/* line 436, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-view { - position: relative; - display: block; - overflow: hidden; -} - -/* line 442, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-container { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 448, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-scroller { - position: absolute; - min-width: 100%; - min-height: 100%; - width: auto !important; - height: auto !important; -} - -/* line 456, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-ios .x-scroll-scroller { - -webkit-transform: translate3d(0, 0, 0); -} - -/* line 460, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-stretcher { - position: absolute; - visibility: hidden; -} - -/* line 465, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid-wrapper { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 471, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid { - display: table; - width: 100%; - height: 100%; -} -/* line 476, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * { - display: table-row; -} -/* line 480, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * > * { - display: table-cell; -} -/* line 484, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :first-child { - width: 100%; - height: 100%; -} -/* line 489, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :nth-child(2) { - padding: 3px 3px 0 0; -} -/* line 493, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :nth-child(2) > :first-child { - padding: 0 0 3px 3px; -} - -/* line 498, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar { - position: relative; - overflow: hidden; -} - -/* line 503, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-stretcher { - position: absolute; - visibility: hidden; - width: 100%; - height: 100%; -} - -/* line 510, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x { - width: 100%; -} -/* line 513, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x > .x-scroll-bar-stretcher { - width: 300%; -} -/* line 517, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x.active { - height: 6px; -} - -/* line 522, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y { - height: 100%; -} -/* line 525, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y > .x-scroll-bar-stretcher { - height: 300%; -} -/* line 529, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y.active { - width: 6px; -} - -/* line 534, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator { - background: #333; - position: absolute; - z-index: 3; - opacity: 0.5; -} - -/* line 541, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-android-4 .x-scroll-indicator { - opacity: 1; -} - -/* line 545, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.default { - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 552, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-list-light .x-scroll-indicator, -.x-dataview-light .x-scroll-indicator { - background: #fff; - opacity: 1; -} - -/* line 558, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-x { - height: 100%; -} - -/* line 562, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-y { - width: 100%; -} - -/* line 566, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform { - background: none; -} -/* line 569, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > * { - position: absolute; - background-color: #333; -} -/* line 574, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > :nth-child(2) { - -webkit-transform-origin: 0% 0%; - background: none; - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA); -} -/* line 581, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > * { - background-color: #eee; -} -/* line 585, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) { - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA); -} -/* line 591, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > * { - width: 100%; -} -/* line 595, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child { - height: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; -} -/* line 600, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) { - height: 1px; -} -/* line 604, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child { - height: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} -/* line 611, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > * { - height: 100%; -} -/* line 615, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child { - width: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; -} -/* line 620, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) { - width: 1px; -} -/* line 623, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child { - width: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 134, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container { - background-color: #eeeeee; -} -/* line 137, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container > .x-inner { - padding: 1em; -} - -/* line 144, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label { - text-shadow: white 0 1px 1px; - color: #333333; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - padding: 0.6em; - display: none !important; - background-color: #f7f7f7; -} -/* line 151, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label span { - font-size: .8em; - font-weight: bold; -} -/* line 156, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label-nowrap .x-form-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 162, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field { - display: -webkit-box; - display: box; - min-height: 2.5em; - background: #fff; -} -/* line 167, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input { - position: relative; - min-width: 3.7em; -} -/* line 173, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input, -.x-field .x-input-el { - width: 100%; -} -/* line 178, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field.x-field-labeled .x-form-label { - display: block !important; -} -/* line 183, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field:last-child { - border-bottom: 0; -} - -/* line 190, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left .x-component-outer, -.x-label-align-right .x-component-outer { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 197, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 203, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} - -/* line 213, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 217, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:first-child .x-form-label { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 222, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child { - border-bottom: 0; -} -/* line 225, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child .x-form-label { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 235, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left, -.x-label-align-right { - -webkit-box-orient: horizontal !important; - box-orient: horizontal !important; -} - -/* line 240, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top, -.x-label-align-bottom { - -webkit-box-orient: vertical !important; - box-orient: vertical !important; -} - -/* line 249, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 255, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top .x-component-outer { - position: relative; -} - -/* line 260, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 264, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 270, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-input-el { - padding: .4em; - min-height: 2.5em; - display: block; - border-width: 0; - background: transparent; - -webkit-appearance: none; -} - -/* line 279, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-mask { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 286, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-required label:after, -.x-field-required .x-form-label:after { - content: "*"; - display: inline; -} - -/* line 294, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled label:after, -.x-item-disabled .x-form-label:after { - color: #666666 !important; -} - -/* line 301, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-textarea textarea { - min-height: 6em; - padding-top: .5em; -} - -/* line 313, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII='); - margin-top: -.7em; -} - -/* line 322, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - margin-top: -0.7em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,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'); -} - -/* line 330, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el { - position: relative; -} -/* line 332, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:after { - background-color: #dddddd; -} -/* line 335, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:checked:after { - background-color: #688ad2; -} - -/* line 340, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el { - position: relative; -} -/* line 342, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:before { - background-color: #d0d0d0; -} -/* line 345, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:after { - background-color: #dddddd; - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 349, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:checked:before { - background-color: #688ad2; -} - -/* line 356, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:checked:before { - background: #aebbd8; -} -/* line 360, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:after { - background: #eee; -} -/* line 367, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-checkbox .x-input-el:checked:after { - background: #aebbd8; -} - -/* line 376, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer { - display: -webkit-box; - display: box; -} -/* line 379, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer > * { - width: auto; -} -/* line 384, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input { - -webkit-box-flex: 1; -} -/* line 387, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input .x-input-el { - -webkit-text-fill-color: #000; - width: 100%; - text-align: center; -} -/* line 395, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input input::-webkit-outer-spin-button, -.x-spinner .x-field-input input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} -/* line 402, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-input-el { - -webkit-text-fill-color: #B3B3B3; -} -/* line 406, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-spinner-button { - color: #aaaaaa !important; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button { - border: 1px solid #c4c4c4; - border-top-color: #d0d0d0; - color: #1e1e1e; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before { - background: #c4c4c4; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #f7f7f7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #efefef; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0)); - background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); - background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); -} -/* line 412, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button { - margin-top: .25em; - margin-bottom: .25em; - width: 2em; - padding: 0.23em 0 0.27em; - font-weight: bold; - text-align: center; - border: 1px solid #dddddd !important; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button { - border: 1px solid #b7b7b7; - border-top-color: #c4c4c4; - color: #111111; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before { - background: #b7b7b7; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #eaeaea; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd)); - background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); - background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3)); - background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); - background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); -} -/* line 424, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-down { - margin-left: .25em; -} -/* line 427, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-up { - margin-right: .25em; -} -/* line 432, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-input-el { - text-align: left; -} -/* line 436, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: .5em; -} - -/* line 443, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-spinner-button { - padding: 0.4em 0 0.11em !important; -} - -/* line 450, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-item-label { - height: 2.6em; -} -/* line 454, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -/* line 460, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-label { - margin-right: 2.6em; -} -/* line 465, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:before { - background-color: rgba(0, 0, 0, 0.3); - margin-top: -.8em; -} -/* line 470, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:after { - background-color: #dddddd; -} - -/* line 11, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer { - padding: 0.6em; -} - -/* line 17, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider, -.x-toggle { - position: relative; - height: 2.2em; - min-height: 0; - min-width: 0; -} -/* line 23, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider > *, -.x-toggle > * { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 30, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider.x-item-disabled { - opacity: .6; -} - -/* line 57, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb { - position: absolute; - height: 2.2em; - width: 2.2em; -} -/* line 63, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb:after { - content: ""; - position: absolute; - width: 1.85em; - height: 1.85em; - top: 0.175em; - left: 0.175em; - border: 1px solid #919191; - -webkit-border-radius: 0.925em; - border-radius: 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0)); - background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging { - opacity: 1; -} -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging:after { - background-image: none; - background-color: #d0d0d0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4)); - background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); - background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); -} - -/* line 81, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider:after { - content: ""; - position: absolute; - width: auto; - height: 0.8em; - top: 0.7375em; - left: 0; - right: 0; - margin: 0 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - border: 0.1em solid rgba(0, 0, 0, 0.1); - border-bottom: 0; - -webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} - -/* line 93, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle { - width: 4.4em; - -webkit-border-radius: 1.1em; - border-radius: 1.1em; - overflow: hidden; - border: 1px solid #b7b7b7; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - -webkit-box-flex: 0; -} -/* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb.x-dragging { - opacity: 1; -} -/* line 117, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb:before { - top: 0.175em; -} - -/* line 146, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle-on { - background-image: none; - background-color: #92cf00; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200)); - background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); - background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); -} - -/* line 482, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/* line 488, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-number input::-webkit-outer-spin-button, -.x-field-number input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -/* line 495, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input { - position: relative; -} -/* line 498, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input:before { - content: ""; - position: absolute; - width: 0.86em; - height: 0.86em; - top: 50%; - left: 0.5em; - -webkit-mask-image: url('data:image/png;base64,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'); - -webkit-mask-size: .86em; - background-color: #ccc; - -webkit-mask-repeat: no-repeat; - margin-top: -0.43em; -} -/* line 506, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input .x-form-field { - margin-left: 1.0em; -} - -/* line 516, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-input .x-clear-icon { - display: none; - background: url('data:image/png;base64,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') no-repeat; - background-position: center center; - background-size: 55% 55%; - width: 2.2em; - height: 2.2em; - margin: .5em; - margin-top: -1.1em; - position: absolute; - top: 50%; - right: -.5em; -} - -/* line 532, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-clear-icon { - display: block; -} -/* line 536, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-field-input { - padding-right: 2.2em; -} - -/* line 541, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-input-el { - -webkit-text-fill-color: #000; -} - -/* line 545, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-empty .x-input-el { - -webkit-text-fill-color: #A9A9A9; -} - -/* line 556, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled .x-form-label span, -.x-item-disabled input, -.x-item-disabled .x-input-el, -.x-item-disabled .x-spinner-body, -.x-item-disabled select, -.x-item-disabled textarea, -.x-item-disabled .x-field-clear-container { - color: #b3b3b3; - -webkit-text-fill-color: #b3b3b3; - pointer-events: none; -} - -/* line 563, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset { - margin: 0 0 1.5em; -} -/* line 566, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-label { - border-top: 1px solid white; -} -/* line 570, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-fieldset-inner { - border: 1px solid #dddddd; - background: #fff; - padding: 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - overflow: hidden; -} -/* line 579, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field { - border-bottom: 1px solid #dddddd; - background: transparent; -} -/* line 583, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 589, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:last-child { - border-bottom: 0; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 599, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title { - text-shadow: white 0 1px 1px; - color: #333333; - margin: 1em 0.7em 0.3em; - color: #333333; - font-weight: bold; -} -/* line 605, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 610, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-instructions { - text-shadow: white 0 1px 1px; - color: #333333; - color: gray; - margin: 1em 0.7em 0.3em; - font-size: .8em; - text-align: center; -} - -/* line 619, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-selectmark-base, .x-field-select .x-component-outer:after { - content: ""; - position: absolute; - width: 1em; - height: 1em; - top: 50%; - left: auto; - right: 0.7em; - -webkit-mask-size: 1em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC'); - margin-top: -.5em; -} - -/* line 629, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select { - position: relative; - z-index: 1; -} -/* line 634, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:after { - background-color: #dddddd; -} -/* line 639, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after { - pointer-events: none; - position: absolute; - display: block; -} -/* line 645, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before { - content: ""; - position: absolute; - width: 4em; - height: auto; - top: 0; - left: auto; - right: 0; - bottom: 0; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white)); -} - -/* line 7, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox { - min-width: 15em; - max-width: 20em; - max-height: 90%; - margin: .5em; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - border: 0.15em solid #cbcbcb; -} -/* line 17, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-docking-vertical { - overflow: hidden; -} -/* line 22, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-icon { - margin: 0 0.8em 0 0.5em; - background: #fff; - -webkit-mask-size: 100%; -} -/* line 28, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-info { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-warning { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 36, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-question { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 40, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-error { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC'); -} -/* line 44, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-title { - font-size: .9em; - line-height: 1.4em; -} -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-body { - background: transparent !important; -} -/* line 53, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar { - background: transparent none; - -webkit-box-shadow: none; - box-shadow: none; -} -/* line 57, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-top { - border-bottom: 0; - height: 1.3em; -} -/* line 62, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom { - border-top: 0; -} -/* line 67, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field { - min-height: 2em; - background: #fff; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; -} -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-form-field { - min-height: 1.5em; - padding-right: 0 !important; - -webkit-appearance: none; -} -/* line 79, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field-input { - padding-right: 2.2em; -} - -/* line 84, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-text { - text-align: center; - padding: 6px 0; - line-height: 1.4em; -} - -/* line 90, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons { - padding: 0.4em 0; - height: auto; -} -/* line 94, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button { - min-width: 4.5em; -} -/* line 98, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button-normal span { - opacity: .7; -} - -/* line 109, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-text { - color: rgba(255, 255, 255, 0.9); - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-input { - background-image: none; - background-color: rgba(255, 255, 255, 0.9); - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(230, 230, 230, 0.9)), color-stop(10%, rgba(242, 242, 242, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0.9))); - background-image: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - background-image: linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - border: 0.1em solid rgba(203, 203, 203, 0.9); -} - -/* line 20, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - font-size: 250%; - height: 1em; - width: 1em; - position: relative; - -webkit-transform-origin: 0.5em 0.5em; - /* Shared Properties for all the bars */ -} -/* line 29, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after { - display: block; - position: absolute; - width: 0.1em; - height: 0.25em; - top: 0; - -webkit-transform-origin: 0.05em 0.5em; - -webkit-border-radius: 0.05em; - border-radius: 0.05em; - content: " "; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - background-color: rgba(170, 170, 170, 0.99); -} -/* line 42, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::after { - background-color: rgba(170, 170, 170, 0.9); -} -/* line 43, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::before { - background-color: rgba(170, 170, 170, 0.8); -} -/* line 44, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - background-color: rgba(170, 170, 170, 0.7); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::after { - background-color: rgba(170, 170, 170, 0.6); -} -/* line 46, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::before { - background-color: rgba(170, 170, 170, 0.5); -} -/* line 47, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - background-color: rgba(170, 170, 170, 0.4); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::after { - background-color: rgba(170, 170, 170, 0.35); -} -/* line 49, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::before { - background-color: rgba(170, 170, 170, 0.3); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - background-color: rgba(170, 170, 170, 0.25); -} -/* line 51, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::after { - background-color: rgba(170, 170, 170, 0.2); -} -/* line 52, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::before { - background-color: rgba(170, 170, 170, 0.15); -} - -/* line 56, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span { - left: 50%; - margin-left: -0.05em; -} - -/* Rotate each of the 4 Spans */ -/* line 65, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); -} - -/* line 66, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); -} - -/* line 67, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); -} - -/* line 68, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); -} - -/* These are the two lines that surround each of the 4 Span lines */ -/* line 72, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::before { - -webkit-transform: rotate(30deg); - -moz-transform: rotate(30deg); -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::after { - -webkit-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); -} - -/* Set Animation */ -/* line 77, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - -webkit-animation-name: x-loading-spinner-rotate; - -webkit-animation-duration: .5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} - -@-webkit-keyframes x-loading-spinner-rotate { - /* line 85, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 0% { - -webkit-transform: rotate(0deg); - } - - /* line 86, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.32% { - -webkit-transform: rotate(0deg); - } - - /* line 88, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.33% { - -webkit-transform: rotate(30deg); - } - - /* line 89, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.65% { - -webkit-transform: rotate(30deg); - } - - /* line 91, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.66% { - -webkit-transform: rotate(60deg); - } - - /* line 92, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 24.99% { - -webkit-transform: rotate(60deg); - } - - /* line 94, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 25% { - -webkit-transform: rotate(90deg); - } - - /* line 95, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.32% { - -webkit-transform: rotate(90deg); - } - - /* line 97, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.33% { - -webkit-transform: rotate(120deg); - } - - /* line 98, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.65% { - -webkit-transform: rotate(120deg); - } - - /* line 100, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.66% { - -webkit-transform: rotate(150deg); - } - - /* line 101, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 49.99% { - -webkit-transform: rotate(150deg); - } - - /* line 103, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 50% { - -webkit-transform: rotate(180deg); - } - - /* line 104, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.32% { - -webkit-transform: rotate(180deg); - } - - /* line 106, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.33% { - -webkit-transform: rotate(210deg); - } - - /* line 107, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.65% { - -webkit-transform: rotate(210deg); - } - - /* line 109, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.66% { - -webkit-transform: rotate(240deg); - } - - /* line 110, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 74.99% { - -webkit-transform: rotate(240deg); - } - - /* line 112, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 75% { - -webkit-transform: rotate(270deg); - } - - /* line 113, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.32% { - -webkit-transform: rotate(270deg); - } - - /* line 115, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.33% { - -webkit-transform: rotate(300deg); - } - - /* line 116, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.65% { - -webkit-transform: rotate(300deg); - } - - /* line 118, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.66% { - -webkit-transform: rotate(330deg); - } - - /* line 119, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 100% { - -webkit-transform: rotate(330deg); - } -} - -/* line 12, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - border-color: #4c4c4c; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button, -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-back:before, .x-toolbar-edit .x-button.x-button-forward:before, .x-toolbar .x-toolbar-edit .x-button.x-button-back:before, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar-edit .x-button.x-button-forward:after, .x-toolbar .x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-edit .x-button .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-pressing, .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar-edit .x-button.x-button-active, .x-toolbar-edit .x-button.x-button-active:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-edit .x-button.x-button-active, .x-toolbar .x-toolbar-edit .x-button.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-label, -.x-toolbar-edit .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 12, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(20%, #e7e7e7), color-stop(100%, #e7e7e7)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - background-image: linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - border-color: #4c4c4c; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button, -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-back:before, .x-toolbar-search .x-button.x-button-forward:before, .x-toolbar .x-toolbar-search .x-button.x-button-back:before, .x-toolbar .x-toolbar-search .x-button.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar-search .x-button.x-button-back:after, .x-toolbar-search .x-button.x-button-forward:after, .x-toolbar .x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button.x-button-back:after, .x-toolbar .x-toolbar-search .x-button.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-search .x-button .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, F:/Projects/Devserver/Office_dynamic/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-pressing, .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar-search .x-button.x-button-pressed, .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar-search .x-button.x-button-active, .x-toolbar-search .x-button.x-button-active:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressing, .x-toolbar .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressed, .x-toolbar .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-search .x-button.x-button-active, .x-toolbar .x-toolbar-search .x-button.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-label, -.x-toolbar-search .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.share, -.list-icon.share { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 0px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.share, -.x-button-pressing .list-icon.share, -.x-button-pressed .x-button-icon.share, -.x-button-pressed .list-icon.share, -.x-button-active .x-button-icon.share, -.x-button-active .list-icon.share, -.x-item-pressed .x-button-icon.share, -.x-item-pressed .list-icon.share { - background-position: -24px 0px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search, -.list-icon.search { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search, -.x-button-pressing .list-icon.search, -.x-button-pressed .x-button-icon.search, -.x-button-pressed .list-icon.search, -.x-button-active .x-button-icon.search, -.x-button-active .list-icon.search, -.x-item-pressed .x-button-icon.search, -.x-item-pressed .list-icon.search { - background-position: -24px -24px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.fullscreen, -.list-icon.fullscreen { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.fullscreen, -.x-button-pressing .list-icon.fullscreen, -.x-button-pressed .x-button-icon.fullscreen, -.x-button-pressed .list-icon.fullscreen, -.x-button-active .x-button-icon.fullscreen, -.x-button-active .list-icon.fullscreen, -.x-item-pressed .x-button-icon.fullscreen, -.x-item-pressed .list-icon.fullscreen { - background-position: -24px -24px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.right, -.list-icon.right { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -48px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.right, -.x-button-pressing .list-icon.right, -.x-button-pressed .x-button-icon.right, -.x-button-pressed .list-icon.right, -.x-button-active .x-button-icon.right, -.x-button-active .list-icon.right, -.x-item-pressed .x-button-icon.right, -.x-item-pressed .list-icon.right { - background-position: -24px -48px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.left, -.list-icon.left { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -72px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.left, -.x-button-pressing .list-icon.left, -.x-button-pressed .x-button-icon.left, -.x-button-pressed .list-icon.left, -.x-button-active .x-button-icon.left, -.x-button-active .list-icon.left, -.x-item-pressed .x-button-icon.left, -.x-item-pressed .list-icon.left { - background-position: -24px -72px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.play, -.list-icon.play { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -96px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.play, -.x-button-pressing .list-icon.play, -.x-button-pressed .x-button-icon.play, -.x-button-pressed .list-icon.play, -.x-button-active .x-button-icon.play, -.x-button-active .list-icon.play, -.x-item-pressed .x-button-icon.play, -.x-item-pressed .list-icon.play { - background-position: -24px -96px; -} - -/* line 3, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.pause, -.list-icon.pause { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -120px; - background-size: 72px 144px; -} - -/* line 15, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.pause, -.x-button-pressing .list-icon.pause, -.x-button-pressed .x-button-icon.pause, -.x-button-pressed .list-icon.pause, -.x-button-active .x-button-icon.pause, -.x-button-active .list-icon.pause, -.x-item-pressed .x-button-icon.pause, -.x-item-pressed .list-icon.pause { - background-position: -24px -120px; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-toolbar .x-button.x-button-base { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-icon, .x-toolbar .x-button.x-button-base .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-forward:before, .x-button.x-button-base.x-button-forward:after, .x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-label, .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base .x-badge, .x-toolbar .x-button.x-button-base .x-button-label, .x-toolbar .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-forward:before { - background: #989898; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-button.x-button-base.x-button-back:after, .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base, .x-toolbar .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing, .x-button.x-button-base.x-button-pressing:after, .x-button.x-button-base.x-button-pressed, .x-button.x-button-base.x-button-pressed:after, .x-button.x-button-base.x-button-active, .x-button.x-button-base.x-button-active:after, .x-toolbar .x-button.x-button-base.x-button-pressing, .x-toolbar .x-button.x-button-base.x-button-pressing:after, .x-toolbar .x-button.x-button-base.x-button-pressed, .x-toolbar .x-button.x-button-base.x-button-pressed:after, .x-toolbar .x-button.x-button-base.x-button-active, .x-toolbar .x-button.x-button-base.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing .x-button-label, .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressing .x-badge, .x-button.x-button-base.x-button-pressed .x-button-label, .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressed .x-badge, .x-button.x-button-base.x-button-active .x-button-label, .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-active .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-toolbar .x-button.x-button-light { - border: 1px solid #c7c7c7; - border-top-color: #d9d9d9; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: #262626; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-icon, .x-toolbar .x-button.x-button-light .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-forward:before, .x-button.x-button-light.x-button-forward:after, .x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-label, .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light .x-badge, .x-toolbar .x-button.x-button-light .x-button-label, .x-toolbar .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light .x-badge { - color: #666666; - text-shadow: white 0 0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-forward:before { - background: #cccccc; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-button.x-button-light.x-button-back:after, .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light, .x-toolbar .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:after { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing, .x-button.x-button-light.x-button-pressing:after, .x-button.x-button-light.x-button-pressed, .x-button.x-button-light.x-button-pressed:after, .x-button.x-button-light.x-button-active, .x-button.x-button-light.x-button-active:after, .x-toolbar .x-button.x-button-light.x-button-pressing, .x-toolbar .x-button.x-button-light.x-button-pressing:after, .x-toolbar .x-button.x-button-light.x-button-pressed, .x-toolbar .x-button.x-button-light.x-button-pressed:after, .x-toolbar .x-button.x-button-light.x-button-active, .x-toolbar .x-button.x-button-light.x-button-active:after { - background-image: none; - background-color: #999999; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(10%, #8c8c8c), color-stop(65%, #999999), color-stop(100%, #9a9a9a)); - background-image: -webkit-linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); - background-image: linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing .x-button-label, .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressing .x-badge, .x-button.x-button-light.x-button-pressed .x-button-label, .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressed .x-badge, .x-button.x-button-light.x-button-active .x-button-label, .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-active .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-light.x-button-active .x-button-label, .x-toolbar .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-active .x-badge { - color: white; - text-shadow: gray 0 0.09em 0; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-first) { - border-left: 1px solid #c7c7c7; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue { - border: 1px solid #2e519b; - border-top-color: #3760b7; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: white; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-icon, .x-toolbar .x-button.x-button-base-blue .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-forward:before, .x-button.x-button-base-blue.x-button-forward:after, .x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-label, .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue .x-badge, .x-toolbar .x-button.x-button-base-blue .x-button-label, .x-toolbar .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue .x-badge { - color: white; - text-shadow: #2e519b 0 -0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before { - background: #3155a3; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-button.x-button-base-blue.x-button-back:after, .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after { - background-image: none; - background-color: #688ad2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #9bb2e1), color-stop(100%, #688ad2)); - background-image: -webkit-linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); - background-image: linear-gradient(top, #ffffff, #9bb2e1 3%, #688ad2); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing, .x-button.x-button-base-blue.x-button-pressing:after, .x-button.x-button-base-blue.x-button-pressed, .x-button.x-button-base-blue.x-button-pressed:after, .x-button.x-button-base-blue.x-button-active, .x-button.x-button-base-blue.x-button-active:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressing, .x-toolbar .x-button.x-button-base-blue.x-button-pressing:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressed, .x-toolbar .x-button.x-button-base-blue.x-button-pressed:after, .x-toolbar .x-button.x-button-base-blue.x-button-active, .x-toolbar .x-button.x-button-base-blue.x-button-active:after { - background-image: none; - background-color: #416cc6; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3155a3), color-stop(10%, #3760b7), color-stop(65%, #416cc6), color-stop(100%, #436dc7)); - background-image: -webkit-linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); - background-image: linear-gradient(top, #3155a3, #3760b7 10%, #416cc6 65%, #436dc7); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-button.x-button-base-blue.x-button-active .x-button-label, .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-active .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge { - text-shadow: #2e519b 0 0.09em 0; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first) { - border-left: 1px solid #2e519b; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back { - padding: 0.3em 8px; -} -/* line 2, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-icon, .x-toolbar .x-button.x-button-back .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-forward:before, .x-button.x-button-back.x-button-forward:after, .x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-label, .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back .x-badge, .x-toolbar .x-button.x-button-back .x-button-label, .x-toolbar .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-forward:before { - background: #989898; -} -/* line 43, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-button.x-button-back.x-button-back:after, .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back, .x-toolbar .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing, .x-button.x-button-back.x-button-pressing:after, .x-button.x-button-back.x-button-pressed, .x-button.x-button-back.x-button-pressed:after, .x-button.x-button-back.x-button-active, .x-button.x-button-back.x-button-active:after, .x-toolbar .x-button.x-button-back.x-button-pressing, .x-toolbar .x-button.x-button-back.x-button-pressing:after, .x-toolbar .x-button.x-button-back.x-button-pressed, .x-toolbar .x-button.x-button-back.x-button-pressed:after, .x-toolbar .x-button.x-button-back.x-button-active, .x-toolbar .x-button.x-button-back.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing .x-button-label, .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressing .x-badge, .x-button.x-button-back.x-button-pressed .x-button-label, .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressed .x-badge, .x-button.x-button-back.x-button-active .x-button-label, .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-active .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-back.x-button-active .x-button-label, .x-toolbar .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} -/* line 79, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - -webkit-border-radius: 4px; - border-radius: 4px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -/* line 89, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first) { - border-left: 0 !important; -} -/* line 105, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-last) { - margin-right: 7px; -} -/* line 116, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, F:/Projects/Devserver/Office_dynamic/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* - * unsupport - */ -/* line 54, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-base.scss */ -.unsuported-view { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url(../img/ios-only.png) no-repeat center #efefef; - background-attachment: fixed; - z-index: 90000; -} - -/* - * Additional styles - */ -/* line 69, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-12 { - padding-left: 12px; - padding-right: 12px; -} - -/* line 74, F:/Projects/Devserver/Office_dynamic/apps/presentationeditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-30 { - padding-left: 30px; - padding-right: 30px; -} +html,body{position:relative;width:100%;height:100%}.x-fullscreen{position:absolute !important}.x-body{position:relative;z-index:0}.x-inner,.x-body{width:100%;height:100%}.x-sized{position:relative}.x-innerhtml{width:100%}.x-layout-box{display:flex;display:-webkit-box;display:-ms-flexbox}.x-layout-box.x-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{min-width:0 !important}.x-layout-box.x-vertical{-webkit-box-orient:vertical !important;-ms-flex-direction:column !important;flex-direction:column !important}.x-layout-box.x-vertical>.x-layout-box-item.x-flexed{min-height:0 !important}.x-layout-box>.x-layout-box-item{display:flex !important;display:-webkit-box !important;display:-ms-flexbox !important}.x-layout-box.x-align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.x-layout-box.x-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-layout-box.x-align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.x-layout-box.x-align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.x-layout-box.x-pack-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.x-layout-box.x-pack-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-layout-box.x-pack-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.x-layout-box.x-pack-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-layout-box-item.x-sized>.x-inner,.x-layout-box-item.x-sized>.x-body,.x-layout-box-item.x-sized>.x-dock-outer{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-webkit .x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{width:0 !important}.x-webkit .x-layout-box.x-vertical>.x-layout-box-item.x-flexed{height:0 !important}.x-firefox .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-firefox .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px;min-height:0;min-width:0}.x-firefox .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-layout-card{position:relative;overflow:hidden}.x-layout-card-perspective{-webkit-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.x-layout-card-item-container{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-card-item{position:absolute;top:0;right:0;bottom:0;left:0;position:absolute !important}.x-dock{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock>.x-dock-body{overflow:hidden}.x-dock.x-sized,.x-dock.x-sized>.x-dock-body>*,.x-dock.x-sized>.x-dock-body>.x-body>.x-inner{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-sized>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-unsized,.x-dock.x-stretched{height:100%}.x-dock.x-unsized>.x-dock-body,.x-dock.x-stretched>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0;min-width:0}.x-dock.x-unsized>.x-dock-body>*,.x-dock.x-stretched>.x-dock-body>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-dock-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-dock.x-dock-horizontal>.x-dock-item{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-inner,.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-body{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-ie .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-ie .x-has-width>.x-dock.x-unsized.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-stretched.x-container{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-stretched.x-container>.x-inner,.x-stretched.x-container>.x-body,.x-stretched.x-container>.x-body>.x-inner{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0px}.x-layout-fit.x-stretched>.x-layout-fit-item{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-layout-fit{position:relative}.x-layout-fit-item.x-sized{position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-fit-item.x-unsized{width:100%;height:100%}.x-ie .x-stretched>.x-inner,.x-ie .x-stretched>.x-body{min-height:inherit}.x-center,.x-centered{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-center>*,.x-centered>*{position:relative}.x-center>.x-floating,.x-centered>.x-floating{position:relative !important}.x-floating{position:absolute !important}.x-layout-float{overflow:hidden}.x-layout-float>.x-layout-float-item{float:left}.x-layout-float.x-direction-right>.x-layout-float-item{float:right}@-webkit-keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}@keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}.x-paint-monitored{position:relative}.x-paint-monitor{width:0 !important;height:0 !important;visibility:hidden}.x-paint-monitor.cssanimation{-webkit-animation-duration:0.0001ms;-webkit-animation-name:x-paint-monitor-helper;animation-duration:0.0001ms;animation-name:x-paint-monitor-helper}.x-paint-monitor.overflowchange{overflow:hidden}.x-paint-monitor.overflowchange::after{content:'';display:block;width:1px !important;height:1px !important}.x-size-monitored{position:relative}.x-size-monitors{position:absolute;left:0;top:0;width:100%;height:100%;visibility:hidden;overflow:hidden}.x-size-monitors>*{width:100%;height:100%;overflow:hidden}.x-size-monitors.scroll>*.shrink::after{content:'';display:block;width:200%;height:200%;min-width:1px;min-height:1px}.x-size-monitors.scroll>*.expand::after{content:'';display:block;width:100000px;height:100000px}.x-size-monitors.overflowchanged>*.shrink>*{width:100%;height:100%}.x-size-monitors.overflowchanged>*.expand>*{width:200%;height:200%}.x-size-change-detector{visibility:hidden;position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;overflow:hidden}.x-size-change-detector>*{visibility:hidden}.x-size-change-detector-shrink>*{width:200%;height:200%}.x-size-change-detector-expand>*{width:100000px;height:100000px}.x-translatable{position:absolute !important;top:500000px !important;left:500000px !important;overflow:visible !important;z-index:1}.x-translatable-hboxfix{position:absolute;min-width:100%;top:0;left:0}.x-translatable-hboxfix>.x-translatable{position:relative !important}.x-translatable-container{overflow:hidden;width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-translatable-container::before{content:'';display:block;width:1000000px;height:1000000px;visibility:hidden}.x-button{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;border:1px solid #ccc;position:relative;overflow:hidden;z-index:1}.x-button .x-button-icon{position:relative;background-repeat:no-repeat;background-position:center}.x-button .x-button-icon.x-shown{display:block}.x-button .x-button-icon.x-hidden{display:none}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-iconalign-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-button-label,.x-badge,.x-hasbadge .x-badge{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;text-overflow:ellipsis;text-align:center;display:block;overflow:hidden}.x-badge{background-color:#ccc;border:1px solid #aaa;z-index:2;position:absolute !important;width:auto;font-size:.6em;right:0;top:0;max-width:95%;display:inline-block}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;-webkit-text-size-adjust:none;margin:0;cursor:default}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}*:focus{outline:none}body.x-desktop{overflow:hidden}@-ms-viewport{width:device-width}*,*:after,*:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;-ms-touch-action:none;-moz-user-select:-moz-none}input,textarea{-webkit-user-select:text;-ms-user-select:auto;-moz-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;-ms-user-select:auto;line-height:1.5;color:#333;font-size:.8em;padding:1.2em}.x-html body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%}.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6{font-weight:normal;color:#222}.x-html h1 img,.x-html h2 img,.x-html h3 img,.x-html h4 img,.x-html h5 img,.x-html h6 img{margin:0}.x-html h1{font-size:3em;line-height:1;margin-bottom:0.50em}.x-html h2{font-size:2em;margin-bottom:0.75em}.x-html h3{font-size:1.5em;line-height:1;margin-bottom:1.00em}.x-html h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}.x-html h5{font-size:1em;font-weight:bold;margin-bottom:1.50em}.x-html h6{font-size:1em;font-weight:bold}.x-html p{margin:0 0 1.5em}.x-html p .left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{float:right;margin:1.5em 0 1.5em 1.5em;padding:0}.x-html a{text-decoration:underline;color:#06c}.x-html a:visited{color:#004d99}.x-html a:focus{color:#09f}.x-html a:hover{color:#09f}.x-html a:active{color:#bf00ff}.x-html blockquote{margin:1.5em;color:#666;font-style:italic}.x-html strong,.x-html dfn{font-weight:bold}.x-html em,.x-html dfn{font-style:italic}.x-html sup,.x-html sub{line-height:0}.x-html abbr,.x-html acronym{border-bottom:1px dotted #666666}.x-html address{margin:0 0 1.5em;font-style:italic}.x-html del{color:#666}.x-html pre{margin:1.5em 0;white-space:pre}.x-html pre,.x-html code,.x-html tt{font:1em "andale mono","lucida console",monospace;line-height:1.5}.x-html li ul,.x-html li ol{margin:0}.x-html ul,.x-html ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}.x-html ul{list-style-type:disc}.x-html ol{list-style-type:decimal}.x-html dl{margin:0 0 1.5em 0}.x-html dl dt{font-weight:bold}.x-html dd{margin-left:1.5em}.x-html table{margin-bottom:1.4em;width:100%}.x-html th{font-weight:bold}.x-html thead th{background:#c3d9ff}.x-html th,.x-html td,.x-html caption{padding:4px 10px 4px 5px}.x-html table.striped tr:nth-child(even) td,.x-html table tr.even td{background:#e5ecf9}.x-html tfoot{font-style:italic}.x-html caption{background:#eee}.x-html .quiet{color:#666}.x-html .loud{color:#111}.x-html ul li{list-style-type:circle}.x-html ol li{list-style-type:decimal}@-webkit-keyframes x-loading-spinner-rotate{0%{-webkit-transform:rotate(0deg)}8.32%{-webkit-transform:rotate(0deg)}8.33%{-webkit-transform:rotate(30deg)}16.65%{-webkit-transform:rotate(30deg)}16.66%{-webkit-transform:rotate(60deg)}24.99%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.32%{-webkit-transform:rotate(90deg)}33.33%{-webkit-transform:rotate(120deg)}41.65%{-webkit-transform:rotate(120deg)}41.66%{-webkit-transform:rotate(150deg)}49.99%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.32%{-webkit-transform:rotate(180deg)}58.33%{-webkit-transform:rotate(210deg)}66.65%{-webkit-transform:rotate(210deg)}66.66%{-webkit-transform:rotate(240deg)}74.99%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.32%{-webkit-transform:rotate(270deg)}83.33%{-webkit-transform:rotate(300deg)}91.65%{-webkit-transform:rotate(300deg)}91.66%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(330deg)}}@keyframes x-loading-spinner-rotate{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.32%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.33%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.65%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.66%{-ms-transform:rotate(60deg);transform:rotate(60deg)}24.99%{-ms-transform:rotate(60deg);transform:rotate(60deg)}25%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.32%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.33%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.65%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.66%{-ms-transform:rotate(150deg);transform:rotate(150deg)}49.99%{-ms-transform:rotate(150deg);transform:rotate(150deg)}50%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.32%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.33%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.65%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.66%{-ms-transform:rotate(240deg);transform:rotate(240deg)}74.99%{-ms-transform:rotate(240deg);transform:rotate(240deg)}75%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.32%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.33%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.65%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.66%{-ms-transform:rotate(330deg);transform:rotate(330deg)}100%{-ms-transform:rotate(330deg);transform:rotate(330deg)}}@font-face{font-family:"Pictos";src:url('data:application/font-woff;base64,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') format('woff'),url('data:font/truetype;base64,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AQIFAw4BAQQCCAEBBAIBAQMDAgYGAgECAgEBAQICAQ0DAQICBQEMBwIFAgICBgMCBQQCBAQMAQMBAQEBBAUBAwkBAwEBAgEDAgIBBAICBgECBgMCBQIGCAUFAQUIAQMFAQELAQEGAQIDAQEBBAEBAQMCBgIEAwQGAgQHAgMDAQIGAQIBAQICAQQBBQECGwQCAQUDAQIDAgcFCAMBBgMEAwQEBAMDAQIDAwUCAgEIBgIKAQ0EBAIGAwQMAwELAQcJCAIDAgYDAQcBBwYDBAYCAgUBAwEBCwcIAgEKIceMUo4vBwIDBQUBBAIKAgEBAQMBAQMCBQIDAgJFAhkBAgEBBwQHAgoBAQUCAwMDAQIJAQUClAEFBQsCCAEDBAcBBAUBAwMBAScCBgEDAwIEAQIBBQEHAgMCAgMMBAMBAQIHARYCAgMEBQQCAgEBBAEBAwYBAwOgAQPKAgMBAQMCAQUCAQEWAgcCBQFxBgoGBQEDAgICCQEJAQ4EAgEBAQQCAgECBAECAQEBAQ8HARMPAgECAQUEAQMFAQIBAQQBBAQGBgMDCwENCgoBBwoDCQQIBAQDAwQEAgECAQIDAgEDAwQCBAEEAQIEAQMDAwUJAQgNAQMICAoQBgIICQYBAgICAQUCBQYGAQUBAgoDAQH+YwMEAgEBEQQHAgMBAggEBQUGIwICAQENAQcBBwIBCAIfBAUGAgEBJgMEAgIBARABAQF9AgICuvb+pPb2AVwzAwMFAggECwIBBAIECQIBAgECBgECAgIEBwECAQMEAgX+wFprEwkCCQIBAwgEBAMHAgQBBAEHAQMDBQoEAQMEAQIBAQIIAgEEAgYCAgMFAQcEDAUMDgIKAQsECQQBAgkBCQICAQEBAQIDAgwDAQQDBAcBAQEKAQQKAQIBBwQCBgkBBQEFAQECAwYDDAMEAgcBAgIBAQESAgMEAwEBAQQJAQgKAQICAQQDBgIEBgYBBAYFAQIBAgECAQIGBAgBAwMCAgEDAQsDAgYCAwoCAgcEAQIGBQ0IBAMCAgIBAQIIBAICCQIEAgECBQQCAQM4QFsBAwEGAgcCBgIBAQICBAEBAQIBAQECAQICAQIDBAMCBAMKBwEKAQoDAQICCwICAQQCBQEBAQEBCwIHBAECAQEBAQIPCAQBAgMEBgoCAQUDAQICAgYGAgQFAgEJAwECAQ0DAQMCBgQBCQMC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') format('truetype'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIHdlYmZvbnQgZ2VuZXJhdGVkIGJ5IEZvbnQgU3F1aXJyZWwuCkRlc2lnbmVyICAgIDogRHJldyBXaWxzb24KRm91bmRyeSAgICAgOiBEcmV3IFdpbHNvbgpGb3VuZHJ5IFVSTCA6IGh0dHBwaWN0b3NkcmV3d2lsc29uY29tCjwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0id2ViZm9udEl5Zlpic2VGIiBob3Jpei1hZHYteD0iOTIwIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSIxMDAwIiBhc2NlbnQ9Ijc1MCIgZGVzY2VudD0iLTI1MCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPGdseXBoIHVuaWNvZGU9IiAiICBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MDk7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4YTA7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iISIgaG9yaXotYWR2LXg9IjkzNiIgZD0iTTg2NSAxMDNxMzcgLTYyIDExIC0xMDYuNXQtOTggLTQ0LjVoLTYyMXEtNzIgMCAtOTcuNSA0NC41dDExLjUgMTA2LjVsMzEwIDUzNHEzNiA2MiA4Ny41IDYydDg3LjUgLTYyek00NzEgNDZxMjMgMCAzOC41IDE2dDE1LjUgMzh0LTE1LjUgMzcuNXQtMzguNSAxNS41cS0yMiAwIC0zNy41IC0xNS41dC0xNS41IC0zNy41dDE1LjUgLTM4dDM3LjUgLTE2ek01MDkgMTg3bDI2IDMwOGgtMTI3bDI2IC0zMDhoNzV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjI7IiBob3Jpei1hZHYteD0iODY1IiBkPSJNNTIgMjg5cTEgNjUgNy41IDExNXQyNi41IDEwMS41dDUzLjUgODYuNXQ5MC41IDU4LjV0MTM1IDI4LjV2LTE1N3EtNjYgMCAtOTUgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNXEtMTggMCAtMzEgMTN0LTEzIDMxdjI1OHY3ek00OTMgMjg5cTAgNjUgNyAxMTV0MjcgMTAxLjV0NTMuNSA4Ni41dDkwLjUgNTguNXQxMzUgMjguNXYtMTU3IHEtNjcgMCAtOTYgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNHEtMTkgMCAtMzIgMTN0LTEzIDMxdjI1OHEwIDUgMSA3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiMiIGhvcml6LWFkdi14PSI3NDgiIGQ9Ik03MDUgNDgycTkgLTE0IC04IC0xNGgtNDh2LTU2N3EwIC03IC01IC0xMnQtMTIgLTVoLTUxM3EtNyAwIC0xMiA1dC01IDEydjU2N2gtNTJxLTcgMCAtOS41IDR0MS41IDEwbDMxIDQ2cTkgMTQgMjcgMTRoNzV2NjZxMCAyMCAxMiAzMGw0OCA0OXExMiAxMiAzMCAxMmgyMTZxMTggMCAzMCAtMTJsNTIgLTUycTEzIC0xMyAxMyAtMzB2LTYzaDcxcTE4IDAgMjcgLTE0ek0yNDggNTQ2di00aDI1NHY0djI4cTAgMjAgLTEyIDMwbC05IDEwIHEtMTIgMTIgLTMwIDEyaC0xNTVxLTE4IDAgLTMwIC0xMmwtNiAtNnEtMTIgLTEyIC0xMiAtMzB2LTMyek01NzYgNDUwcTAgMTYgLTE2IDE4aC0yNzloLTg5cS03IDAgLTEyIC01LjV0LTUgLTEyLjV2LTQ3NnEwIC03IDUgLTEydDEyIC01aDM2N3E3IDAgMTIgNXQ1IDEydjQ3NnpNMjYzIDQxOHE3IDAgMTIuNSAtNXQ1LjUgLTEydi0zNzlxMCAtNyAtNS41IC0xMnQtMTIuNSAtNWgtMjFxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTIgdDEyLjUgNWgyMXpNMzY0IDVxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTJ0MTIuNSA1aDIxcTcgMCAxMiAtNXQ1IC0xMnYtMzc5cTAgLTcgLTUgLTEydC0xMiAtNWgtMjF6TTQ4NSA1cS03IDAgLTEyIDV0LTUgMTJ2Mzc5cTAgNyA1IDEydDEyIDVoMjJxNyAwIDEyIC01dDUgLTEydi0zNzlxMCAtNyAtNSAtMTJ0LTEyIC01aC0yMnoiIC8+CjxnbHlwaCB1bmljb2RlPSIkIiBob3Jpei1hZHYteD0iODkzIiBkPSJNNTAzIDI4M2gtMTA4bC0xNiA2OGgxMjR2LTY4ek02ODQgMzUxbC0xOCAtNjhoLTEwNGwxIDY4aDEyMXpNNDAwIDExOHEyOCAwIDQ4LjUgLTIwdDIwLjUgLTQ5dC0yMC41IC00OXQtNDguNSAtMjB0LTQ4LjUgMjB0LTIwLjUgNDl0MjAuNSA0OXQ0OC41IDIwek02NTkgMTE4cTI5IDAgNDkgLTIwdDIwIC00OXQtMjAgLTQ5dC00OSAtMjB0LTQ5IDIwdC0yMCA0OXQyMCA0OXQ0OSAyMHpNODMzIDUxNnEyNSAtNyAyNSAtMzNxMCAtMyAtMiAtOSBsLTg4IC0yOTNxLTcgLTI1IC0zMiAtMjVoLTQxN3EtMTIgMCAtMjEuNSA3LjV0LTExLjUgMTguNWwtODEgMzI3aC0xNDlxLTE0IDAgLTI0IDEwdC0xMCAyNHQxMCAyNHQyNCAxMGgxNzZxMjYgMCAzMyAtMjZsMTggLTczaDUwM2w1IDE1cTYgMjQgMzIgMjRxNyAwIDEwIC0xek03MTIgMjMxbDU0IDE3OWgtNDY2bDQ1IC0xODZoMzY1eiIgLz4KPGdseXBoIHVuaWNvZGU9IiUiIGhvcml6LWFkdi14PSI5MDMiIGQ9Ik04NjcgMjc3cTAgLTc5IC0zNy41IC0xNDl0LTEwMi41IC0xMTdsMTEgLTk2di00cTAgLTE3IC0xMSAtMzBxLTEzIC0xNSAtMzQgLTE1aC0xNDhxLTIxIDAgLTM0IDE1cS0xMSAxMyAtMTEgMzB2NWwyIDE4cS02IC0xIC0xOCAtMWgtMTBsMiAtMTd2LTVxMCAtMTcgLTExIC0zMHEtMTIgLTE1IC0zNCAtMTVoLTE0OHEtMjEgMCAtMzQgMTVxLTExIDEzIC0xMSAzMHY1bDExIDkwcS04NiA2MCAtMTI0IDE1M2wtNDQgLTRoLTRxLTE4IDAgLTMwIDEyIHEtMTUgMTIgLTE1IDMzdjE1MnEwIDIxIDE1IDMzcTEyIDEyIDMwIDEyaDRsNDMgLTRxMzQgODUgMTA3IDE0MWwtMiAxMTB2MXYxcTAgMjggMjUgNDNxMTEgNyAyNiA3cTE0IDAgMjUgLTdsMTI4IC03MnEyNSAzIDUxIDNxMTYwIDAgMjcwIC05OXExMTMgLTEwMCAxMTMgLTI0NHpNNjgxIDQ3cTYxIDQxIDk1LjUgMTAxdDM0LjUgMTI5cTAgMTE4IC05NCAyMDJxLTk2IDg1IC0yMzMgODVxLTI5IDAgLTUzIC00bC05IC0xbC0xMzYgNzdsMiAtMTMwIGwtMTIgLThxLTc5IC01NyAtMTA2IC0xNDRsLTcgLTIybC03NSA3di0xMjdsNzUgOGw3IC0yMnEzMyAtOTYgMTI0IC0xNTVsMTUgLTlsLTEzIC0xMTJoMTIzbC05IDc0bDM1IC00cTEzIC0yIDM5IC0ycTI0IDAgNDcgM2wzNiA0bC05IC03NWgxMjNsLTE1IDExNnpNNTAxIDUyMWw3IC0xcTcgMCAxOCAtMnQyNiAtNXQzMiAtOXQzNSAtMTR0MzcgLTIwLjV0MzYgLTI4LjVxOCAtNyA4IC0xOXQtOCAtMjBxLTggLTkgLTIwIC05cS0xMSAwIC0xOSA4IHEtMjQgMjMgLTU5IDM4LjV0LTU1LjUgMTkuNXQtMzUuNSA1aC00cS0xMSAxIC0xOSA5LjV0LTggMTkuNXExIDEyIDkuNSAyMHQxOS41IDh6TTIzMSAzODRxMTkgMjAgNDEgMjZ0MzQgLTVxMTEgLTExIDYuNSAtMzN0LTIzLjUgLTQydC00MC41IC0yNnQtMzMuNSA1dC03IDMzdDIzIDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDI2OyIgaG9yaXotYWR2LXg9IjczMiIgZD0iTTQ2NSA0MDVoMjUwdi0xOThoLTI1MHYtMjUwaC0xOTh2MjUwaC0yNTB2MTk4aDI1MHYyNTBoMTk4di0yNTB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJyIgaG9yaXotYWR2LXg9IjkwOCIgZD0iTTI2NSAxMzlxNzggNzggMTg4LjUgNzh0MTg4LjUgLTc4cTEgMCAxIC0xbC01NSAtNTVxLTEgMCAtMSAxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1ek0xNDAgMjY0cTg1IDg1IDE5OS41IDExNS41dDIyOC41IDB0MTk5IC0xMTUuNWwxIC0xbC01NiAtNTZxMCAxIC0xIDFxLTEwNiAxMDYgLTI1Ny41IDEwNi41dC0yNTcuNSAtMTA1LjV6TTg5MyAzOTJxMCAtMiAyIC0ybC01NiAtNTZsLTIgMnEtMTA0IDEwNCAtMjQ0IDE0MXQtMjc5LjUgMCB0LTI0My41IC0xNDFxLTEgMCAtMSAtMWwtNTYgNTZsMSAxcTEyMCAxMTkgMjgwIDE2MS41dDMxOS41IDB0Mjc5LjUgLTE2MS41ek0zOTIgMTNxMjYgMjUgNjMgMjV0NjMgLTI1bC02MyAtNjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKCIgaG9yaXotYWR2LXg9IjY3MSIgZD0iTTU1MCAzNTloNzd2LTQzN2gtNTgydjQzN2g3NXYxMjhxMCA4NyA2MiAxNDl0MTQ5IDYyaDRoNHE4OCAwIDE0OS41IC02MnQ2MS41IC0xNDl2LTEyOHpNNDAyIDJsLTMyIDE0MXEzMiAyMCAzMiA1N3EwIDI4IC0xOSA0N3QtNDcgMTlxLTI3IDAgLTQ2LjUgLTE5dC0xOS41IC00N3EwIC0zOCAzMyAtNTZsLTMzIC0xNDJoMTMyek00NDUgMzU5djEyOHEwIDQzIC0zMSA3NHQtNzUgMzFoLTNoLTVxLTQzIDAgLTc0IC0zMXQtMzEgLTc0di0xMjggaDIxOXoiIC8+CjxnbHlwaCB1bmljb2RlPSIpIiBob3Jpei1hZHYteD0iODg5IiBkPSJNNjQ1IDY5OHE4OCAwIDE1MCAtNjEuNXQ2MiAtMTQ5LjV2LTEyOGgtMTA2djI5bDM2IDM0djEzaC0zNnY1MnEwIDQ0IC0zMSA3NC41dC03NSAzMC41aC0yaC01cS00NCAwIC03NSAtMzAuNXQtMzEgLTc0LjV2LTEyOGg3N3YtNDM4aC01ODR2NDM4aDQwMXYxMjhxMCA4OCA2MiAxNDkuNXQxNTAgNjEuNWgzaDR6TTM4MiAwbC0zMyAxNDJxMzMgMjAgMzMgNTdxMCAyOCAtMTkuNSA0Ny41dC00Ni41IDE5LjVxLTI4IDAgLTQ3LjUgLTE5LjUgdC0xOS41IC00Ny41cTAgLTM3IDMzIC01N2wtMzMgLTE0MmgxMzN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKiIgaG9yaXotYWR2LXg9Ijc3NyIgZD0iTTczNyA0OTBsLTE5NSAtMTk1bDE5NSAtMTk2bC0xNTQgLTE1M2wtMTk1IDE5NWwtMTk1IC0xOTVsLTE1NCAxNTNsMTk1IDE5NmwtMTk1IDE5NWwxNTQgMTU0bDE5NSAtMTk1bDE5NSAxOTV6IiAvPgo8Z2x5cGggdW5pY29kZT0iKyIgZD0iTTQ2MCA3MDJxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTcwOSAyNjJ2NDFxMCAxNSAtMTAuNSAyNS41dC0yNS41IDEwLjVoLTEyMXEtMTUgMCAtMjUuNSAxMXQtMTAuNSAyNnYxMjFxMCAxNSAtMTEgMjUuNXQtMjYgMTAuNWgtNDFxLTE1IDAgLTI1LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTEyMXEwIC0xNSAtMTEgLTI2dC0yNiAtMTFoLTEyMCBxLTE2IDAgLTI2LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTQxcTAgLTE1IDEwLjUgLTI2dDI2LjUgLTExaDEyMHExNSAwIDI2IC0xMC41dDExIC0yNS41di0xMjFxMCAtMTUgMTAuNSAtMjUuNXQyNS41IC0xMC41aDQxcTE1IDAgMjYgMTAuNXQxMSAyNS41djEyMXEwIDE1IDEwLjUgMjUuNXQyNS41IDEwLjVoMTIxcTE1IDAgMjUuNSAxMXQxMC41IDI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiwiIGhvcml6LWFkdi14PSI5MTUiIGQ9Ik00NTggNzAxcTE3MyAwIDI5NSAtMTIyLjV0MTIyIC0yOTUuNXEwIC0xMDQgLTQ2IC0xOTFxLTU5IC0xMTUgLTE3MiAtMTc2cS05NCAtNTEgLTE5OSAtNTFxLTEwMSAwIC0xOTQgNDhxLTExNCA2MCAtMTc1IDE3M3EtNDkgOTMgLTQ5IDE5N3EwIDE3MyAxMjIuNSAyOTUuNXQyOTUuNSAxMjIuNXpNNzYwIDIwM3ExMSA0MSAxMSA4MHEwIDEzMCAtOTIgMjIydC0yMjEgOTJxLTEzMCAwIC0yMjIgLTkydC05MiAtMjIycTAgLTM5IDEyIC04NSBxMyAtOSA5IC0yNXEyMSA2IDQ1IDZxNjUgMCAxMTEuNSAtNDZ0NDYuNSAtMTExcTAgLTE3IC01IC0zN3E0IC0yIDEyIC00cTQyIC0xMSA4MyAtMTFxNDUgMCA4NyAxMnEyIDAgNS41IDJ0NS41IDJxLTUgMjIgLTUgNDBxMCA2NCA0Ni41IDExMC41dDExMC41IDQ2LjVxMjMgMCA0NCAtNnE1IDE1IDggMjZ6TTQ5OCAzMzNxMjUgLTE5IDI1IC01MHEwIC0xNCAtNSAtMjRxLTE2IC0zOSAtNTggLTM5cS0xMSAwIC0yNCA1cS0zOSAxNiAtMzkgNTggcTAgMSAwLjUgNHQwLjUgNWwtNTYgMjQ1bDIxIDl6TTQ3OCA1NjV2LTk1aC0zOXY5NWgzOXpNNjMyIDQ5MGwyNyAtMjdsLTY4IC02OGwtMjcgMjh6TTYyOSAzMDB2MzhoOTZ2LTM4aC05NnpNMTkyIDMwMHYzOGg5NXYtMzhoLTk1ek0yNDQgNDYzbDI4IDI3bDY3IC02N2wtMjcgLTI4eiIgLz4KPGdseXBoIHVuaWNvZGU9Ii0iIGhvcml6LWFkdi14PSI5MjEiIGQ9Ik00NjEgNjk4cTE3NCAwIDI5NyAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk3IC0xMjMuNXEtMTc1IDAgLTI5OCAxMjMuNXQtMTIzIDI5Ny41dDEyMyAyOTcuNXQyOTggMTIzLjV6TTY5NCAyNTh2MzlxMCAxOSAtMTQgMzN0LTMzIDE0aC0zNzZxLTE5IDAgLTMzIC0xNHQtMTQgLTMzdi0zOXEwIC0yMCAxNCAtMzMuNXQzMyAtMTMuNWgzNzZxMTkgMCAzMyAxMy41dDE0IDMzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iLiIgaG9yaXotYWR2LXg9Ijk0NSIgZD0iTTE0NyAzOTJxMzcgMCA2NCAtMjd0MjcgLTY0cTAgLTM4IC0yNi41IC02NXQtNjQuNSAtMjd0LTY1IDI3dC0yNyA2NXQyNyA2NC41dDY1IDI2LjV6TTQ3MiAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY0LjUgMjd0LTI2LjUgNjVxMCAzNyAyNi41IDY0dDY0LjUgMjd6TTc5OCAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY1IDI3dC0yNyA2NXEwIDM3IDI3IDY0dDY1IDI3eiAiIC8+CjxnbHlwaCB1bmljb2RlPSIvIiBob3Jpei1hZHYteD0iOTEyIiBkPSJNNjkzIDUzN2gxODF2LTEyN3YtMzAxaC0xODF2LTUzbC0xMzYgLTEzNmgtMzM2djE4OWgtMTgxdjMwMXYxMjdoMTgxdjE2M2g0NzJ2LTE2M3pNODE2IDQ4MGgtMTA1di01M2gxMDV2NTN6TTI3NSA2NDZ2LTEwOWgzNjR2MTA5aC0zNjR6TTUwMiAtMjZ2MTM2aDEzN3YxMzF2NTVoNTR2LTEyOWg2N3YxOTdoLTYwNHYtMTk3aDY1djExMXYxOGg1NHYtNTV2LTI2N2gyMjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iMCIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTY0MyAxNjFsMzkgLTQwbDI4IC0yN3EtNDcgLTYwIC0xMTYuNSAtOTQuNXQtMTQ4LjUgLTM0LjVxLTE0MCAwIC0yMzguNSA5OHQtOTkuNSAyMzhoLTExaC0yaC02N2wxMjYgMTI2bDEyNyAtMTI2aC01MWgtMjhxMCAtMTAwIDcxLjUgLTE3MXQxNzIuNSAtNzFxNjAgMCAxMTIuNSAyNy41dDg1LjUgNzQuNXpNODEwIDMwMWg1MmwtMTI3IC0xMjZsLTEyNiAxMjZoNTBoMzB2MnEwIDEwMSAtNzEuNSAxNzIuNXQtMTcyLjUgNzEuNSBxLTYxIDAgLTExMy41IC0yOC41dC04Ni41IC03Ni41bC0zOSAzOWwtMjggMjhxNDcgNjEgMTE2LjUgOTZ0MTUwLjUgMzVxMTM5IDAgMjM4IC05OXQ5OSAtMjM4di0yaDI4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjEiIGhvcml6LWFkdi14PSI3NDMiIGQ9Ik02ODggMjM1aDI5di0zMHEwIC0xNDMgLTEwMC41IC0yNDMuNXQtMjQzLjUgLTEwMC41dC0yNDQgMTAxdC0xMDEgMjQzcTAgMTQzIDEwMSAyNDR0MjQ0IDEwMXExNiAwIDI1IC0xdjc5djcxbDQ5IC01MGwxNTcgLTE1N2wyMSAtMjFsLTIxIC0yMGwtMTU3IC0xNTdsLTQ5IC01MHY3MHY4OHEtMTggMiAtMjUgMnEtODMgMCAtMTQxIC01OHQtNTggLTE0MXEwIC04MiA1OC41IC0xNDB0MTQwLjUgLTU4dDE0MCA1OHQ1OCAxNDB2MzBoMzBoODd6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjIiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NTkgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjNxLTE3MyAwIC0yOTYgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk2IDEyM3pNNzI4IDM5MnE2IDYgNiAxNXQtNiAxNmwtNTUgNTRxLTYgNiAtMTUgNnQtMTYgLTZsLTI0MyAtMjQ0cS0xNSAtMTYgLTMxIDBsLTg4IDg4cS0xNiAxNiAtMzEgMGwtNTUgLTU0cS02IC03IC02IC0xNnQ2IC0xNWwxMzkgLTE0MHExNSAtMTUgMzcgLTE1aDI2cTIwIDAgMzcgMTV6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjMiIGhvcml6LWFkdi14PSI4NjgiIGQ9Ik0yMiAyMzlxLTEwIDEwIC0xMCAyNHQxMCAyNGw4MyA4M3ExMCAxMCAyMy41IDEwdDIzLjUgLTEwbDEzNiAtMTM1cTEwIC0xMCAyMy41IC0xMHQyMy41IDEwbDM3MSAzNzJxMTAgMTAgMjMuNSAxMHQyMy41IC0xMGw4MyAtODJxMTAgLTEwIDEwIC0yMy41dC0xMCAtMjMuNWwtNDUwIC00NTFxLTI0IC0yNCAtNTcgLTI0aC0zOXEtMzIgMCAtNTYgMjR6IiAvPgo8Z2x5cGggdW5pY29kZT0iNCIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTU5IDcwMGw3MDIgLTM1MWwtNzAyIC0zNTB2NzAxeiIgLz4KPGdseXBoIHVuaWNvZGU9IjUiIGhvcml6LWFkdi14PSI4MTYiIGQ9Ik01OSAxdjY5OGgyNjJ2LTY5OGgtMjYyek00OTUgNjk5aDI2MnYtNjk4aC0yNjJ2Njk4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjYiIGhvcml6LWFkdi14PSI4MTciIGQ9Ik03NTggMmgtNjk5djY5OGg2OTl2LTY5OHoiIC8+CjxnbHlwaCB1bmljb2RlPSI3IiBob3Jpei1hZHYteD0iOTIyIiBkPSJNNDIzIDQxN3YxODJsNDg1IC0yNDNsLTQ4NSAtMjQydjE4MWwtMzY0IC0xODF2NDg1eiIgLz4KPGdseXBoIHVuaWNvZGU9IjgiIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik01MDAgMjk1di0xODJsLTQ4NiAyNDNsNDg2IDI0MnYtMTgybDM2MyAxODJ2LTQ4NXoiIC8+CjxnbHlwaCB1bmljb2RlPSI5IiBkPSJNNDYwIDcwMHExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzdC0yOTcgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk3IDEyM3pNMjk4IDY0bDQzMSAyMTZsLTQzMSAyMTZ2LTQzMnoiIC8+CjxnbHlwaCB1bmljb2RlPSI6IiBob3Jpei1hZHYteD0iODAxIiBkPSJNNjcxIDEwMGwxMDUgLTEwMnEwIC0xNiAtMTIgLTI4LjV0LTI5IC0xMi41aC0yNDJxMSAtNCAxIC0xMnEwIC0zOSAtMjcuNSAtNjYuNXQtNjYuNSAtMjcuNXQtNjYuNSAyNy41dC0yNy41IDY2LjVxMCAyIDAuNSA2dDAuNSA2aC0yNDFxLTE2IDAgLTI4LjUgMTIuNXQtMTIuNSAyOC41bDEwNSAxMDJxLTEgOCAtMSAyNXYyMDhxMCA4OCA1MC41IDE1OHQxMzAuNSA5OHEtNCAxMSAtNCAyNnEwIDM5IDI3LjUgNjYuNXQ2Ni41IDI3LjUgdDY2LjUgLTI3LjV0MjcuNSAtNjYuNXEwIC0xNCAtMyAtMjZxODAgLTI4IDEzMC41IC05OC41dDUwLjUgLTE1Ny41di0yMDhxMCAtMTcgLTEgLTI1ek0zNDggNjE1cTAgLTUgMiAtMTVxMjggNSA1MCA1cTIzIDAgNTAgLTVxMyA4IDMgMTVxMCAyMiAtMTUuNSAzN3QtMzcuNSAxNXQtMzcgLTE1dC0xNSAtMzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iOyIgaG9yaXotYWR2LXg9Ijg4NyIgZD0iTTI5OSA0MThsLTQyIC00NHEtNCAtNSAtMTEgLTEyLjVsLTEyLjUgLTEzLjVsLTEwLjUgLTExcS0xOCAxNiAtMjcgMjNxLTQ5IDQwIC04MSA0MGgtMTAxdjExMmgxMDFxNTkgLTEgMTE4IC00MXEzMyAtMjEgNjYgLTUzek0zOTkgMTU2bDQ0IDQ3bDMyIDM0cTE2IC0xNCAyNiAtMjJxNTIgLTQyIDg0IC00MGg4NnY5NGwxNzUgLTE0OGwtMTc1IC0xNDZ2ODhoLTg2cS01NiAwIC0xMjAgNDBxLTI3IDE3IC02NiA1M3pNNTgyIDQwMCBxLTIzIDAgLTU2IC0yMnEtMzUgLTIzIC03OCAtNjhxLTE5IC0xOSAtNTQuNSAtNTcuNWwtNjYuNSAtNjkuNXQtNjAgLTU1cS04MCAtNjQgLTE1NCAtNjVoLTk5djExMmg5OXEyNiAwIDU5IDIycTI5IDE4IDc5IDY4cTUgNSA3MyA3Ny41dDEwNyAxMDQuNXE4MSA2NCAxNTIgNjVoODh2OTJsMTc1IC0xNDdsLTE3NSAtMTQ3djkwaC04OGgtMXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gzYzsiIGhvcml6LWFkdi14PSIzOTUiIGQ9Ik0xMTUgNDEwbDIyMiAyMjN2LTY2OGwtMjIyIDIyMmgtMTEydjIyM2gxMTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iPSIgaG9yaXotYWR2LXg9Ijk0NyIgZD0iTTg5NiAzNzl2LTE3NmwtNjMgLTI1di0xMDhoLTc3M3Y0NDJoNzczdi0xMDl6TTc2MCAxNDR2Mjk0aC02MjZ2LTI5NGg2MjZ6TTM3MyAzOTBsMjIyIC0xOThoLTQxM3YxOThoMTkxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDNlOyIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTEyNiA0MDhsMjIyIDIyM3YtNjY4bC0yMjIgMjIyaC0xMTJ2MjIzaDExMnpNNDM0IDQzOHE3NSAtNTAgNzUgLTE0MHQtNzUgLTEzOWwtMzQgNjdxMzUgMjggMzUgNzJ0LTM1IDcydjJ6TTY4MCAyOThxMCAtOTIgLTQ2IC0xNjguNXQtMTIzIC0xMjAuNWwtMzQgNjZxNTkgMzQgOTQgOTMuNXQzNSAxMjkuNXQtMzUgMTI5LjV0LTk0IDkzLjV2MmwzMyA2NXE3NyAtNDQgMTIzLjUgLTEyMS41dDQ2LjUgLTE2OC41ek01ODcgNzM4IHExMTggLTY2IDE4OC41IC0xODN0NzAuNSAtMjU3dC03MC41IC0yNTd0LTE4OC41IC0xODJsLTMzIDY2cTk5IDU2IDE1OC41IDE1NS41dDU5LjUgMjE3LjV0LTU5LjUgMjE3LjV0LTE1OS41IDE1NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Ij8iIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik00NjEgNzAycTE3NSAwIDI5OCAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk4IC0xMjMuNXEtMTc0IDAgLTI5Ny41IDEyMy41dC0xMjMuNSAyOTcuNXQxMjMuNSAyOTcuNXQyOTcuNSAxMjMuNXpNNDg5IDI5cTE5IDE4IDE5IDQ3dC0xOSA0N3EtMjAgMTcgLTQ5IDE3cS0yOCAwIC00OCAtMTdxLTIwIC0yMCAtMTggLTQ3cS0yIC0yNyAxOCAtNDdxMTkgLTE3IDQ4IC0xN3EzMiAwIDQ5IDE3ek02MDIgMzUxcTEwIDI0IDEwIDYyIHEwIDU4IC00MSA5M3EtMzggMzQgLTEwOCAzNHEtNDkgMCAtODUgLTEycS0zMyAtMTEgLTYzIC0zMWwtOSAtNmw0NiAtODdsMTAgOHEyIDEgMTkgMTFxNyA0IDIzIDEwcTEwIDQgMjMgNnE3IDIgMjEgMnEzMCAwIDM4IC0xMHExMSAtMTEgMTEgLTMxcTAgLTEzIC03IC0yNXEtMTIgLTE2IC0yMSAtMjRxLTQgLTQgLTguNSAtOGwtMTAgLTl0LTkuNSAtOHEtMTcgLTE2IC0zMCAtMzRxLTEyIC0yMCAtMjAgLTQ2cS01IC0yMiAtNSAtNDEgcTAgLTQgMC41IC0xMnQwLjUgLTEybDEgLTExaDExaDg4djEycTAgMjYgOCA0MnE5IDE2IDIxIDMwcTE0IDE0IDI5IDI1dDMyIDMwcTE0IDE3IDI1IDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IkAiIGhvcml6LWFkdi14PSI1MDgiIGQ9Ik0yNTggNzAzcTkyIDAgMTU3LjUgLTY2dDY1LjUgLTE1N3EwIC0xMDcgLTIwMyAtNTQ2bC0yNCAtNTBsLTYzIDEzNXQtMTAxIDI0NC41dC02MyAyMTYuNXEwIDkyIDY1LjUgMTU3LjV0MTU3LjUgNjUuNWg0aDR6TTI1NCAzOTdxNDIgMCA3MiAzMHQzMCA3M3EwIDQyIC0zMCA3MnQtNzIgMzBxLTQzIDAgLTczIC0zMHQtMzAgLTcycTAgLTQzIDMwIC03M3Q3MyAtMzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iQSIgaG9yaXotYWR2LXg9Ijg5MyIgZD0iTTMxNSAyOTlsNzAgLTcwcS0zOCAtMzIgLTg4LjUgLTMwdC04Ni41IDM4bC0xNDQgMTQ0cS0zOCAzNyAtMzggOTF0MzggOTFsOTkgOTlxMzggMzggOTEuNSAzOHQ5MS41IC0zOGwxNDQgLTE0NHEzNiAtMzYgMzcuNSAtODYuNXQtMzAuNSAtODguNWwtNzAgNjlxMTAgMjAgLTYgMzhsLTE0NCAxNDRxLTkgOSAtMjIuNSA5dC0yMi41IC05bC05OSAtOTlxLTEwIC0xMCAtMTAgLTIzdDEwIC0yM2wxNDQgLTE0NHExNiAtMTYgMzYgLTZ6TTcyOCAtOTkgcS0zOCAtMzcgLTkxIC0zN3QtOTEgMzdsLTE0NSAxNDVxLTM1IDM1IC0zNyA4NS41dDMwIDg4LjVsNjkgLTcwcS05IC0yMCA3IC0zNmwxNDQgLTE0NHE5IC0xMCAyMi41IC0xMHQyMi41IDEwbDk5IDk5cTEwIDkgMTAgMjIuNXQtMTAgMjIuNWwtMTQ0IDE0NXEtMTYgMTYgLTM3IDVsLTY5IDcwcTM4IDMyIDg4LjUgMzAuNXQ4Ni41IC0zNy41bDE0NCAtMTQ0cTM3IC0zOCAzNyAtOTEuNXQtMzcgLTkxLjV6TTI2MyA0NjVxMTQgMTQgMzQgMTQgdDM0IC0xNGwyOTUgLTI5NXExNCAtMTQgMTQgLTM0dC0xNCAtMzR0LTM0IC0xNHQtMzQgMTRsLTI5NSAyOTRxLTE0IDE0IC0xNCAzNC41dDE0IDM0LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQiIgaG9yaXotYWR2LXg9Ijg4MSIgZD0iTTczNCAzMTFxLTE0IC0yNyAtNDIgLTUwcS0xMiAtMzAgLTMxLjUgLTU4dC01NC41IC02MHQtOTIuNSAtNTEuNXQtMTI5LjUgLTE5LjVxLTc3IDAgLTE0My41IDIxdC0xMDUuNSA1MXQtNjcgNjB0LTM5IDUxbC0xMSAyMXE1IC0zIDE0LjUgLTYuNXQzOC41IC0xMS41dDU4IC0xMnQ3MCAtMC41dDc4IDE3LjVxLTY0IDI3IC05NiA5MXEtMjEgNDMgLTggNTRxNyA3IDI1IC0xMHE1MyAtNTAgMjEyIC00MXE3IDggMjEgMjZ2NXEwIDY3IDQ3IDExNCB0MTE0IDQ3cTY0IDAgMTEwIC00My41dDUxIC0xMDYuNWwxMDIgLTQ5ek02MjYgNDY5cS0xOSAwIC0zMiAtMTMuNXQtMTMgLTMyLjV0MTMgLTMydDMyIC0xM3QzMi41IDEzdDEzLjUgMzJ0LTEzIDMyLjV0LTMzIDEzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQyIgaG9yaXotYWR2LXg9IjkxMyIgZD0iTTc3MSAzMTdxNDYgLTE4IDc0IC01OS41dDI4IC05Mi41cTAgLTY4IC00OC41IC0xMTYuNXQtMTE2LjUgLTQ4LjVxLTIgMCAtNSAwLjV0LTQgMC41aC00OTRoLTFoLTJxLTY5IDEgLTExNy41IDUwdC00OC41IDExOXEwIDQ1IDIyLjUgODMuNXQ2MC41IDYwLjVxLTYgMTYgLTYgMzVxMCA0NyAzNCA4MXQ4MSAzNHEzOCAwIDcxIC0yNXEzMSA2NCA5MSAxMDN0MTMzIDM5cTEwMyAwIDE3NiAtNzIuNXQ3MyAtMTc2LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkQiIGhvcml6LWFkdi14PSI5MTciIGQ9Ik00NTkgNjk4cTE3MyAwIDI5NS41IC0xMjN0MTIyLjUgLTI5NnQtMTIyLjUgLTI5NS41dC0yOTUuNSAtMTIyLjV0LTI5NiAxMjIuNXQtMTIzIDI5NS41dDEyMyAyOTZ0Mjk2IDEyM3pNNTc0IDI1MnEtMTEgMTIgLTExIDI4dDExIDI4bDEwOSAxMDhxMTEgMTIgMTEgMjguNXQtMTEgMjcuNWwtMzEgMzFxLTEyIDExIC0yOC41IDExdC0yNy41IC0xMWwtMTA4IC0xMDlxLTEyIC0xMSAtMjguNSAtMTF0LTI3LjUgMTFsLTEwOSAxMDkgcS0xMSAxMSAtMjcuNSAxMXQtMjcuNSAtMTFsLTMxIC0zMXEtMTEgLTExIC0xMSAtMjcuNXQxMSAtMjguNWwxMDkgLTEwOHExMSAtMTIgMTEgLTI4dC0xMSAtMjhsLTEwOSAtMTA4cS0xMSAtMTIgLTExIC0yOC41dDExIC0yNy41bDMxIC0zMXExMSAtMTEgMjcuNSAtMTF0MjcuNSAxMWwxMDkgMTA5cTExIDExIDI3LjUgMTF0MjguNSAtMTFsMTA4IC0xMDlxMTEgLTExIDI3LjUgLTExdDI4LjUgMTFsMzEgMzFxMTEgMTEgMTEgMjcuNXQtMTEgMjguNXogIiAvPgo8Z2x5cGggdW5pY29kZT0iRSIgaG9yaXotYWR2LXg9Ijg5NSIgZD0iTTQ0OCA1MzFxNjMgMCAxMjkuNSAtMjMuNXQxMTUuNSAtNTd0ODkuNSAtNjd0NjEuNSAtNTcuNWwyMSAtMjN2LThsLTIyIC0yNC41dC01OS41IC01NC41dC05MiAtNjl0LTExNCAtNTQuNXQtMTMwLjUgLTI0LjV0LTEyOS41IDIzLjV0LTExNS41IDU3dC04OS41IDY3dC02MS41IDU2LjVsLTIxIDI0djlsMjIgMjQuNXQ1OS41IDU0LjV0OTIgNjguNXQxMTQgNTR0MTMwLjUgMjQuNXpNNDQ2IDE1OHE1OCAwIDk4LjUgNDAuNXQ0MC41IDk4LjUgcTAgNTcgLTQwLjUgOTcuNXQtOTguNSA0MC41cS01NyAwIC05Ny41IC00MC41dC00MC41IC05Ny41cTAgLTU4IDQwLjUgLTk4LjV0OTcuNSAtNDAuNXpNNDQ2IDM2MXEyNiAwIDQ1IC0xOXQxOSAtNDV0LTE5IC00NC41dC00NSAtMTguNXQtNDQuNSAxOC41dC0xOC41IDQ0LjV0MTguNSA0NXQ0NC41IDE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IkYiIGhvcml6LWFkdi14PSI3MDQiIGQ9Ik0yMjQgNzAwaDQyMnYtODE4aC01OTN2NjQ2bDE3MSAxNzF2MXpNNTc4IC01MHY2ODJoLTI4NXYtMTcyaC0xNzJ2LTUxMGg0NTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iRyIgZD0iTTQ2MCA2OThxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTczOCA0MDFsLTEgLTNxLTEgLTMgLTEgLTUuNXQyIC0yLjVxMCAtMiAzIC02dDMgLTh2LTExcTEgLTIgNSAtM3ExIC00IDYgLTV0NiAzcS0zIDAgLTIuNSA0LjV0LTAuNSA0LjVxMCAyIC0xIDNxLTIgMiAtMiAzaDdxMCAyIC0yIDV0LTIgNHEtMSAwIC0yLjUgLTF0LTIgLTF0LTAuNSAyIHQtNCA2bC0yIDdxMyAwIDYgMXEtMSAwIDQgMnEtMSAxIC0yIDRxLTIgNCAtNyAycS0yIDAgLTUgLTIuNXQtNSAtMi41ek03MzUgODFxNjMgOTAgNjMgMTk3cTAgMTkgLTEgMjhxLTkgMCAtMTMgMnEtNCAwIC0xNC41IDQuNXQtMTYuNSAyLjVxMCAxIC0xIDFxMiAzIC01IDExcS01IDQgLTcgMHEtMiAtMyA1IC0xMHEwIC0yIDIgLTZxMiAtMSAxIC0zdC0xIC0zcTQgMCA1IDdxMCAtMSAxIC0xcS0yIC0zIDEgLTZ2LTVxMTAgMCAxNCAxMCBxMSAwIDEgLTJ0MSAtM3EzIC0zIDIgLTV0MiAtMnEyIC0xIDIgMXYycTQgLTIgNCAtNnQtNCAtNnEwIC0xIC0xIC0zdC0xIC00cTAgLTYgLTQgLThsLTQgLTJxLTQgLTMgLTggLTUuNXQtNCAtMy41cS0xMiAwIC0xNSAtN3EtNyAwIC0xMSAtNHEtNiAwIC04LjUgNnQtNC41IDZsLTIgNXExIDAgLTEuNSA2bC01LjUgMTN0LTMgOWwtNSAxMHEtMiAxIC03IDEycS04IDQgLTEwIDEzcTEwIDAgMTAgNHEtMSAwIC0yIDFxLTIgMiAxIDJsMyA5IHEwIDEgMSA1LjV0MSA2LjVxLTIgMCAtOCAtMnEwIC0xIC0xLjUgLTAuNXQtMy41IDAuNWwtMyAxcTAgMSAtNi41IDB0LTguNSAycS0yIDIgLTQgMTRxLTEgMyAtOCAzcS0zIDEgLTMuNSAtMXQwLjUgLTVsMSAtNHEyIDAgLTIgLTdxLTEgLTEgLTEgLTJxLTQgMSAtNiA2dC00IDZxLTEgNCAtMyA0cTAgMTAgLTEgMTBsLTMgMXEtNCAyIC01IDNxLTIgMCAtNS41IDMuNXQtNi41IDUuNXQtNCAwbDMgLTZxMiAwIDUgLTQuNXQ3IC0zLjV2LTUgcTMgMSA0LjUgLTEuNXQyLjUgLTIuNXEwIC0xIC0zIDBxLTQgMiAtMyAtMXEyIC02IC00IC05cTAgMTIgLTMgMTJxLTIgMyAtNyA1dC02IDRxLTEgMCAtMy41IDMuNXQtNC41IDQuNXEtMiAtMiAtNSAtMnEtMSAtMiAtNC41IC0yLjV0LTcuNSAwLjVsLTMgMXEtNyAtMTggLTggLTIwcS0xIC0zIC0zIC01dC0zIC01cTAgLTEgLTcuNSAtMS41dC03LjUgLTEuNXEtMTEgNCAtMTEgMTN2NXQxIDl0MSA2bDIgLTJoMy41aDQuNXQzLjUgMXQxLjUgMiBxNCAwIDMgLTRxOSAtMyA5IDNxLTIgMCAtMiAycTMgNCAyIDd0LTQgNnQtMyA0bC00IDRxOSAtNiAxMSAtMXEwIDEgLTEgM3YxcTIgLTIgMy41IC0yLjV0Mi41IDEuNXEyIDEgMyAzdjZxMyAtNCA0LjUgMHQyLjUgNXEwIC0zIDMgMHEyIDIgMyAycTEgMiA1IDIuNXQ1IDMuNXEtMyAxIC0zIDEycTIgMCA0LjUgMS41dDMuNSAxLjV0MiAtMnEwIC02IDEgLTZxNCAyIDQgNXEtMiAwIC01IDEwcS0zIDAgLTUgLTJxLTMgMCAtNy41IDF0LTYuNSAxIHEtNyA3IC02IDdxLTIgNCAyIDVoMnEwIDIgMTEuNSA1dDEyLjUgOHEtNiAwIDggMTNxMTAgOCAxNCA4cTEgMCA5LjUgMmwxNC41IDMuNXQ4IC0wLjVxMjIgMCAyMiAtMnExIDAgMy41IC0xdDQgLTEuNXQzLjUgMC41cTMgMiAxMSAtMnQ4IC04cS0zIDAgLTEyIC0xdC0xNCAtMXYtMnEyIDAgNS41IC00LjV0Mi41IC02LjVxMyAwIDYgMnQ0IDJxMCAtMiAxIC0zcTMgLTIgNCAzbC0xIDRxMSAyIDQuNSAyLjV0NC41IDMuNXEtNDcgNTYgLTExNC41IDg4IHQtMTQzLjUgMzJxLTEzNCAwIC0yMzEgLTkxcTEgLTEgNSAybDIgMXEwIC02IDEgLThsMyAtN3E4IDAgOSAtMmgtNXExIC02IC0zIC00cS0zIDEgLTQgMXEwIDEgLTMgMnQtNSAwdDAgLTVxMSAwIDIgLTF0MyAtMnEyIDAgNi41IC0xdDYuNSAtMnEyIDAgNSAwLjV0NCAwLjVxMiAxIDMgMnQtMSAycTEgMiAtNCA0cTAgMSAxMSAxcTIgMiAxLjUgMy41dDAuNSAzLjV0NCAydDQgM3E0IC0yIDUgLTZxMSAwIDMgLTNxOSAtMTAgOSAtM3E2IC0xIDYgLTExIHE3IDEgNyAxMXEtMSAwIC0xIDNoNHEyIC0xIDIgMXExIDAgMSAtMmg4di0xMXEwIC0yIC0yIC0zdC0zIC0xbC0yIC0xcS0zIC00IC0xLjUgLTV0Ni41IC0zLjV0NiAtMy41bC04IDFxLTEgMCAtNC41IC0wLjV0LTYgLTF0LTQuNSAwLjVxNSAwIDcgMTFxLTggMiAtMTEgLTVxLTEgLTQgLTQgLTMuNXQtNCAtMS41bC0yIC0xcS0zIC0xIC01IC0xLjV0LTIgMC41cS03IC0yIC03IC0xN3ExMSAtOCAxMSAtMTJxNCAtMSA5LjUgLTJ0OC41IC0xIHExIC0zIDQgLTNxMCAtNCA5IC00cTAgNiA2IC00cTEgLTIgMSAtM3EtMSAwIDAgLTIuNXQzIC01LjVxLTIgMCAtMSAtMXEyIC0yIDUuNSAtMXQzLjUgM3EtMiAwIC0yIDZxLTYgNiAxIDhxMCAtNCA2IDFxMiAyIC0xIDNxMiA5IDAgMTJxLTEgMSAtMi41IDF0LTIuNSAycTQgMSAxIDE0aDVxMiAwIDUuNSAtMS41dDUuNSAtMXQzIDMuNXEzIC0yIDQuNSAtNXQ0LjUgMXEwIC0xIDQgLTUuNXQ1IC00LjVxMCAtMyAyIC0zbC0xIC0ycTcgMCA3IDEgcTYgMCA2IDhxMSAwIDIuNSAtM2wzIC02dDIuNSAtM2wyLjUgLTIuNWwzIC0zdDIuNSAtM3QxIC0yLjVxMiAtMiAyIC01cTEgMCAyIDJxMyAzIDMgLTFxMiAwIDQuNSAtMi41dDIuNSAtMy41cS0yIDAgLTEuNSAtMnQtMC41IC0ycTAgLTEgLTExIC0xcS0xIC01IC02IC02dC0xMSAwLjV0LTExIC0wLjVxLTQgLTIgLTkuNSAtOC41dC01LjUgLTEwLjVxMyAwIDcuNSAzLjV0Ni41IDQuNXEyIDAgMTAgNHEwIC0xIDEgLTF2LTFxLTYgMCAtMiAtNyBxMSAtMSAxIC0ycTMgLTUgOCAtNXEwIC0xIC0yLjUgLTF0LTIuNSAtMmwtNSAtM2gtNmwxIDFsMSAxaDN2NHEtMyAwIC02IC0xLjV0LTUgLTEuNXEtNCAtNCAtNiAtNHEtMiAtMTAgLTYgLTEybC0yIC0xbC00IC0ybC0yIC0ybC0yIC0ycS0xIC0yIC0yIC01cS0zIC03IC0zIC05cS0xIDAgLTMuNSAtNS41dC02LjUgLTUuNXEtMSAtMiAtNS41IC02dC00LjUgLTEwcTEgLTEgMS41IC00dDEuNSAtNi41dDEgLTQuNXEwIC04IC00IC04bC0yIDN0LTEgMyBxMCA0IC00IDEycTAgMiAtNC41IDEuNXQtNS41IC0wLjVxLTEgMyAtMTMgM3EwIC0xIDEgLTJ0MSAtM3EtNiAtMiAtNyAtMnEtMiAwIC00LjUgMi41dC01LjUgMS41cS0xNCAtMiAtMTQgLTE2cS0xIDAgLTEgLTguNXQxIC04LjVxMCAtMiAyIC02dDIgLTVxMiAwIDYgLTR0NSAtNHExIC00IDUgLTRsMiAxbDIgNHEtMyAxIC0xLjUgMy41dDMuNSAzLjVxMCAtMiA2IDJsNiAybDIgMnExIC0zIC0xIC00cS0yIDAgLTMgLTNsLTEgLTIgcS0xIC0yIC0yIC01dC0xIC01dDEgLTQuNXQwIC00LjVoMTN2M3EzIDAgMi41IC02LjV0MS41IC02LjVxMCAtMiAxIC02dDEgLTVxNSAtMyA0IC04cTEyIDAgMTIgM3E3IDAgNSAtN3E1IDAgNiAzdDEgNS41dDIgMi41cTAgMyAyIDFsNiAzbDMgMnEyIC0xIDIgLTJxNSAwIDkgNHEyIDAgNCAtNXQ2IC01cTEyIDAgMTMgMXEzIC0yIDMgLTNxMSAwIDIgLTFsMSAtMWgxbDQgLTRxMCAtMiAyLjUgLTN0Mi41IC0ybDEgLTFsMyAtMmw5IC0zcTEgMyA0IDAgcTEgLTEgMiAtMWwyIC0ycTEgLTEgNCAtN3EyIC0yIDQgLTExcS0xIDAgLTEgLThsNCAtMXEyIDAgMiAycTIgMCA1IC0ydDQgLTJxLTIgLTIgMSAtMy41dDMgMi41cTMgMCAzIC0xMXEyIDAgNC41IDEuNXQ0LjUgMS41cTYgMCA2IDFxOCAtMiAxMyAtOHE1IC01IDUuNSAtMTR0LTQuNSAtMTRsLTggLTEwcTAgLTEyIC0xIC0xMnEwIC0xNCAtMyAtMTRxMCAtMyAtMi41IC03dC0zLjUgLTZxLTEgLTEgLTYuNSAtNC41dC02LjUgLTUuNSBxLTEgMCAtNCAtMXQtNCAtMWwtMiAtM3EtMyAtMyAtMiAtM3EwIC0xIC0wLjUgLTcuNXQtMS41IC04LjVxLTQgLTIgLTMgLTRxLTEgMCAtMS41IC0xdC0zLjUgLTFxLTIgMCAtNSAtMi41dC0zIC01LjVxLTIgLTggLTYgLTExbC0zIC0ycS00IC0yIC00IC00di04cS02IDAgLTggLTRxLTQgMCAtMTEgLTRxMCAtNCAtMiAtNHEwIC00IC0zIC0zdC00IDBxMiAwIDIgLTZxMCAtMSAtNiAtOWwtMSAtMnEtMiAtMyAtMyAtM3EwIC0xIC0wLjUgLTQgdC0wLjUgLTV2LTNsMiAycTAgMSAyIC0xcS0xIC0yIC0zIC00dC0zIC01cS01IDAgLTUgLThxMCAtMiAxIC0ycTAgLTEgMiAtNWwtMjcgOXEwIDM3IDQgMzdxMCA5IDIgOXYxNHEtMSAyIDEuNSA2LjV0Mi41IDYuNXEzIDEgMy41IDEwdDAuNSAxN3QyIDhxMCA0IDEuNSAyMC41dC0wLjUgMjAuNWwtNyA4cS01IDAgLTkgNi41dC00IDEyLjVxLTMgOSAtMyAxMHExIDAgLTIgNC41dC02IDkuNWwtNCA1cS0zIDMgLTMgNC41dDIgNXQyIDYuNSBxLTQgMiAtMiAxMC41dDUgOC41cTAgMyAzIDRxMSAtMyAzIC0ycTMgMyAwIDV2MTNxMCAxMCAtNSAxMHEtMiAwIC00IC01cS0xIDEgLTUgMS41dC03IDJ0LTMgNC41cTIgNiAtOCAxMXExIDQgLTUuNSA4LjV0LTEwLjUgNC41cTAgMSAtMiAxLjV0LTIgMS41cS0yIDAgLTUgM3QtNiAzcS00IDAgLTEwIDIuNXQtOSAyLjVxLTEgMiAtNi41IDN0LTYuNSAzcS03IDAgLTcgMTNxMCAxOCAtOSAxOHEwIDMgLTQgNi41dC02IDMuNXEtMyA3IC01IDcgcTAgNCAtNiA5cS0zIDIgLTMgMHEtMSAtMiAyLjUgLTUuNXQzLjUgLTUuNXExIDAgOCAtMTNxNiAtMTAgMyAtMTFxLTQgLTEgLTEwIDhxLTIgNCAtMiA2cS0yIDEgLTQuNSA2LjV0LTIuNSA3LjVxLTEgMSAtMi41IDR0LTIuNSA2bC0xIDJxMCAxMCAtMTEgMTBsLTcgOXEwIDEwIC04IDEzcTAgMiAtMSA5dDAgMTBxMCAyMyAtMTAgMzFxLTMzIC02OCAtMzMgLTE0NHEwIC0xNDAgOTkuNSAtMjM5dDIzOS41IC05OXE4MiAwIDE1MyAzN3QxMTggMTAwIHEtNyAtMiAtOSA5cS0zIDE3IDIgMzJxNSAtMiA2IDBxLTQgMSAtMiA2cTEwIC03IDEwIDJsLTIgMnEwIDIgMSAzdDEuNSAwLjV0MC41IC0yLjVxMyAwIDMuNSA0LjV0MS41IDUuNXEwIC0xMSAzIC0xMnEyIC0yIC0wLjUgLTQuNXQtMi41IC0zLjVxLTIgLTEgLTIgLTZoLTNxMCAtMyAtMSAtOC41dC0xIC03LjVxLTIgMCAtMiAtMTZ6TTY2NiAzODNxMiAtMSAyIC00cTI1IDAgMjUgM3ExIC0yIDIgLTN0MiAycTEgMCA0LjUgLTN0Ny41IC0ybDcgNCBsLTIgMXEwIDYgLTUgOS41dC02IDQuNXEtMSAwIC0zLjUgMXQtNC41IDFxLTMgMiAtNiAtMXEtMyAtMiAtMyAwcS0xIDIgLTMgMnEwIDggLTkgN3EtMSAtMyAtMy41IC03dC0zLjUgLTcuNXQtMSAtNy41ek01MTggNDkxcTAgLTUgLTEgLTVxLTUgLTMgLTEwIC0zaC0xMXEtMiAwIC0xMCAycTAgMSAxIDJxMyA0IC0xIDRxNyAzIDggM3YtMXYtNHEwIC0xIDIgLTAuNXQ0LjUgMXQzLjUgMS41cTMgMCA2IDFxMSAxIDEuNSAwLjV0MC41IC0zLjV6IE01NTEgNDQ0cTAgMiAtMSA0dC0xIDRxMCAzIDMgMi41dDQgMy41cTMgLTEgMCAtM3YtNHEyIDAgNCAydDMgMnEtMiAtNyAtMSAtOHE1IC01IDQgLTZxNyAwIDUgLTExcTMgMCAzIDNxMiAtMSAyIC0yLjV0LTIgLTEuNXEtMyAtNSAtMTUgLTVxMCA2IC00IDNxLTMgLTEgLTIgNHExIDIgMSAzcS0yIDEgNSAycS0xIDggLTggOHpNNTM2IDQyOHEtMiAyIDAgOHEtMyAxIDEgMmw1IDJxLTQgMCAtMiA0aDJxMSAtMiAyIC0xaDRxMSAtMSAwIC0zIHEtMyAtMTIgLTEyIC0xMnpNNTUxIDQyMnExIDAgMSAxaDNxMCAtMiAtMS41IC0ydC0yLjUgMXpNMzkyIDQwMXExIDEgNCAzcTAgLTMgLTQgLTN6TTU5OCAzODhxMiAwIC0xIC02cS0xIDIgLTIgNXEzIDAgMyAxek01OTggMzgwcTIgMCAxLjUgLTQuNXQtNS41IC0zLjVxMCA3IDIgN2wxIC0ycTEgMSAxIDN6TTYyMCAzNjVxMCAtNCAtMSAtNC41dC00LjUgMS41dC01LjUgMmg1cTEgLTEgNiAxek03MjggMjQwcTYgMCA2IDFxMTAgMCAxNiAzIHEwIC00IC0yLjUgLTkuNXQtMS41IC05LjVxLTMgMCAtMyAtNWwtMiAtMnEtMiAtMyAtNCAtNHEwIC0yIC05IC0xMXEtMSAtMiAtNS41IC02LjV0LTUuNSAtNi41cS0xNCAtMTQgLTEwIC0xNHEwIC0yNCAyIC0yNGwxIC02cTEgLTYgMSAtMTB0LTEgLTVxMCAtMyAtMiAtNy41dC0yIC02LjVsLTIgLTFsLTMgLTNxLTIgMCAtNCAtMy41dC0zIC0zLjVxMCAtNCAtMSAtMTF0LTEgLTExbC0xIC00bC0yIC02bC0xIC00cS0xNSAtOCAtMTUgLTE3IHEtNyAtMTAgLTggLTEycS0xOSAwIC0xOSAtNGgtMTVxMCAyIC0xIDZ0LTEgN3EtMSAwIC0yIDMuNXQtMiAzLjVxMCAxIC0yLjUgNi41dC00LjUgMTF0LTEgNS41cTAgOSAtMyA5cTAgNCAtMi41IDExdC0yLjUgMTBxLTEgMCAtMiA0dC0xLjUgNy41dDAuNSA0LjVxMCA0IDQgMjJxMSA5IC0zIDIzcS00IDAgLTQgNnEtNiA0IC02IDE1cTYgNiAzIDIwcS0zIDEgLTE0IDFxLTEgMyAtNy41IDR0LTE2LjUgMGwtMTAgLTFxLTEgLTIgLTQuNSAtMS41IHQtOC41IDIuNXQtNSAzcS0zIDAgLTcuNSA0LjV0LTQuNSA4LjVxLTQgMSAtOCA5LjV0LTQgMTIuNXEtNCA0IDAgOXEwIDMgLTMgMTJxMCAyIDEuNSA0dDEuNSA0cTAgMTEgNCAxOXEwIDEgMiA0dDIgNHEyIDMgMyAzcTIgMSAzIDNxMiAxIDUgNXEyIDMgMyA0cTMgMSAwIDRxNCAwIDQgMTBxMiAzIDYgM2wxIDFxNCA1IDUgNXEyIDMgNiAzcTEgLTEgMi41IC0xdDQuNSAxbDMgMXE1IDcgMTQgN3ExIDIgNSAxLjV0MTAuNSAtMS41dDcuNSAtMXYyIHEzIC0xIDcgLTEwdDQgLTEyaDhxMCAtNCAxMCAtNHExNiAwIDE2IDZxNiAwIDYgLTZoNnQ4LjUgLTAuNXQ3LjUgLTJ0MiAtMi41cTIgMCA0IC0zdDMgLTNxMCAtMyAyLjUgLTguNXQ0LjUgLTUuNXEwIC04IDUgLTExcTYgLTE0IDEyIC0xOHEtMSAtMiAxLjUgLTZ0Mi41IC01cTEgLTYgMyAtN3EwIC00IDUgLTExLjV0OCAtNy41cTAgLTEgLTEgLTJ0MiAtMnpNMzEyIDI5NnEwIC0zIDMgMHEwIC00IC00IC0ycS0yIDAgLTEgM3ExIDAgMiAtMXogTTMyOCAyOTdxNCAtMSA3LjUgLTMuNXQ1LjUgLTIuNXEzIC0zIDMuNSAtNHQtMS41IC0ycS04IC0yIC0xMiA1cS01IDAgLTEwIDVxNiAwIDcgMnpNMzYyIDI4M2wyIC0xcTIgLTIgMyAtNGwxIC0xaC0xM3EtMSAtMSAtNC41IC0xdC00LjUgMmg3bC0yIDRxMSAwIDUgLTF0NiAtMXYzek0zMzEgMjc4cTQgMCA0IC0zcS01IDAgLTQgM3pNMzM2IDI3NWwyIDNxMSAwIDEgLTJxLTEgLTEgLTMgLTF6TTM3NiAyNzhxMyAwIDMgLTFxLTQgMiAtMyAxeiBNMzczIDI3OGwyIC0xcS0xIDAgLTEgLTAuNXQtMSAtMC41djJ6TTM1NyAyNTBxMSAxIDEgMmwxIC0xcTAgLTEgLTIgLTF6TTc0MCAxMzRxMCAyIDIgM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJIIiBob3Jpei1hZHYteD0iODY1IiBkPSJNNjg2IDI3OXYtMzc4aC0xNzd2MjM1aC0xNTJ2LTIzNWgtMTgzdjM3OGgtMTUzbDQxMiA0MTFsNDExIC00MTFoLTE1OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJJIiBob3Jpei1hZHYteD0iOTMyIiBkPSJNODg0IDIzNHYtMzE0aC04MzZ2MzE0bDE1NyA0MThoNTIyek01ODIgMjM0aDE5OGwtMTA1IDMyMmwtNDE4IDFsLTEwNCAtMzIzaDE5N2w0OSAtOTZoMTMweiIgLz4KPGdseXBoIHVuaWNvZGU9IkoiIGhvcml6LWFkdi14PSI4NjIiIGQ9Ik04NDggNTM0bC0xMjIgLTEyMmw4MiAtODJsLTM3MCAtNDJsNDMgMzY5bDgxIC04MWwxMjIgMTIyek0xMzYgMTQ4bC04MiA4MmwzNjkgNDNsLTQzIC0zNzBsLTgxIDgybC0xMjIgLTEyMmwtMTYzIDE2M3pNMTgyIDM4OGwxOTcgLTY4bC0yMjEgMTh6TTM5MyA0MTd2LTg1bC0yOCA4MHpNNjgyIDE3NGwtMTk3IDY5bDIyMSAtMTl6TTQ3MSAxNDZ2ODVsMjggLTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IksiIGhvcml6LWFkdi14PSI4NjkiIGQ9Ik01MzAgMzUxbDMxOCAtMzE4di0xNjh2MGgtMTY4aC0xdjEyOWgtMTI4djEyOGgtMTI4bC02MSA2MXEtNDAgLTE0IC04MyAtMTRxLTEwOSAwIC0xODcgNzcuNXQtNzggMTg3LjV0NzggMTg3LjV0MTg3IDc3LjV0MTg3IC03Ny41dDc4IC0xODcuNXEwIC00MyAtMTQgLTgzek0yMjQgNDAycTM3IDAgNjMgMjZ0MjYgNjN0LTI2IDYzdC02MyAyNnQtNjMuNSAtMjZ0LTI2LjUgLTYzdDI2LjUgLTYzdDYzLjUgLTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkwiIGQ9Ik00NjAgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjN0LTI5NyAxMjN0LTEyMyAyOTd0MTIzIDI5N3QyOTcgMTIzek00NjAgLTM0cTEzMCAwIDIyMi41IDkydDkyLjUgMjIzdC05Mi41IDIyM3QtMjIyLjUgOTJ0LTIyMi41IC05MnQtOTIuNSAtMjIzdDkyLjUgLTIyM3QyMjIuNSAtOTJ6TTQ2NCA1MjlxMTAzIDAgMTc2LjUgLTczLjV0NzMuNSAtMTc3LjV0LTczIC0xNzcuNXQtMTc3IC03My41IHQtMTc3LjUgNzMuNXQtNzMuNSAxNzcuNXQ3My41IDE3Ny41dDE3Ny41IDczLjV6TTM5NiAzNTlxMzMgMzMgMTAyIDcwbC0zMCA0MHEtNCAxIC0xMiAxcS02MSAwIC0xMTYuNSAtNTV0LTU1LjUgLTExNnEwIC02IDEgLTlsNDIgLTMycTM4IDcwIDY5IDEwMXpNNTQwIDE1NXExNiAwIDI4IDEydDEyIDI5dC0xMS41IDI5dC0yOC41IDEydC0yOSAtMTJ0LTEyIC0yOXQxMiAtMjl0MjkgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9Ik0iIGhvcml6LWFkdi14PSI5NTIiIGQ9Ik04OTIgMzJsLTI3MyAyNjJsMjczIDIzNHEzIC04IDMgLTE1di00NjVxMCAtOCAtMyAtMTZ6TTQ3NiAyMzhsLTcyIDU4bC0zNiAzMGwtMjc1IDIzNXExMCAyIDE0IDJoNzM4cTQgMCAxNCAtMmwtMjc1IC0yMzVsLTM2IC0zMHpNODQ1IC0yaC03MzhxLTUgMCAtMTMgMmwyNzYgMjY1bDEwNiAtODdsMTA3IDg3bDI3NSAtMjY1cS04IC0yIC0xMyAtMnpNNjAgNTI4bDI3MyAtMjM0bC0yNzMgLTI2MnEtMyA4IC0zIDE2djQ2NXEwIDcgMyAxNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJOIiBob3Jpei1hZHYteD0iOTQzIiBkPSJNODU3IDY3MHExNyAwIDIzIC02dDYgLTIzdi02NTVxMCAtMTcgLTYgLTIzdC0yMyAtNmgtMTA4aC01NDZoLTcxcS0yOCAwIC01My41IDI2LjV0LTI1LjUgNTIuNXY0ODFxMCAxNyA2IDIzdDIzIDZoOTJ2OTVxMCAxNyA2IDIzdDIzIDZoNjU0ek04MzcgN3Y2MTNoLTYxNHYtNzR2LTUwdi00NDVoLTQ5djQ0NWgtNzF2LTQ2MHEwIC03IDExIC0xOHQxOCAtMTFoNzFoNTQ2aDg4ek01MTEgNTU2di0yMjNoLTIyM3YyMjNoMjIzek03NjUgNTI1di0zNyBoLTE4NXYzN2gxODV6TTc2NSA0MTF2LTM3aC0xODV2MzdoMTg1ek03NjUgMjU5di0zN2gtNDc3djM3aDQ3N3pNNzY1IDE0NHYtMzdoLTQ3N3YzN2g0Nzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjkzMCIgZD0iTTg4MiA1MTB2LTUxMWgtNzB2NTExaDcwek02OTUgNTEwaDQ3di01MTFoLTU1NnY1MTFoNTJxNjggMTMzIDEyMiAxMzNoMjA3cTMyIDAgNjYuNSAtNDAuNXQ2MS41IC05Mi41ek01MTQgNTIycTEzIDAgMjIgOXQ5IDIydC05IDIxLjV0LTIyIDguNWgtMTA0cS0xMyAwIC0yMS41IC04LjV0LTguNSAtMjEuNXQ4LjUgLTIydDIxLjUgLTloMTA0ek00OCA1MTBoNjl2LTUxMWgtNjl2NTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IlAiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik03MTkgNDk2aDE0M3YtNDk1aC02NTl2MWwtMTc3IDQ2MWw2MTUgMjM3ek02NjAgNDk2bC01MSAxMzNsLTM0NSAtMTMzaDM5NnpNOTcgNDMybDEwNiAtMjc3djMxOHpNMjU4IDU2aDU0OXYzODVoLTU0OXYtMzg1ek02OTkgMjkybDU4IC0xOTBoLTQzMmwxMDMgMTEybDY2IC00MmwxMjMgMTc3bDM4IC03MXpNMzc5IDI3NXEtMjIgMCAtMzcgMTV0LTE1IDM3dDE1IDM3dDM3IDE1dDM3IC0xNXQxNSAtMzd0LTE1IC0zN3QtMzcgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IlEiIGhvcml6LWFkdi14PSI4NDQiIGQ9Ik02ODEgNTIxcTYxIC01NCA5NS41IC0xMjkuNXQzNC41IC0xNjAuNXEwIC0xNjEgLTExNCAtMjc1LjV0LTI3NSAtMTE0LjV0LTI3NSAxMTQuNXQtMTE0IDI3NS41cTAgODUgMzUgMTYxdDk2IDEzMHEyMCAxNyA0Ni41IDE1LjV0NDMuNSAtMjEuNXExNyAtMTkgMTUuNSAtNDUuNXQtMjEuNSAtNDMuNXEtODggLTc4IC04OCAtMTk2cTAgLTEwOSA3Ni41IC0xODZ0MTg1LjUgLTc3dDE4NS41IDc3dDc3LjUgMTg2cTAgMTE3IC04OCAxOTUgcS0yMCAxOCAtMjEuNSA0NHQxNi41IDQ2cTE3IDE5IDQzLjUgMjAuNXQ0NS41IC0xNS41ek00MjMgMTY2cS0yNiAwIC00NC41IDE5dC0xOC41IDQ1djQwN3EwIDI2IDE4LjUgNDV0NDQuNSAxOXQ0NSAtMTl0MTkgLTQ1di00MDdxMCAtMjYgLTE5IC00NXQtNDUgLTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik02NjggMTA1djg3bDEwNCA3MHYtMjYyaC03MzF2NTIzaDMyN3EtMiAtMSAtNi41IC0zdC02LjUgLTNxLTg3IC0zOSAtMTQxIC05OWgtNjl2LTMxM2g1MjN6TTg3NyA0MTdsLTMxMyAtMjExdjEzN3EtOTAgMCAtMTQxIC03cS00OSAtNiAtODkuNSAtMjF0LTYzLjUgLTMzLjV0LTM5IC0zNS41dC0yMiAtMjhsLTYgLTEycTAgNTQgMjAgMTAwdDUxLjUgNzUuNXQ3MC41IDUyLjV0NzcuNSAzNXQ3MCAyMHQ1MS41IDEwbDIwIDJ2MTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSI4NTMiIGQ9Ik04MjYgMzg5cTEwIC0xMSA4IC0yNHEwIC0xMyAtMTAgLTI4cS0zIC00IC0xNiAtMTRsLTE4NCAtMTIxcS0yIC0xIC01LjUgLTd0LTIuNSAtMTB2LTRsODEgLTIzN3E0IC0xMSA0IC0yM3EwIC0xNSAtNyAtMjVxLTExIC0xNiAtMzAgLTE2aC0xcS0xNiAxIC0zNiAxNWwtMTkwIDE1NXEtMyAzIC0xMCAzdC05IC0zbC0xODEgLTE1NHEtMTggLTE0IC0zNiAtMTVxLTIxIC0yIC0zMSAxNXEtOCAxMSAtOCAyNnEwIDcgNCAyMWw3MiAyMzZ2NCBxMSA1IC0yIDExdC02IDdsLTE4NSAxMjJxLTEwIDcgLTE2IDE0cS0xMSAxMyAtMTEgMjhxMCAxNCA4IDI0cTkgOSAxNiAxMnExMiA1IDI3IDVoMjMwcTYgMCAxMSA0cTcgNSA3IDEwbDY3IDIzOXE0IDE0IDkgMjFxMTMgMTggMzMgMTlxMjAgLTEgMzMgLTE5cTMgLTQgMTAgLTIxbDY2IC0yMzlxMCAtNSA3IC0xMHE1IC00IDExIC00aDIzMHE5IDAgMjAgLTNxMTQgLTQgMjMgLTE0eiIgLz4KPGdseXBoIHVuaWNvZGU9IlQiIGhvcml6LWFkdi14PSI4OTkiIGQ9Ik04MTcgMTg1bDYzIC02NGwtMTYyIC05MWwtOTIgLTE2M2wtNjMgNjRsMTQgMTQ4bC0xNjkgMTY5bC0yMjQgLTM3MWwtNjMgNjNsMTIwIDQ3NWwtMTc2IDE3NXEtMTkgMjAgLTE5IDQ2LjV0MTkgNDUuNXQ0NiAxOXQ0NiAtMTlsMTc2IC0xNzVsNDc1IDEyMGw2MyAtNjNsLTM3MSAtMjI1bDE2OCAtMTY4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSI4OTQiIGQ9Ik03NjAgMTU0cTQ2IC0yMCA3Mi41IC00NC41dDI5LjUgLTM4LjVsMyAtMTR2LTg2aC04MzZ2ODZxMCAyIDAuNSA2dDYgMTV0MTUuNSAyMnQzMS41IDI2dDUwLjUgMjhxMTIgNSA1NCAyOXQ4NyA0M3Q5NCAyOHEtMzMgMzQgLTcyIDEzNHEtMTEgMjggLTExIDEwMHEwIDcgLTEgMzF0LTAuNSA0MS41dDMuNSAyOS41cTMxIDExMSAxNTkgMTExcTEyNyAwIDE1OCAtMTExcTQgLTEyIDQuNSAtMjkuNXQtMSAtNDF0LTEuNSAtMzEuNSBxMCAtNzIgLTEwIC0xMDBxLTM4IC05NiAtNzIgLTEzNHE1MCAtOCA5NC41IC0yN3Q4NyAtNDMuNXQ1NC41IC0yOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IlYiIGhvcml6LWFkdi14PSI5NDkiIGQ9Ik02NTkgNDE2bDIzNSAxMTF2LTQ0OWwtMjM1IDExMXYxdi0xMDNxMCAtMTkgLTEzIC0zMnQtMzIgLTEzaC01MTBxLTE5IDAgLTMyIDEzdC0xMyAzMnY0MzNxMCAxOSAxMyAzMnQzMiAxM2g1MTBxMTkgMCAzMiAtMTN0MTMgLTMydi0xMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0iVyIgaG9yaXotYWR2LXg9Ijk1NCIgZD0iTTcwNCA1NHYxODFsOTIgOTN2LTI3NHEwIC01MSAtMzYgLTg3dC04NyAtMzZoLTQ5MnEtNTEgMCAtODcgMzZ0LTM2IDg3djQ5M3EwIDUxIDM2IDg3dDg3IDM2aDQ5MnExNyAwIDI0IC0ybC04OSAtOTBoLTQyN3EtMTMgMCAtMjIgLTl0LTkgLTIydi00OTNxMCAtMTMgOSAtMjJ0MjIgLTloNDkycTEzIDAgMjIgOXQ5IDIyek00MzEgMzE0bDM1NCAzNTRsMTMyIC0xMzJsLTM1NCAtMzU0djBsLTE5NSAtNjNsNjMgMTk1djB6TTU0NyAyMDggbC04OSA4OWwtNDMgLTEzMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iOTIxIiBkPSJNODY4IDU0MnYtNDIzaC02NnEtMTMgMjkgLTQwIDQ2LjV0LTYwIDE3LjV0LTU5LjUgLTE3LjV0LTQwLjUgLTQ2LjVoLTIyMHY0MjNoNDg2ek0yNDAgMTgzcS0zMyAwIC02MCAtMTcuNXQtNDAgLTQ2LjVoLTEwN3YxODBsMTExIDEyM2gxODR2LTI4NHEtMzMgNDUgLTg4IDQ1ek0xMDEgMjg4di01OGgxNjF2MTMyaC05OXpNMjQwIDE0NnEzMCAwIDUxLjUgLTIxdDIxLjUgLTUycTAgLTMwIC0yMS41IC01MS41dC01MS41IC0yMS41IHEtMzEgMCAtNTIgMjEuNXQtMjEgNTEuNXEwIDMxIDIxIDUydDUyIDIxek03MDIgMTQ2cTMxIDAgNTIgLTIxdDIxIC01MnEwIC0zMCAtMjEgLTUxLjV0LTUyIC0yMS41cS0zMCAwIC01MS41IDIxLjV0LTIxLjUgNTEuNXEwIDMxIDIxLjUgNTJ0NTEuNSAyMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iODYxIiBkPSJNNDI1IDQ4OGwtMTQ1IC00MDlsLTEyNiAxOTNsLTgxIC03NmwtMjIgLTIwbC00NiAzOWwxNjIgMTUxbDk2IC0xNDdsMTcxIDQ4M2wxNTcgLTYwNWwxMzEgNDEzbDExNiAtMzcxbC02MSAtMTZsLTU1IDE3OGwtMTM3IC00MzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9Ijg5NyIgZD0iTTQwMiA2MDd2LTM2OWgzNzFxMCAtMTUzIC0xMDggLTI2MXQtMjYxIC0xMDh0LTI2MSAxMDh0LTEwOCAyNjFxMCAxNTIgMTA3LjUgMjYwdDI1OS41IDEwOXpNNDk2IDcwMHExNTMgMCAyNjEuNSAtMTA4LjV0MTA4LjUgLTI2MS41aC0zNzF2MzcwaDF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWyIgaG9yaXotYWR2LXg9Ijg2MSIgZD0iTTQ0NSA2NzF2LTI3OGg0MDl2LTE4NWgtNDA5di0yNzdsLTQyNyAzNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iXCIgaG9yaXotYWR2LXg9Ijg1NCIgZD0iTTcxMCA1NzloODd2LTczOWgtNzQwdjczOWg4OXY0NnEwIDM1IDIwIDU0dDU2IDE5dDU2LjUgLTE5LjV0MjAuNSAtNTMuNXYtNDZoNTJ2NDZxMCAzNCAyMC41IDUzLjV0NTYuNSAxOS41dDU2IC0xOXQyMCAtNTR2LTQ2aDUydjQ2cTAgMzQgMjAuNSA1My41dDU2LjUgMTkuNXQ1Ni41IC0xOS41dDIwLjUgLTUzLjV2LTQ2ek01OTggNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41IHQtMjcuNSA3LjVxLTM1IDAgLTM1IC0zMnpNMzkyIDYyNXYtMTIzcTAgLTE3IDguNSAtMjQuNXQyNy41IC03LjVxMzUgMCAzNSAzMnYxMjNxMCAzMiAtMzUgMzJxLTE5IDAgLTI3LjUgLTcuNXQtOC41IC0yNC41ek0xODcgNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41dC0yNy41IDcuNXEtMzUgMCAtMzUgLTMyek03MzUgLTk5djUxNGgtNjE2di01MTRoNjE2ek00MjkgOTkgcTAgLTQ1IC0zNSAtNzB0LTkwIC0yNXEtMzYgMCAtNzMgMTRsNyA1MnEzNSAtMTQgNzMgLTE0cTI0IDAgMzggMTF0MTQgMjhxMCAyMiAtMTYuNSAzMi41dC01OS41IDEyLjV2NTJxNjMgNSA2MyAzOHEwIDI4IC00MiAyOHEtMjkgMCAtNjEgLTE1bC03IDUycTM0IDE1IDg0IDE1cTQ1IDAgNzEgLTE4dDI2IC00NnEwIC01MCAtNjUgLTcydi0xcTczIC0yMCA3MyAtNzR6TTUzNyAyMjlsLTUyIC0yMGwtNyA1Mmw5MSA0NGgzMXYtMjk2aC02M3YyMjB6ICIgLz4KPGdseXBoIHVuaWNvZGU9Il0iIGhvcml6LWFkdi14PSI4NjEiIGQ9Ik00MTUgLTY5djI3N2gtNDA4djE4NWg0MDh2Mjc4bDQyOCAtMzcweiIgLz4KPGdseXBoIHVuaWNvZGU9Il4iIGhvcml6LWFkdi14PSI3NzUiIGQ9Ik03NDkgNTcycTIyIC00NiAtMyAtMTMycS0yNCAtODUgLTUgLTIzNHEtOCAtMiAtMjEgLTR0LTQ5IC04dC02NiAtOHQtNjEgLTJ0LTQ2LjUgOXQtMTAuNSAyNnExNSA0OCAtNDggNDZxLTYxIC0yIC0xODIgLTQ4cS0zNyAtMTQgLTYzIC0zdjM5OXEyMiA2IDU4IDE1dDExMiAyNXQxMjYuNSAxNC41dDUwLjUgLTI0LjVxMCAtMyAtMiAtMTQuNXQtMy41IC0yM3QtMS41IC0yM3Q1IC0xOHQxNiAtNS41cTMwIDQgNzguNSA3dDgyLjUgNHogTTE0NSA2NTh2LTgxN2gtODV2ODE3cTAgMTcgMTIuNSAyOS41dDMwLjUgMTIuNXExNyAwIDI5LjUgLTEyLjV0MTIuNSAtMjkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJfIiBob3Jpei1hZHYteD0iODIwIiBkPSJNNTkgMTk4djE5OWg3MDJ2LTE5OWgtNzAyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImAiIGhvcml6LWFkdi14PSI5MzYiIGQ9Ik0zMDYgMzc4bC0xNTIgMTUzbC05NSAtOTZ2Mjc3aDI3N2wtOTUgLTk1bDE1MiAtMTUyek03ODMgNzVsOTUgOTV2LTI3NmgtMjc3bDk1IDk1bC0xNTIgMTUxbDg3IDg3ek02MzEgMzc4bC04NyA4N2wxNTIgMTUybC05NSA5NWgyNzZ2LTI3N2wtOTQgOTV6TTMwNiAyMjdsODcgLTg3bC0xNTIgLTE1Mmw5NSAtOTVsLTI3NyAxdjI3N2w5NSAtOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iYSIgaG9yaXotYWR2LXg9IjgxMCIgZD0iTTc0NSAxNDRxMjEgMCAzNS41IC0xNC41dDE0LjUgLTM1LjV0LTE0LjUgLTM2dC0zNS41IC0xNXEtMiAwIC02IDAuNXQtNiAwLjVxLTQyIC0zNiAtNzkgLTU5cS04MyAtNTUgLTE1NyAtNzZxLTcxIC00NCAtOTAgLTQ0cS0xNCAwIC05NSA0NXEtNzYgMjIgLTE1NiA3NXEtNDAgMjcgLTc5IDU5cS0yIDAgLTUuNSAtMC41dC01LjUgLTAuNXEtMjEgMCAtMzYgMTV0LTE1IDM2dDE1IDM1LjV0MzYgMTQuNXQzNS41IC0xNC41dDE0LjUgLTM1LjV2LTggcTkgLTggMzQgLTIydDM4IC0yM3E0NyAtMzEgMTQ0IC0zM2wzMiAxNTFxNCA5OCA3IDE5MmgtMTM2bC01MiAxMnEtMTQgLTE3IC0zMyAtMTdxLTE3IDAgLTI5IDExLjV0LTEyIDI4LjV0MTIgMjguNXQyOSAxMS41cTIyIDAgMzMgLTE4aDE5MHEyIDcyIDMgOTZxLTMyIDEwIC01MiAzNi41dC0yMCA2MC41cTAgNDIgMjkuNSA3MS41dDcwLjUgMjkuNXE0MiAwIDcxLjUgLTI5LjV0MjkuNSAtNzEuNXEwIC0zMyAtMjAgLTU5LjV0LTUxIC0zNi41IHEwIC03IDEuNSAtNDAuNWwyLjUgLTU2LjVoMTg5cTExIDE4IDMzIDE4cTE3IDAgMjkgLTExLjV0MTIgLTI4LjV0LTEyIC0yOC41dC0yOSAtMTEuNXEtMjEgMCAtMzIgMTdsLTUzIC0xMmgtMTM1bDYgLTE5MmwzMyAtMTU0cTc5IC00IDEyMCAyMXE1MCAzMCA5NiA2MnEtMSAyIC0xIDZxMCAyMSAxNSAzNS41dDM2IDE0LjV6TTM1MSA2MDFxMCAtMjIgMTUuNSAtMzcuNXQzNy41IC0xNS41cTIzIDAgMzguNSAxNS41dDE1LjUgMzcuNXQtMTYgMzcuNSB0LTM4IDE1LjV0LTM3LjUgLTE1LjV0LTE1LjUgLTM3LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjkxOSIgZD0iTTQ2MSA2OTlsNDA4IC0xMTN2LTU5MWwtNDA4IC0xMTRsLTQxMCAxMTR2NTkxek00MjYgLTM4djQzOWwtMzA2IDg2di00NDF6TTQ2MCA0NjJsMzAwIDg0bC0yOTkgODJsLTMwMCAtODJ6TTgwMSA0NnY0NDBsLTMwNyAtODV2LTQ0MHoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iOTA4IiBkPSJNNzY3IDMxOHE0NiAtMTkgNzMuNSAtNjB0MjcuNSAtOTJxMCAtNjggLTQ4IC0xMTZ0LTExNiAtNDhoLTloLTE5OHYxNjJoMzBoNzZxMTIgMCAxNSA2LjV0LTQgMTYuNWwtMTQ1IDE3M3EtOCAxMCAtMTkuNSAxMHQtMTkuNSAtMTBsLTE0NSAtMTczcS04IC0xMCAtNSAtMTYuNXQxNiAtNi41aDc2aDMwdi0xNjJoLTE5OGgtMWgtMWgtMnYxcS02OCAxIC0xMTYuNSA1MHQtNDguNSAxMTdxMCA0NiAyMiA4NHQ2MCA2MXEtNSAxOCAtNSAzNCBxMCA0NyAzMy41IDgwLjV0ODEuNSAzMy41cTM5IDAgNjkgLTI0cTMxIDY0IDkxIDEwM3QxMzMgMzlxMTAzIDAgMTc1LjUgLTcyLjV0NzIuNSAtMTc1LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSI5MTgiIGQ9Ik00NTkgNjk5cTE3NCAwIDI5Ni41IC0xMjN0MTIyLjUgLTI5NnEwIC0xNzQgLTEyMi41IC0yOTYuNXQtMjk2LjUgLTEyMi41cS0xNzMgMCAtMjk2IDEyMi41dC0xMjMgMjk2LjVxMCAxNzMgMTIzIDI5NnQyOTYgMTIzek03NzQgMjgwcTAgMTMwIC05Mi41IDIyMnQtMjIyLjUgOTJxLTEwMCAwIC0xODIgLTU4bDQzOCAtNDM4cTU5IDgxIDU5IDE4MnpNMTQ1IDI4MHEwIC0xMzAgOTIgLTIyMnQyMjIgLTkycTEwMyAwIDE4MyA1OGwtNDM4IDQzOSBxLTU5IC04MyAtNTkgLTE4M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJlIiBob3Jpei1hZHYteD0iNTU2IiBkPSJNNTUwIDY5OWwtMTkzIC0zNDJoMTU4bC01MTAgLTQ3NmwyMzkgMzg2aC0xNjB6IiAvPgo8Z2x5cGggdW5pY29kZT0iZiIgaG9yaXotYWR2LXg9IjkxMiIgZD0iTTU2IDQxNXExNDkgMCAyNzUgLTczLjV0MjAwIC0xOTkuNXQ3NSAtMjc1aC0xNjBxLTIgMTYxIC0xMTUgMjc0cS0xMTQgMTE0IC0yNzUgMTE0djE2MHpNNTYgNzAwcTE2OSAwIDMyMi41IC02NnQyNjUuNSAtMTc3LjV0MTc4IC0yNjZ0NjcgLTMyMy41aC0xNjBxLTEgMTgzIC05MS41IDMzNy41dC0yNDUgMjQ0LjV0LTMzNi41IDkwdjE2MXpNMTY3IDkwcTQ2IDAgNzguNSAtMzIuNXQzMi41IC03OC41dC0zMi41IC03OC41dC03OC41IC0zMi41IHQtNzguNSAzMi41dC0zMi41IDc4LjV0MzIuNSA3OC41dDc4LjUgMzIuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJnIiBob3Jpei1hZHYteD0iODk0IiBkPSJNODY1IDM2di0zNWgtMTUxdjQ3djFxLTQgNDMgLTU1IDczcS0xMCAxNiAtMjIgNDdxLTUgMTEgLTUgNDBxMCAzNyAxIDQxcTEzIDQ0IDY0IDQ0dDY0IC00NHYtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzkgLTI5IC01NHEyMCAtNCAzOCAtMTEuNXQzNS41IC0xN3QyMS41IC0xMS41cTE5IC04IDI5LjUgLTE4dDExLjUgLTE1ek0xODAgNDl2LTF2LTQ3aC0xNTF2MzVxMCAyIDEgNnQxMS41IDE0dDI5LjUgMThxNSAyIDIxLjUgMTJ0MzQuNSAxNy41IHQzOCAxMS41cS0xNCAxNSAtMjkgNTRxLTQgMTAgLTQgNDBxMCAzNyAxIDQxcTExIDQ0IDYzIDQ0cTUxIDAgNjQgLTQ0cTEgLTQgMSAtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzYgLTI0IC00OHEtNTMgLTMyIC01MyAtNzJ6TTYyMCAxMDJxMjUgLTExIDM5LjUgLTI0LjV0MTYuNSAtMjEuNWwyIC04di00N2gtNDYydjQ3cTAgMyAxLjUgOC41dDE2IDE5LjV0NDAuNSAyNnE2IDMgMjkgMTZ0NDggMjMuNXQ1MiAxNS41cS0xOCAyMSAtMzkgNzQgcS02IDEzIC02IDU2cTAgNTMgMSA1NnExNyA2MSA4NyA2MXQ4OCAtNjFxMSAtMyAxIC01NnEwIC00MSAtNiAtNTZxLTIxIC01NCAtNDAgLTc0cTI4IC01IDUyLjUgLTE1dDQ5IC0yNHQyOS41IC0xNnoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iOTA2IiBkPSJNODQ4IDQyNXEyNSAtNjggMjUgLTE0NHQtMjUgLTE0NHEtMTAgLTI4IC00MCAtMjhxLTYgMCAtMTAgMWwtNyAycS01NSAtMTExIC0xNjkgLTE2OWwyIC03cTQgLTE2IC0zLjUgLTMwdC0yMi41IC0yMHEtNzIgLTI1IC0xNDQgLTI1cS03MyAwIC0xNDUgMjVxLTE1IDYgLTIyLjUgMjB0LTMuNSAzMGwyIDdxLTExMiA1NSAtMTcwIDE2OWwtNyAtMnEtMyAtMSAtMTAgLTFxLTI5IDAgLTM5IDI4cS0yNiA3MCAtMjYgMTQ0dDI2IDE0NCBxMTAgMjggMzkgMjhxMyAwIDExIC0ybDYgLTFxNTggMTE1IDE3MCAxNjlsLTIgN3EtNCAxNiAzLjUgMzB0MjIuNSAyMHE3MiAyNSAxNDQgMjVxNzUgMCAxNDUgLTI2cTE1IC01IDIyLjUgLTE5dDMuNSAtMzBsLTIgLTdxMTEzIC01NiAxNzAgLTE2OWw2IDFxOCAyIDExIDJxMjkgMCAzOSAtMjh6TTgwOCAxNTFxMjMgNjMgMjMgMTMwcTAgNjYgLTIyIDEzMGwtMTY2IC00MXEyMCAtNDIgMjAgLTg5dC0yMCAtODl6TTU4MyAtNzRsLTQwIDE2NSBxLTQyIC0yMCAtODkgLTIwdC05MCAyMGwtNDAgLTE2NXE2MSAtMjMgMTMwIC0yM3E2OCAwIDEyOSAyM3pNNTYxIDEyOXExMiAtNyAxNyAtMTZxMjQgMTcgNDQgNDNxLTExIDYgLTE3IDE4cS04IDE3IDAgMzZxMTYgMzIgMTYgNzFxMCAzOCAtMTYgNzFxLTggMTggMCAzNnE3IDEyIDE3IDE4cS0xOSAyNSAtNDQgNDNxLTcgLTEyIC0xNyAtMTZxLTggLTQgLTE4IC00cS0xMSAwIC0xOCA0cS0zMyAxNiAtNzIgMTZxLTM4IDAgLTcxIC0xNiBxLTcgLTQgLTE4IC00cS0xMCAwIC0xOCA0cS0xMiA3IC0xNyAxNnEtMjUgLTE4IC00NCAtNDNxMTEgLTYgMTcgLTE4cTggLTE4IDAgLTM2cS0xNyAtMzYgLTE3IC03MXEwIC0zNiAxNiAtNzFxOSAtMTkgMCAtMzZxLTQgLTExIC0xNiAtMThxMTYgLTIyIDQ0IC00NHE1IDEwIDE3IDE3cTggNCAxOCA0cTExIDAgMTggLTRxMzMgLTE2IDcyIC0xNnEzOCAwIDcxIDE2cTcgNCAxOCA0cTEwIDAgMTggLTR6TTc1IDI4MXEwIC02NCAyMyAtMTMwbDE2NSA0MSBxLTIwIDQ1IC0yMCA4OXEwIDQ1IDIxIDg5bC0xNjYgNDFxLTIzIC02NyAtMjMgLTEzMHpNNDUzIDY1OXEtNjggMCAtMTI5IC0yM2w0MCAtMTY1cTQzIDIwIDg5IDIwcTQ3IDAgOTAgLTIwbDQwIDE2NXEtNjEgMjMgLTEzMCAyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJpIiBkPSJNNDYwIDY5OXExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzcS0xNzMgMCAtMjk2LjUgMTIzdC0xMjMuNSAyOTd0MTIzLjUgMjk3dDI5Ni41IDEyM3pNNTE0IDU2OXEtMzEgLTEgLTQ5IC0yMnQtMTggLTQ1cTAgLTI1IDEzLjUgLTQwLjV0MzYuNSAtMTUuNWgxcTI5IDAgNDguNSAyMC41dDE5LjUgNDguNXEwIDIzIC0xMyAzN3EtMTUgMTcgLTM5IDE3ek01NjUgOThsMyAzbC0yIDRsLTE4IDM4bC01IC00IHEtMTQgLTE0IC0zNC41IC0yOHQtMjQuNSAtMTV2NXEwIDcgMyAyMGw0NiAxODhxNiAyNSA2IDU3cTAgMTggLTYgMzBxLTcgMTIgLTIyIDEycS0yNSAwIC03MS41IC0yOC41dC05MS41IC03MC41bC0zIC0zbDE2IC00NWw2IDRxMzUgMzEgNTUgMzlxMCAtNiAtMyAtMjFsLTQzIC0xODJxLTYgLTMwIC02IC02MHEwIC0yNSAxMCAtMzZxOSAtMTAgMjYgLTEwcTIzIDAgNzAuNSAyOXQ4OC41IDc0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI4NzciIGQ9Ik04MzUgMjMydi0xbDEgLTF2LTFxMTkgLTM1IDE5IC03OXEwIC0xOCAtNSAtNDNxLTEyIC00NiAtNDUgLTgwbC02NCAtNjNxLTUxIC01MSAtMTIzIC01MXQtMTIyIDUxbC03NyA3NmwtNDcgNDhsLTMzIDMzcS0zNyAzNyAtNDggOTFxLTIgMjAgLTIgMzFxMCAxNyAzIDM1bDMgMTJxNCAxNSAxNCAzNHYxcTEgMSAyLjUgNGwyLjUgNWwxIDJsMSAxcTEgMSAyLjUgMy41dDIuNSAzLjV2MWwyIDJxMSAxIDMgMy41dDMgMy41djFsMiAybDQgNHQ0IDUgbDI4IDI4bDQgLTVsNTcgLTU2cTAgLTEgMiAtM3QyIC0zdDEgLTMuNXQxIC0zLjVsLTI1IC0yNXEtMSAtMSAtMyAtMy41dC00IC00LjVxMCAtMSAtMSAtMnYtMXEtMiAtMiAtNCAtNnEtMSAwIC0xIC0xdC0xIC0ydC0xLjUgLTMuNXQtMC41IC0zLjVsLTEgLTF2LTJxLTQgLTkgLTQgLTIycTAgLTE1IDcgLTMycTQgLTggMTQgLTIwbDU3IC01N2w0MCAtMzlsNjAgLTYxcTIxIC0yMSA1MiAtMjFxMzIgMCA1MiAyMWw2NCA2NHExMiAxMiAxOCAyOSBxMyAxMSAzIDIzcTAgMTAgLTMgMjFxLTUgMTkgLTE4IDMxbC05OCA5OHExIDYgMSAxN3EwIDIxIC0zIDQwcS0xMiA2OCAtNTkgMTE2cTM5IC0xMiA3MSAtNDJsMiAtMmwxNTcgLTE1N3ExOCAtMTggMjkgLTM5cTAgLTEgMSAtMXpNNTM4IDQ0MXEzOSAtMzkgNDggLTkxcTMgLTE1IDMgLTMxcTAgLTExIC00IC0zNWwtMyAtMTJxLTMgLTEyIC0xMyAtMzRsLTEgLTFxLTEgLTEgLTIuNSAtNGwtMi41IC01bC0xIC0ybC0xIC0xcS0yIC00IC01IC03IGwtMSAtMXEtMSAtMSAtMSAtMnEtMyAtMyAtNSAtN2wtMSAtMWwtMiAtMnEtMiAtMyAtOCAtOWwtMjggLTI4bC00IDVsLTU3IDU2cS0xIDEgLTIgM3QtMiAzdC0xIDMuNXQtMSAzLjVsMjUgMjVxMSAxIDMgMy41dDQgNC41cTAgMSAwLjUgMXQwLjUgMXYxcTIgMiA0IDZsMSAxcTEgMSAxIDJxMiA0IDMgN3YxcTAgMSAxIDJxMyAxMSAzIDIycTAgMTUgLTcgMzJxLTQgOCAtMTQgMjBsLTU3IDU3bC0zOSAzOWwtNjEgNjFxLTIxIDIxIC01MiAyMSB0LTUyIC0yMWwtNjQgLTY0cS0xMiAtMTIgLTE4IC0yOXEtMyAtMTEgLTMgLTIzcTAgLTEwIDMgLTIxcTUgLTE5IDE4IC0zMWw5OCAtOThxLTEgLTYgLTEgLTE3cTAgLTIzIDQgLTQwcTEwIC02NSA1OCAtMTE2cS00MCAxMiAtNzEgNDJsLTIgMmwtMTU3IDE1N3EtMTggMTggLTI5IDM5cTAgMSAtMSAxdjFsLTEgMXYxcS0xOSAzOCAtMTkgNzlxMCAxOCA1IDQzcTEyIDQ2IDQ1IDgwbDY0IDYzcTUxIDUxIDEyMyA1MXQxMjIgLTUxbDc3IC03NiBsNDcgLTQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9ImsiIGhvcml6LWFkdi14PSI4OTYiIGQ9Ik02NTcgNjEwcTg5IDAgMTQ4LjUgLTUwLjV0NTkuNSAtMTU5LjVxMCAtNDkgLTI2IC0xMDF0LTUyIC03OWwtMjYgLTI4bC0zMTMgLTMxMmwtMzEzIDMxMmwtMTEgMTF0LTI1IDMwdC0zMiA0NnQtMjUgNTYuNXQtMTEgNjQuNXEwIDEwOSA1OSAxNTkuNXQxNDggNTAuNXE5MCAwIDE5MSAtMTA3bDE5IC0yMXE0IDUgMTEuNSAxMy41dDMxIDMxdDQ3IDM5dDU2LjUgMzAuNXQ2MyAxNHoiIC8+CjxnbHlwaCB1bmljb2RlPSJsIiBob3Jpei1hZHYteD0iOTQyIiBkPSJNMjc5IDcwMGg2MDV2LTEzM2gtNjA1djEzM3pNMjc5IDI4NHYxMzNoNjA1di0xMzNoLTYwNXpNMjc5IDB2MTMzaDYwNXYtMTMzaC02MDV6TTEyMiA3MDBxMjggMCA0Ny41IC0xOS41dDE5LjUgLTQ2LjVxMCAtMjggLTE5LjUgLTQ3LjV0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ny41cTAgMjcgMTkuNSA0Ni41dDQ2LjUgMTkuNXpNMTIyIDQxOHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDcuNXEwIC0yNyAtMTkuNSAtNDYuNSB0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ni41cTAgMjggMTkuNSA0Ny41dDQ2LjUgMTkuNXpNMTIyIDEzNHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDYuNXEwIC0yOCAtMTkuNSAtNDcuNXQtNDcuNSAtMTkuNXEtMjcgMCAtNDYuNSAxOS41dC0xOS41IDQ3LjVxMCAyNyAxOS41IDQ2LjV0NDYuNSAxOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Im0iIGhvcml6LWFkdi14PSI4MDgiIGQ9Ik03NzEgNjk4di04M3YtNTE0cS0xIC01MiAtNDYuNSAtODh0LTExMC41IC0zNnQtMTExIDM3dC00NiA4OXQ0NiA4OXQxMTEgMzdxMzYgMCA3MCAtMTN2MzA4bC0zNTIgLTg0di00OTVxLTEgLTUyIC00NyAtODguNXQtMTEwIC0zNi41cS02NSAwIC0xMTEgMzd0LTQ2IDkwcTAgNTIgNDYgODl0MTExIDM3cTM1IDAgNjkgLTEzdjUxM2gybDQzOCAxMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0ibiIgaG9yaXotYWR2LXg9Ijk1NiIgZD0iTTc1OSA3MDBxNTggMCA5OSAtNDF0NDEgLTk5di01NjFxMCAtNTggLTQxIC05OXQtOTkgLTQxaC01NjFxLTU4IDAgLTk5IDQxdC00MSA5OXY1NjFxMCA1OCA0MSA5OXQ5OSA0MWg1NjF6TTc5NCA0OTBoLTUxM3YtMTE3aDUxM3YxMTd6TTI1OSAyMTdoLTk2di0xMTRoOTZ2MTE0ek0xNjMgMjM4aDk2djExNGgtOTZ2LTExNHpNMjgxIDIxN3YtMTE0aDUxM3YxMTRoLTUxM3pNMjgxIDIzOGg1MTN2MTE0aC01MTN2LTExNHpNMjU5IDQ5MGgtOTYgdi0xMTdoOTZ2MTE3ek0xNjMgLTFxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDYxdjExN2gtOTZ2LTgyek03NTkgLTM2cTE0IDAgMjQuNSAxMC41dDEwLjUgMjQuNXY4MmgtNTEzdi0xMTdoNDc4eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSI5NDEiIGQ9Ik04NjcgNTQ1cTExIDAgMTggLTcuNXQ3IC0xNy41di01MjVxMCAtMTEgLTcgLTE4dC0xOCAtN2gtNzg0cS0xMSAwIC0xOCA3dC03IDE4djUyNXEwIDEwIDcgMTcuNXQxOCA3LjVoMzhsMjkgNTlxMTEgMjIgMzYgMjJoMTU4cTI1IDAgMzYgLTIybDI4IC01OWg0NTl6IiAvPgo8Z2x5cGggdW5pY29kZT0icCIgaG9yaXotYWR2LXg9Ijg1NSIgZD0iTTU0MiA1NDlsMTUzIC0xNTNsLTQ2MCAtNDYwdjB2MGwtMjI2IC03NGw3MyAyMjd2MHYwek0xODggNjVsMzc5IDM3OWwtMjUgMjZsLTM4MCAtMzgwek02OTQgNzAxbDE1NCAtMTUzbC0xMDEgLTEwMGwtMTUzIDE1M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJxIiBob3Jpei1hZHYteD0iOTEwIiBkPSJNODY1IDE2MHEwIC00MiAtMjYgLTc1dC02NiAtNDRxMTUgLTQzIDY2IC04MnExMiAtOCAtOSAtMTRxLTQ1IC0xMSAtMTE0IDIxcS01MiAyNSAtOTcgNzFoLTI5OXEtNDIgMCAtNzcgMjdxMzAgMTggNTYgNDNoMjc2cTc0IDAgMTI2LjUgNTIuNXQ1Mi41IDEyNi41djIzNXE0NyAtNSA3OSAtNDB0MzIgLTgzdi0yMzh6TTY5OCAyODZxMCAtNTIgLTM2IC04OHQtODcgLTM2aC0yOThxLTQ5IC01MCAtMTAwIC03MnQtOTAgLTIycS0zNCAwIC0zNCAxMSBxMCAzIDMgNXE1MCAzOCA2NiA4MnEtNDAgMTEgLTY2IDQ0dC0yNiA3NnYyMzdxMCA1MSAzNiA4Ny41dDg4IDM2LjVoNDIxcTUxIDAgODcgLTM2LjV0MzYgLTg3LjV2LTIzN3oiIC8+CjxnbHlwaCB1bmljb2RlPSJyIiBob3Jpei1hZHYteD0iOTAwIiBkPSJNNzI2IDI3OGwyNCAyNGw5MSA5MXYtMjYwcTAgLTEyOCAtMTI4IC0xMjhoLTUwOXYtMTA4bC0xNzEgMTcybDE3MSAxNzJ2LTExNXYtNmg0ODRxMTYgMCAyNyAxMXQxMSAyN3YxMjB6TTE3NCAzMTlsLTI0IC0yNGwtOTEgLTkxdjI2MHEwIDEyNyAxMjggMTI3aDUwOXYxMDhsMTcxIC0xNzFsLTE3MSAtMTcydjExNXY2aC00ODRxLTE2IDAgLTI3IC0xMS41dC0xMSAtMjcuNXYtMTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSI4NjQiIGQ9Ik04MTYgNHEyMyAtMjMgMjMgLTU0cTAgLTI5IC0yMCAtNDhxLTE5IC0xOSAtNDcgLTE5cS0zMiAwIC01NSAyM2wtMjE5IDIxOXEtNzQgLTQ4IC0xNjYgLTQ4cS0xMjkgMCAtMjIwLjUgOTEuNXQtOTEuNSAyMjAuNXQ5MS41IDIyMC41dDIyMC41IDkxLjV0MjIwLjUgLTkxLjV0OTEuNSAtMjIwLjVxMCAtOTAgLTQ3IC0xNjV6TTUwNiAzODlxMCA3MiAtNTEgMTIzdC0xMjMgNTF0LTEyMyAtNTF0LTUxIC0xMjN0NTEgLTEyM3QxMjMgLTUxIHQxMjMgNTF0NTEgMTIzeiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NjAgNjk5cTE3MyAwIDI5NiAtMTIzdDEyMyAtMjk2cTAgLTE3NCAtMTIzIC0yOTd0LTI5NiAtMTIzcS0xNzQgMCAtMjk3IDEyM3QtMTIzIDI5N3EwIDE3MyAxMjMgMjk2dDI5NyAxMjN6TTQ2MCAtMzVxMTMwIDAgMjIyIDkyLjV0OTIgMjIyLjV0LTkyIDIyMnQtMjIyIDkydC0yMjIuNSAtOTJ0LTkyLjUgLTIyMnQ5Mi41IC0yMjIuNXQyMjIuNSAtOTIuNXpNNjYzIDE4NnExNCAtMTAgNSAtMjRsLTI0IC0zOXEtNSAtNiAtMTEgLThoLTQgcS01IDAgLTEwIDNsLTE5MyAxMjlxLTEgMSAtMi41IDJ0LTIuNSAxcS01IDcgLTUgMTN2MjI4cTAgNyA1IDEycTcgNSAxMyA1aDQ2cTcgMCAxMiAtNXQ1IC0xMnYtMTkzeiIgLz4KPGdseXBoIHVuaWNvZGU9InUiIGhvcml6LWFkdi14PSI5NTUiIGQ9Ik02MCA2MzFoODM1di02NzNoLTgzNXY2NzN6TTgyNSAyOHY1MzRoLTY5NXYtNTM0aDY5NXpNMjI1IDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNNzMxIDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNMjI1IDE1OXExOCAwIDMwLjUgLTEzIHQxMi41IC0zMXQtMTIuNSAtMzAuNXQtMzAuNSAtMTIuNXQtMzEgMTIuNXQtMTMgMzAuNXQxMyAzMXQzMSAxM3pNNzMxIDE1OXExOCAwIDMwLjUgLTEzdDEyLjUgLTMxdC0xMi41IC0zMC41dC0zMC41IC0xMi41dC0zMSAxMi41dC0xMyAzMC41dDEzIDMxdDMxIDEzek01OTMgNDU3di0zMjVoLTIyOHYzMjVoMjI4ek01MzMgMTgxdjExOGgtMTA5di0xMThoMTA5eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSI5NDUiIGQ9Ik04NjYgNTU3cTEwIDAgMTcuNSAtN3Q3LjUgLTE3di00NzJxMCAtMTEgLTcuNSAtMTh0LTE3LjUgLTdoLTc4NnEtMTAgMCAtMTcuNSA3dC03LjUgMTh2NDcycTAgMTAgNy41IDE3dDE3LjUgN2gxNzNxMCAxIDEgMWwyMyA0OHE0IDkgMTUgMTUuNXQyMSA2LjVoMzE5cTI1IDAgMzYgLTIybDI0IC00OHYtMWgxNzR6TTQ3MiAxMjBxNzUgMCAxMjggNTIuNXQ1MyAxMjcuNXQtNTMgMTI4dC0xMjggNTNxLTc0IDAgLTEyNyAtNTN0LTUzIC0xMjggdDUzIC0xMjcuNXQxMjcgLTUyLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjkyNyIgZD0iTTg4NSAzOTdxMTYgLTEzNyAtOTQuNSAtMjQ3dC0yODIuNSAtMTI5cS02MiAtNyAtMTIwIDBxLTkyIC05NSAtMTk3IC0xMDZxLTQ3IC01IC01NiA4cS0zIDQgMyA4cTg4IDY2IDgwIDE0NXEtNjkgMzkgLTExMiA5OHQtNTEgMTMwcS0xNiAxMzYgOTQgMjQ2LjV0MjgyIDEzMC41cTE3MiAxOSAzMDQuNSAtNjR0MTQ5LjUgLTIyMHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ4IiBob3Jpei1hZHYteD0iOTQ5IiBkPSJNNTI2IDEwMHEyIDEwIDIgMTZsOTggOThsMTM5IC0xMzlsOTQgLTY5bDEwIC0zOGwtMTA0IC0xMDRsLTM3IDEwbC03MCA5NHpNNzU1IDIycS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMS41cTAgLTE4IDEyLjUgLTMwLjV0MzAuNSAtMTIuNXExOSAwIDMxLjUgMTIuNXQxMi41IDMwLjVxMCAxOSAtMTIuNSAzMS41dC0zMS41IDEyLjV6TTQ2OSAzNzFsLTk4IC05OHEtNiAwIC0xNiAtMmwtNzEgNzBxLTMyIC0xNSAtNTYgLTE1IHEtNzQgMCAtMTMzLjUgNjB0LTYwLjUgMTM0cTAgMSAxNyAxOHE2MyAtNjMgNzEgLTY4dDQ1IC01cTI5IDAgNjUuNSAzNnQzNi41IDY2cTAgMzYgLTYgNDUuNXQtNjcgNjkuNXExNSAxOCAxOCAxOHE3NCAxIDEzNCAtNTkuNXQ2MCAtMTM0LjVxMCAtMjcgLTE2IC01N3pNNzg2IDIwMnEwIDMgMC41IDcuNXQwLjUgMTguNXQtMS41IDI4dC01LjUgMzJ0LTEwLjUgMzMuNXQtMTkgMzAuNXQtMjguNSAyNGgtM3EtMTAgMCAtMzQgLTIybC0yMTggLTIxNyBxOCAtMjkgLTggLTQ3cS0yIC0xIC03IC02bC0yMDEgLTIwMXEtNSAtNSAtNiAtN3EtMTEgLTExIC0yOSAtMTFxLTQxIDAgLTc3IDQ4dC04IDc3cTMgMiA2IDZsMjAyIDIwMnE1IDMgNiA2cTExIDExIDI4IDExcTkgMCAxOSAtM2wxOTQgMTk0bDQgNnE0IDYgNS41IDh0NSA4LjV0NC41IDExdDEuNSAxMXQtMSAxMy41dC00LjUgMTRxLTE2IDI5IC02MCAzOGgtMXEtMTYgMCAtNTUgMzdsLTYgNnEtMTkgMTkgLTIwIDI1dDE4IDI3bDcyIDczIHExNyAxNyAyNiAxN3E2IDAgMjYgLTIwbDYgLTZxMzMgLTMzIDM3IC00OXE0IC0yMCAyNCAtNDZxMyAtNCAxOCAtNHQxOSAtNGwxMTkgLTExOXE3MyAtNzMgMzAgLTI1MmwtMTUgLTUweiIgLz4KPGdseXBoIHVuaWNvZGU9InkiIGhvcml6LWFkdi14PSI4OTciIGQ9Ik04NDMgMzU5cTkgLTEgMTUuNSAtOXQ2LjUgLTE3di05N3EwIC05IC02LjUgLTE3dC0xNS41IC05bC0xMjQgLTIzcS05IC0yIC0xMiAtOHQyIC0xNGw3MiAtMTA2cTEyIC0xOSAtNCAtMzVsLTY4IC02OHEtMTYgLTE2IC0zNCAtM2wtMTA2IDcxcS03IDUgLTE0LjUgMi41dC04LjUgLTExLjVsLTIzIC0xMjVxLTEgLTkgLTkgLTE1LjV0LTE3IC02LjVoLTk3cS05IDAgLTE3IDYuNXQtOSAxNS41bC0yMyAxMjVxLTEgOSAtOC41IDExLjUgdC0xNC41IC0yLjVsLTEwNSAtNzFxLTIwIC0xMiAtMzUgM2wtNjggNjhxLTE2IDE2IC00IDM1bDcyIDEwNnE1IDggMiAxNHQtMTIgOGwtMTI0IDIzcS05IDEgLTE1LjUgOXQtNi41IDE3djk3cTAgOSA2LjUgMTd0MTUuNSA5bDEyNCAyM3EyMiA2IDEwIDIzbC03MiAxMDZxLTExIDE5IDQgMzRsNjggNjhxMTYgMTYgMzUgNGwxMDUgLTcycTcgLTUgMTQuNSAtMnQ4LjUgMTJsMjMgMTI0cTEgOSA5IDE1LjV0MTcgNi41aDk3cTkgMCAxNyAtNi41IHQ5IC0xNS41bDIzIC0xMjRxMSAtOSA4LjUgLTEydDE0LjUgMmwxMDYgNzJxMTggMTIgMzQgLTRsNjggLTY4cTE1IC0xNSA0IC0zNGwtNzIgLTEwNnEtMTIgLTE3IDEwIC0yM3pNNDQ4IDEzNHE2MyAwIDEwNyA0NHQ0NCAxMDZ0LTQ0IDEwNi41dC0xMDcgNDQuNXEtNjIgMCAtMTA2IC00NC41dC00NCAtMTA2LjV0NDQgLTEwNnQxMDYgLTQ0eiIgLz4KPGdseXBoIHVuaWNvZGU9InoiIGhvcml6LWFkdi14PSI3MzYiIGQ9Ik00MzMgLTMzcTM0IDAgNTUgMjNsMTc2IDE3NmwzOSAtMzlxMTUgLTE1IDAgLTMxbC0yNTQgLTI1NHEtMTUgLTE2IC0zMSAwbC0zNTAgMzUwcS0xNSAxNSAtMTcgMzZsLTggOTdsMzM1IC0zMzVxMjMgLTIzIDU1IC0yM3pNMzUzIDY2NGwzNTAgLTM0OXExNiAtMTYgMCAtMzFsLTI1NCAtMjU1cS03IC02IC0xNiAtNnQtMTUgNmwtMzUwIDM1MHEtMTUgMTcgLTE3IDM3bC0xNyAxOTBxLTIgMjIgMTQgMzZsNDMgNDRxMTUgMTMgMzQgMTNoMyBsMTg5IC0xN3EyMiAtMiAzNiAtMTh6TTExNSA2MTdxLTE0IC0xMyAtMTQgLTMzdDE0IC0zM3ExMyAtMTMgMzMgLTEzdDMzIDEzdDEzIDMzdC0xMyAzM3EtMTQgMTQgLTMzIDE0dC0zMyAtMTR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieyIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTc1MSAyOTloLTI3OHYtNDA4aC0xODV2NDA4aC0yNzdsMzcwIDQyOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ8IiBob3Jpei1hZHYteD0iOTE1IiBkPSJNMTgyIDI4MHEtMyAtMTYgLTMgLTM1di02OXEtNTggMCAtOTguNSA0MC41dC00MC41IDk4LjV2MjQ0cTAgNTggNDAuNSA5OC41dDk4LjUgNDAuNWgzNDhxNTggMCA5OC41IC00MC41dDQwLjUgLTk4LjV2LTEwNWgtMTA0djEwNXEwIDE0IC0xMC41IDI0LjV0LTI0LjUgMTAuNWgtMzQ4cS0xNCAwIC0yNC41IC0xMC41dC0xMC41IC0yNC41di0yNDRxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDN6TTczNiAzODVxNTcgMCA5OCAtNDEgdDQxIC05OXYtMjQzcTAgLTU4IC00MSAtOTl0LTk4IC00MWgtMzQ4cS01OCAwIC05OC41IDQxdC00MC41IDk5djI0M3EwIDU4IDQwLjUgOTl0OTguNSA0MWgzNDh6TTc3MCAydjI0M3EwIDE1IC0xMCAyNXQtMjQgMTBoLTM0OHEtMTQgMCAtMjQuNSAtMTB0LTEwLjUgLTI1di0yNDNxMCAtMTUgMTAuNSAtMjV0MjQuNSAtMTBoMzQ4cTE0IDAgMjQgMTB0MTAgMjV6IiAvPgo8Z2x5cGggdW5pY29kZT0ifSIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTExIDMwMWgyNzd2NDA5aDE4NXYtNDA5aDI3OGwtMzcwIC00Mjd6IiAvPgo8Z2x5cGggdW5pY29kZT0ifiIgZD0iTTQ2MCA2OTlxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTYyOCAzNHYyMzJoLTE2NmwxNDUgMTY3aC0xMTJ2MTM1aC03NXYtMTM1aC0xMTJsMTQ0IC0xNjdoLTE2MnYtMjMyaDE0NWwtMzkgLTM5aDEyNmwtMzkgMzloMTQ1ek0zMzMgNzZ2MTQ4aDI1M3YtMTQ4aC0yNTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZmY7IiBob3Jpei1hZHYteD0iODMzIiAvPgo8Z2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+IA==') format('svg')}.x-tab .x-button-icon:before,.x-button .x-button-icon:before{font-family:"Pictos"}.x-img.x-img-image{text-align:center}.x-img.x-img-image img{width:auto;height:100%}.x-img.x-img-background{background-repeat:no-repeat;background-position:center;background-size:auto 100%}.x-map{background-color:#edeae2}.x-map *{-webkit-box-sizing:content-box;box-sizing:content-box}.x-mask-map{background:transparent !important}.x-map-container{position:absolute !important;top:0;left:0;right:0;bottom:0}.x-mask{min-width:8.5em;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;z-index:10;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0,0,0,0.3) center center no-repeat}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask.x-mask-transparent{background-color:transparent}.x-mask .x-mask-inner{position:relative;background:rgba(0,0,0,0.25);color:#fff;text-align:center;padding:.4em;font-size:.95em;font-weight:bold}.x-mask .x-loading-spinner-outer{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;min-width:8em;height:8em}.x-mask.x-indicator-hidden .x-mask-inner{padding-bottom:0 !important}.x-mask.x-indicator-hidden .x-loading-spinner-outer{display:none}.x-mask.x-indicator-hidden .x-mask-message{position:relative;bottom:.25em}.x-mask .x-mask-message{position:absolute;bottom:5px;color:#333;left:0;right:0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-mask.x-has-message .x-mask-inner{padding-bottom:2em}.x-mask.x-has-message .x-loading-spinner-outer{height:168px}.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el{visibility:collapse}.x-video{height:100%;width:100%;background-color:#000}.x-video>*{height:100%;width:100%;position:absolute}.x-video-ghost{-webkit-background-size:100% auto;background:#000 url() center center no-repeat}audio{width:100%}.x-msgbox{min-width:15em;max-width:20em;max-height:90%;margin:6px;border:1px solid #ccc}.x-msgbox .x-docking-vertical{overflow:hidden}.x-msgbox .x-toolbar.x-docked-top{border-bottom:0}.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-msgbox-text{text-align:center}.x-msgbox-buttons .x-button{min-width:4.5em}.x-progressindicator{width:50%;height:1.3em}.x-progressindicator .x-progressindicator-inner{background:#222222;padding:10px;height:100%;border-radius:20px;box-shadow:0px 5px 17px rgba(40,40,40,0.5);box-sizing:content-box;position:relative}.x-progressindicator .x-progressindicator-text{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;position:absolute;top:0px;left:0px;color:white;text-shadow:1px 1px 2px black}.x-progressindicator .x-progressindicator-bar{height:100%;width:0%;border-radius:10px}.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill{height:100%;width:100%;background-color:gray;border-radius:10px;-webkit-animation-name:progressIndicator;-moz-animation-name:progressIndicator;-ms-animation-name:progressIndicator;-o-animation-name:progressIndicator;animation-name:progressIndicator;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background-repeat:repeat-x;background-size:30px 30px;background-image:-webkit-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-moz-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-o-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-ms-linear-gradient(-45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}@-webkit-keyframes progressIndicator{to{background-position:30px}}@-moz-keyframes progressIndicator{to{background-position:30px}}@keyframes progressIndicator{to{background-position:30px}}.x-panel,.x-msgbox{position:relative}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{padding:6px;background-color:#ccc}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{z-index:1;background-color:#fff}.x-panel.x-floating>.x-dock,.x-msgbox>.x-dock,.x-form.x-floating>.x-dock{z-index:1}.x-panel.x-floating>.x-dock.x-sized,.x-msgbox>.x-dock.x-sized,.x-form.x-floating>.x-dock.x-sized{margin:6px}.x-sheet,.x-sheet-action{height:auto}.x-toolbar{position:relative;background-color:#eee;min-height:2.6em;overflow:hidden}.x-toolbar.x-docked-top{border-bottom:1px solid}.x-toolbar.x-docked-bottom{border-top:1px solid}.x-toolbar.x-docked-left{width:50px;height:auto;border-right:1px solid}.x-toolbar.x-docked-right{width:50px;height:auto;border-left:1px solid}.x-title{font-size:1.2em;text-align:center;font-weight:bold;max-width:100%}.x-title.x-title-align-left{padding-left:10px}.x-title.x-title-align-right{padding-right:10px}.x-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-navigation-bar .x-container{overflow:visible}.x-toolbar-inner .x-field .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-ie .x-toolbar-inner{height:100% !important}.x-toast{min-width:15em;max-width:20em;max-height:90%;margin:6px}.x-toast .x-toast-text{text-align:center}.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-menu{background:#eee}.x-carousel-inner{position:relative;overflow:hidden}.x-carousel-item,.x-carousel-item>*{position:absolute !important;width:100%;height:100%}.x-carousel-indicator{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-carousel-indicator span{display:block;width:10px;height:10px;margin:3px;background-color:#eee}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#ccc}.x-carousel-indicator-horizontal{width:100%}.x-carousel-indicator-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.x-android-3 .x-surface-wrap,.x-android-3 .x-surface-wrap>*{-webkit-perspective:1}.x-draw-component{position:relative}.x-draw-component .x-inner{overflow:hidden}.x-surface{position:absolute}.x-chart-watermark{opacity:0.5;z-index:9;right:0;bottom:0;background:rgba(0,0,0,0.5);color:white;padding:4px 6px;font-family:"Helvetica";font-size:12px;position:absolute;border-top-left-radius:4px;white-space:nowrap;-webkit-border-top-left-radius:4px}.x-legend .x-legend-inner .x-legend-container{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #ccc;background:#fff}.x-legend .x-legend-inner .x-legend-container .x-legend-item{padding:0.8em 1em 0.8em 1.8em;color:#333;background:rgba(255,255,255,0);max-width:20em;min-width:0;font-size:14px;line-height:14px;font-weight:bold;white-space:nowrap;position:relative}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);opacity:.3}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker{position:absolute;width:.8em;height:.8em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;-webkit-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;left:.7em;top:1em}.x-legend.x-docked-top .x-legend-item,.x-legend.x-docked-bottom .x-legend-item{border-right:1px solid rgba(204,204,204,0.5)}.x-legend.x-docked-top .x-legend-item:last-child,.x-legend.x-docked-bottom .x-legend-item:last-child{border-right:0}.x-legend.x-docked-left .x-legend-inner,.x-legend.x-docked-right .x-legend-inner{display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center}.x-chart-toolbar{position:absolute;z-index:9;display:-webkit-box;display:-moz-box;display:-ms-box;display:box;padding:.6em}.x-chart-toolbar .x-button{margin:.2em}.x-chart-toolbar[data-side=left],.x-chart-toolbar[data-side=right]{top:0;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}.x-chart-toolbar[data-side=left]{left:0}.x-chart-toolbar[data-side=right]{right:0}.x-chart-toolbar[data-side=top],.x-chart-toolbar[data-side=bottom]{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal;right:0}.x-chart-toolbar[data-side=top]{top:0}.x-chart-toolbar[data-side=bottom]{bottom:0;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}.x-tab .x-button-icon.list:before,.x-button .x-button-icon.list:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"l"}.x-tab .x-button-icon.expand:before,.x-button .x-button-icon.expand:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"`"}.x-dataview-inlineblock .x-dataview-item,.x-dataview-inlineblock .x-data-item{display:inline-block !important}.x-dataview-nowrap .x-dataview-container{white-space:nowrap !important}.x-dataview-nowrap .x-container.x-dataview{white-space:nowrap !important}.x-list{overflow:hidden}.x-list .x-scroll-scroller{max-width:100%}.x-list .x-list-inner{width:100% !important}.x-list.x-list-indexed .x-list-disclosure{margin-right:50px}.x-list .x-item-selected .x-list-disclosure{background-color:#fff}.x-list .x-list-scrolldock-hidden{display:none}.x-list .x-list-item{position:absolute !important;left:0;top:0;width:100%}.x-list .x-list-item>.x-dock{height:auto}.x-list .x-list-item .x-dock-horizontal{border-top:1px solid #ccc}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-color:#ccc}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background-color:#ddd}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:5px}.x-list .x-list-item.x-list-item-relative{position:relative !important}.x-list .x-list-header{background-color:#eee;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-weight:bold}.x-list .x-list-header.x-list-item-relative{position:relative !important}.x-list .x-list-disclosure{margin:5px 15px 5px 0;overflow:visible;width:20px;height:20px;border:1px solid #ccc;background-color:#eee}.x-list .x-list-item-tpl .x-list-disclosure{position:absolute;right:0px;top:0px}.x-list .x-list-emptytext{text-align:center;pointer-events:none;font-color:#333333;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-list.x-list-indexed .x-list-disclosure{margin-right:35px}.x-list .x-list-scrolldockitem{position:absolute !important;left:0;top:0;width:100%}.x-ie .x-list-grouped .x-translatable-container .x-list-item:before,.x-ie .x-list-grouped .x-translatable-container .x-list-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-list-header{position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-list-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,.x-list-grouped .x-list-item-tpl.x-list-header-wrap{border-top:0}.x-list-inlineblock .x-list-item{display:inline-block !important}.x-list-nowrap .x-list-inner{width:auto}.x-list-nowrap .x-list-container{white-space:nowrap !important}.x-list-item-dragging{border-bottom:1px solid #ccc;background:#fff !important;z-index:1}.x-indexbar-wrapper{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;pointer-events:none}.x-indexbar{pointer-events:auto;z-index:2;min-height:0 !important;height:auto !important;-webkit-box-flex:0 !important;-ms-flex:0 0 auto !important;flex:0 0 auto !important}.x-indexbar>div{font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-indexbar-vertical{width:15px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px}.x-indexbar-horizontal{height:15px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-phone.x-landscape .x-indexbar>div{font-size:0.38em;line-height:1em}.x-indexbar-pressed{background-color:#ccc}.x-form-label{display:none !important}.x-form-label span{font-weight:bold}.x-form-label-nowrap .x-form-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-field{display:flex;display:-webkit-box;display:-ms-flexbox}.x-field .x-field-input{position:relative;min-width:3.7em}.x-field .x-field-input,.x-field .x-input-el{width:100%}.x-field.x-field-labeled .x-form-label{display:block !important}.x-field .x-component-outer{position:relative}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-label-align-left .x-component-outer,.x-label-align-right .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-label-align-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-label-align-bottom{-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.x-input-el{display:block}.x-field-mask{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-ie .x-field.x-field-text .x-field-mask,.x-ie .x-field.x-field-textarea .x-field-mask,.x-ie .x-field.x-field-search .x-field-mask{z-index:-1}.x-field-required .x-form-label:after{content:"*";display:inline}.x-spinner .x-component-outer{display:flex;display:-webkit-box;display:-ms-flexbox}.x-spinner .x-component-outer>*{width:auto}.x-spinner .x-field-input{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-spinner .x-field-input .x-input-el{width:100%;text-align:center}.x-spinner .x-field-input input::-webkit-outer-spin-button,.x-spinner .x-field-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-spinner .x-spinner-button{text-align:center;border:1px solid #ccc !important;background-color:#eee}.x-spinner.x-field-grouped-buttons .x-input-el{text-align:left}.x-select-overlay .x-list-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.x-field-number input::-webkit-outer-spin-button,.x-field-number input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-field-input .x-clear-icon,.x-field-input .x-reveal-icon{display:none;width:10px;height:10px;background-color:#ccc;position:absolute;top:50%;right:0}.x-field-clearable .x-clear-icon{display:block}.x-field-clearable .x-field-input{padding-right:10px}.x-field-revealable .x-reveal-icon{display:block}.x-field-revealable .x-field-input{padding-right:10px}.x-field-clearable.x-field-revealable .x-reveal-icon{right:20px}.x-android .x-input-el{-webkit-text-fill-color:#000}.x-android .x-empty .x-input-el{-webkit-text-fill-color:#A9A9A9}.x-android .x-item-disabled .x-input-el{-webkit-text-fill-color:#b3b3b3}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ccc;overflow:hidden}.x-form-fieldset .x-dock .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-form-fieldset-title{font-weight:bold}.x-form-fieldset-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-form-fieldset-instructions{text-align:center}.x-ie .x-field-select .x-field-mask{z-index:3}.x-sheet.x-picker{padding:0}.x-sheet.x-picker .x-sheet-inner{background-color:#fff;overflow:hidden}.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body{border-left:1px solid #999999;border-right:1px solid #ACACAC}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body{border-left:0}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body{border-left:0;border-right:0}.x-picker-slot .x-scroll-view{z-index:2;position:relative}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none}.x-picker-slot-title{position:relative;z-index:2}.x-picker-slot-title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold}.x-picker-slot .x-dataview-inner{width:100% !important}.x-picker-slot .x-dataview-item{vertical-align:middle;height:30px;line-height:30px}.x-picker-slot .x-dataview-item.x-item-selected{font-weight:bold}.x-picker-slot .x-picker-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-ie .x-picker-item{cursor:default}.x-ie .x-picker-item::before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;clear:both}.x-list-paging.x-loading .x-loading-spinner{display:block}.x-list-paging.x-loading .x-list-paging-msg{display:none}.x-list-pullrefresh{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;top:-5em;left:0;width:100%;height:4.5em}.x-list-pullrefresh .x-loading-spinner{display:none}.x-list-pullrefresh-arrow{width:2.5em;height:4.5em;background-color:#bbb}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;text-align:center}.x-list-pullrefresh-updated{text-align:center}.x-list-pullrefresh-loading *.x-loading-spinner{display:block}.x-list-pullrefresh-loading .x-list-pullrefresh-arrow{display:none}.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner{display:none}.x-slider,.x-toggle{position:relative;height:16px;min-height:0;min-width:0}.x-slider>*,.x-toggle>*{position:absolute;width:100%;height:100%}.x-thumb{position:absolute;height:16px;width:10px;border:1px solid #ccc;background-color:#ddd}.x-slider:before{content:'';position:absolute;width:auto;height:8px;top:4px;left:0;right:0;margin:0 5px;background-color:#eee}.x-toggle{border:1px solid #ccc;width:30px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-toggle-on{background-color:#eee}.x-tab{z-index:1;overflow:visible !important;background-color:#eee;border:1px solid #ccc}.x-tabbar{border-color:#ccc;border-style:solid;border-width:0;background-color:#eee}.x-tabbar.x-docked-top{border-bottom-width:1px}.x-tabbar.x-docked-top .x-tab .x-button-icon{position:relative}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown{display:inline-block}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden{display:none}.x-tabbar.x-docked-bottom{border-top-width:1px}.x-tabbar.x-docked-bottom .x-tab .x-button-icon{display:block;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown{visibility:visible}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden{visibility:hidden}.x-tab{position:relative;min-width:3.3em}.x-table-inner{display:table !important;width:100% !important;height:100% !important}.x-table-inner.x-fixed-layout{table-layout:fixed !important}.x-table-row{display:table-row !important}.x-table-cell{display:table-cell !important;vertical-align:middle}.x-orientation-inspector{display:none;content:"landscape"}@media (orientation: portrait){.x-orientation-inspector{content:"portrait"}}.x-grid .x-grid-header-container{border-width:0 1px 1px 0;border-style:solid;height:65px;font-weight:bold;overflow:hidden}.x-grid .x-grid-header-container .x-grid-column{display:inline-block}.x-grid .x-grid-header-container .x-grid-header-container-inner{width:100000px;position:absolute;top:0;left:0}.x-grid .x-grid-column{height:64px;border-width:1px 1px 0 1px;border-style:solid;line-height:64px;vertical-align:middle;padding:0 8px}.x-grid .x-grid-column .x-innerhtml{display:inline-block;width:auto;position:relative}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{position:absolute;width:12px;line-height:64px;top:0;height:64px;font-family:'Pictos';font-size:12px}.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after,.x-grid .x-grid-column.x-column-align-center .x-innerhtml:after{right:-16px}.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after{left:-16px}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after{content:"{"}.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{content:"}"}.x-grid .x-grid-headergroup{display:inline-block;position:relative;vertical-align:bottom;height:64px;padding-top:32px}.x-grid .x-grid-headergroup .x-inner>.x-innerhtml{height:32px;line-height:28px;vertical-align:middle;display:block;position:absolute;width:100%;top:0;left:0;text-align:center;border-style:solid;border-width:1px;overflow:hidden;text-overflow:ellipsis}.x-grid .x-grid-headergroup .x-grid-column{height:32px !important;line-height:27px !important;font-size:0.7em}.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after{line-height:27px;height:27px}.x-grid .x-grid-row{position:absolute;left:0;top:0;border-width:0 0 1px 0;border-style:solid}.x-grid .x-grid-cell{display:inline-block;vertical-align:middle;line-height:60px;padding:0 8px;height:60px;overflow:hidden;border-width:0 1px 0 0}.x-grid .x-grid-cell-align-center,.x-grid .x-grid-column-align-center{text-align:center}.x-grid .x-grid-cell-align-right,.x-grid .x-grid-column-align-right{text-align:right}.x-grid .x-grid-viewoptions{border-width:0 0 0 1px;border-style:solid}.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml{padding:0px !important}.x-grid .x-grid-viewoptions .x-column-options-header{height:32px;line-height:28px;vertical-align:middle;border-style:solid;border-width:1px;overflow:hidden;padding-left:10px}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,.x-grid .x-grid-viewoptions .x-column-options-groupindicator,.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:40px;height:48px;position:absolute;bottom:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{position:absolute;top:0;left:0;height:100%;width:100%;text-align:center;font-size:24px;font-family:'Pictos';line-height:48px;content:"l";vertical-align:middle}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle{left:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after{line-height:54px}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator{right:0}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after{font-size:30px;line-height:54px;content:"E"}.x-grid .x-grid-viewoptions .x-column-options-groupindicator{right:40px}.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after{font-size:30px;line-height:54px;content:"g"}.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:30px;left:40px}.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{line-height:52px;content:"o"}.x-grid .x-grid-viewoptions .x-column-options-leaf:after{content:"F"}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl{background:transparent}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml{background:transparent}.x-grid .x-grid-viewoptions .x-column-options-text{display:block;height:30px;margin:10px 50px 5px 80px;position:relative;vertical-align:middle;line-height:28px}.x-grid .x-grid-columnoptions{border-width:0 0 1px}.x-grid .x-grid-multiselection-column{position:relative;padding:0}.x-grid .x-grid-multiselection-column:after{position:absolute;top:0;left:0;width:60px;height:64px;line-height:64px;font-family:'Pictos';font-size:26px;text-align:center;content:"2"}.x-grid .x-grid-multiselection-cell{position:relative;padding:0}.x-grid .x-grid-multiselection-cell:after{position:absolute;top:0;left:0;width:60px;height:60px;line-height:60px;font-family:'Pictos';font-size:20px;text-align:center;content:"_"}.x-grid .x-item-selected .x-grid-multiselection-cell:after{content:"3"}.x-grid .x-grid-pagingtoolbar>.x-body{padding:0 30px 0 50px}.x-grid .x-grid-pagingtoolbar-currentpage{position:relative;height:22px}.x-grid .x-grid-pagingtoolbar-currentpage span{position:absolute;right:0;top:0;line-height:22px;height:22px}.x-grid .x-grid-summaryrow{height:32px;font-size:0.8em;position:relative}.x-grid .x-grid-summaryrow .x-grid-cell{height:32px;line-height:30px;border-width:0 0 1px;border-style:solid}.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after{content:''}.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before,.x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-grid-header{line-height:44px;font-weight:bold;position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-grid-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap{border-top:0}.x-scroll-view{position:relative;display:block;overflow:hidden}.x-scroll-container{position:absolute;width:100%;height:100%}.x-scroll-scroller{position:absolute;min-width:100%;min-height:100%;height:auto !important;width:auto !important}.x-scroll-stretcher{position:absolute;visibility:hidden}.x-scroll-bar-grid-wrapper{position:absolute;width:100%;height:100%}.x-scroll-bar-grid{display:table;width:100%;height:100%}.x-scroll-bar-grid>*{display:table-row}.x-scroll-bar-grid>*>*{display:table-cell}.x-scroll-bar-grid>:first-child>:first-child{width:100%;height:100%}.x-scroll-bar-grid>:first-child>:nth-child(2){padding:3px 3px 0 0}.x-scroll-bar-grid>:nth-child(2)>:first-child{padding:0 0 3px 3px}.x-scroll-bar{position:relative;overflow:hidden}.x-scroll-bar-stretcher{position:absolute;visibility:hidden;width:100%;height:100%}.x-scroll-bar-x{width:100%}.x-scroll-bar-x>.x-scroll-bar-stretcher{width:300%}.x-scroll-bar-x.active{height:6px}.x-scroll-bar-y{height:100%}.x-scroll-bar-y>.x-scroll-bar-stretcher{height:300%}.x-scroll-bar-y.active{width:6px}.x-scroll-indicator{background:#333;position:absolute;z-index:3}.x-scroll-indicator-x{height:100%}.x-scroll-indicator-y{width:100%}.x-scroll-indicator.rounded{background:none}.x-scroll-indicator.rounded>*{position:absolute;background-color:#333}.x-scroll-indicator.rounded>:nth-child(2){-webkit-transform-origin:0% 0%;background:none;content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-light>*{background-color:#eee}.x-scroll-indicator.rounded.x-scroll-indicator-light>:nth-child(2){content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-y>*{width:100%}.x-scroll-indicator.rounded.x-scroll-indicator-y>:first-child{height:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:nth-child(2){height:1px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:last-child{height:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>*{height:100%}.x-scroll-indicator.rounded.x-scroll-indicator-x>:first-child{width:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:nth-child(2){width:1px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:last-child{width:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-list-light .x-scroll-indicator,.x-dataview-light .x-scroll-indicator{background:#fff}.x-ios .x-scroll-scroller{-webkit-transform:translate3d(0, 0, 0)}.x-ie .x-scroll-bar-y{position:absolute;margin-left:-5px}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:.5em .5em;transform-origin:.5em .5em}.x-loading-spinner>span,.x-loading-spinner>span:before,.x-loading-spinner>span:after{display:block;position:absolute;width:.1em;height:.25em;top:0;-webkit-transform-origin:.05em .5em;transform-origin:.05em .5em;content:" "}.x-loading-spinner>span{left:50%;margin-left:-0.05em}.x-loading-spinner>span.x-loading-top{background-color:rgba(170,170,170,0.99)}.x-loading-spinner>span.x-loading-top::after{background-color:rgba(170,170,170,0.9)}.x-loading-spinner>span.x-loading-left::before{background-color:rgba(170,170,170,0.8)}.x-loading-spinner>span.x-loading-left{background-color:rgba(170,170,170,0.7)}.x-loading-spinner>span.x-loading-left::after{background-color:rgba(170,170,170,0.6)}.x-loading-spinner>span.x-loading-bottom::before{background-color:rgba(170,170,170,0.5)}.x-loading-spinner>span.x-loading-bottom{background-color:rgba(170,170,170,0.4)}.x-loading-spinner>span.x-loading-bottom::after{background-color:rgba(170,170,170,0.35)}.x-loading-spinner>span.x-loading-right::before{background-color:rgba(170,170,170,0.3)}.x-loading-spinner>span.x-loading-right{background-color:rgba(170,170,170,0.25)}.x-loading-spinner>span.x-loading-right::after{background-color:rgba(170,170,170,0.2)}.x-loading-spinner>span.x-loading-top::before{background-color:rgba(170,170,170,0.15)}.x-loading-spinner>span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg)}.x-loading-spinner>span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg)}.x-loading-spinner>span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg)}.x-loading-spinner>span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg)}.x-loading-spinner>span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg)}.x-loading-spinner>span::after{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);-ms-transform:rotate(-30deg)}.x-loading-spinner{-webkit-animation-name:x-loading-spinner-rotate;-webkit-animation-duration:.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-name:x-loading-spinner-rotate;animation-duration:.5s;animation-timing-function:linear;animation-iteration-count:infinite}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-button{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;min-height:1.8em;padding:.3em .6em}.x-button,.x-toolbar .x-button{border:1px solid #999;border-top-color:#a6a6a6;background-color:#ccc;color:#000}.x-button.x-button-back:before,.x-button.x-button-forward:before,.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#999}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after,.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:none;background-color:#ccc;background-image:-webkit-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-moz-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-o-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-ms-linear-gradient(to bottom, #f2f2f2,#d9d9d9 3%,#bfbfbf)}.x-button.x-button-pressing,.x-button.x-button-pressing:after,.x-button.x-button-pressed,.x-button.x-button-pressed:after,.x-button.x-button-active,.x-button.x-button-active:after,.x-toolbar .x-button.x-button-pressing,.x-toolbar .x-button.x-button-pressing:after,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-pressed:after,.x-toolbar .x-button.x-button-active,.x-toolbar .x-button.x-button-active:after{background-image:none;background-color:#c4c4c4;background-image:-webkit-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-moz-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-o-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-ms-linear-gradient(to bottom, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6)}.x-button .x-button-icon{width:1.5em;height:1.5em}.x-button .x-button-icon:before{font-size:1.6em;line-height:1em}.x-button.x-item-disabled .x-button-label,.x-button.x-item-disabled .x-badge,.x-button.x-item-disabled .x-button-icon{opacity:.5}.x-button-round{-moz-border-radius:.9em;-webkit-border-radius:.9em;border-radius:.9em}.x-ie .x-button{height:0px}.x-ie .x-button .x-button-label,.x-ie .x-button .x-badge{overflow:visible}.x-iconalign-left .x-button-label,.x-iconalign-left .x-badge{margin-left:.6em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-badge{margin-right:.6em}.x-iconalign-top,.x-iconalign-bottom{padding-top:.2em !important;padding-bottom:.2em !important}.x-button-label,.x-badge,.x-hasbadge .x-badge{font-weight:bold;line-height:1.2em;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;font-size:1em}.x-toolbar .x-button{margin:6px .2em;padding:0 .6em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge{font-size:.7em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge,.x-toolbar .x-button .x-hasbadge .x-badge{line-height:1.6em}.x-toolbar .x-button .x-button-icon:before{font-size:1.3em;line-height:1.3em}.x-ie .x-toolbar .x-button .x-button-icon::before{font-size:.6em;line-height:1em}.x-button-small,.x-toolbar .x-button-small{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button-small .x-badge{font-size:.6em}.x-button-small .x-button-icon,.x-toolbar .x-button-small .x-button-icon{width:.75em;height:.75em}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.7em;z-index:1}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-button-back:before,.x-webkit .x-button-back:after{content:'';position:absolute;width:15px;height:auto;top:-2px;left:auto;bottom:-2px;z-index:2;-webkit-mask:4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:15px 100%;overflow:hidden}.x-webkit .x-button-back,.x-webkit .x-toolbar .x-button-back{margin-left:.77217em;padding-left:.4em}.x-webkit .x-button-back:before,.x-webkit .x-toolbar .x-button-back:before{left:-15px}.x-webkit .x-button-back:after,.x-webkit .x-toolbar .x-button-back:after{left:-14px}.x-webkit .x-button-forward,.x-webkit .x-toolbar .x-button-forward{margin-right:.78217em;padding-right:.4em}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:after{-webkit-mask:-4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:15px 100%}.x-webkit .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:before{right:-15px}.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:after{right:-14px}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;min-height:0;text-shadow:none;line-height:auto;height:1.9em;padding:0 0.5em;-moz-border-radius:none;-webkit-border-radius:none;border-radius:none}.x-button.x-button-plain>*,.x-toolbar .x-button.x-button-plain>*{overflow:visible}.x-button.x-button-plain.x-button-pressing,.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressing,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;background-image:-webkit-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-moz-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px);background-image:-ms-radial-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0) 24px)}.x-segmentedbutton .x-button{margin:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-segmentedbutton .x-button.x-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-segmentedbutton .x-button.x-last{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-segmentedbutton .x-button:not(.x-first){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{border-color:#900;min-width:2em;line-height:1.2em;top:-.2em;padding:.1em .3em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;color:#fcc;background-image:none;background-color:#c00;background-image:-webkit-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-moz-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-o-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-ms-linear-gradient(to bottom, #ff1a1a,#e60000 3%,#b30000);-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em}.x-sheet,.x-picker,.x-sheet-action{padding:.7em;border-top:1px solid #7f7f7f;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-sheet-inner>.x-button,.x-sheet-action-inner>.x-button{margin-bottom:.5em}.x-sheet-inner>.x-button:last-child,.x-sheet-action-inner>.x-button:last-child{margin-bottom:0}.x-msgbox{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-msgbox .x-icon{margin:0 0.8em 0 0.5em;background:#fff;-webkit-mask-size:100%}.x-msgbox .x-msgbox-info{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-warning{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-question{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-error{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC')}.x-msgbox .x-title{font-size:.9em;line-height:1.4em}.x-msgbox .x-body{background:transparent !important}.x-msgbox .x-toolbar{background:transparent none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-msgbox .x-toolbar.x-docked-top{height:1.3em}.x-msgbox .x-field{min-height:2em;background:#fff;-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em}.x-msgbox .x-form-field{min-height:1.5em;padding-right:0 !important;-webkit-appearance:none}.x-msgbox .x-field-input{padding-right:2.2em}.x-msgbox-text{padding:6px 0;line-height:1.4em}.x-msgbox-buttons{padding:0.4em 0;height:auto}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-toolbar{padding:0 .2em}.x-toolbar.x-docked-left{width:7em;padding:.2em}.x-toolbar.x-docked-right{width:7em;padding:.2em}.x-title{line-height:2.1em;font-size:1.2em;margin:0 0.3em;padding:0 .3em}.x-spinner .x-input-el,.x-field-select .x-input-el{-webkit-text-fill-color:#000;-webkit-opacity:1}.x-spinner.x-item-disabled .x-input-el,.x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:currentcolor}.x-toolbar .x-field-select .x-input-el{-webkit-text-fill-color:#fff}.x-toolbar .x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:rgba(255,255,255,0.6)}.x-toolbar .x-form-field-container{padding:0 .3em}.x-toolbar .x-slider-field .x-component-outer,.x-toolbar .x-toggle-field .x-component-outer{padding:0em .3em}.x-toolbar .x-field{width:13em;padding:.5em;min-height:0;border-bottom:0;background:transparent}.x-toolbar .x-field .x-clear-icon{background-size:50% 50%;right:-0.8em;margin-top:-1.06em}.x-toolbar .x-field-input{padding-right:1.6em !important}.x-toolbar .x-field-textarea .x-component-outer,.x-toolbar .x-field-text .x-component-outer,.x-toolbar .x-field-number .x-component-outer,.x-toolbar .x-field-search .x-component-outer{background-color:#fff;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset}.x-toolbar .x-form-label{background:transparent;border:0;padding:0;line-height:1.4em}.x-toolbar .x-form-field{height:1.6em;color:#6e6e6e;background:transparent;min-height:0;-webkit-appearance:none;padding:0em .3em;margin:0}.x-toolbar .x-form-field:focus{color:#000}.x-toolbar .x-field-select .x-component-outer,.x-toolbar .x-field-search .x-component-outer{-moz-border-radius:.8em;-webkit-border-radius:.8em;border-radius:.8em}.x-toolbar .x-field-search .x-field-input{background-position:.5em 50%}.x-toolbar .x-field-select{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-form-field{height:1.4em}.x-toolbar .x-field-select{background:transparent}.x-toolbar .x-field-select .x-component-outer:after{right:.4em}.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after{opacity:.6}.x-toolbar .x-field-select .x-component-outer:before{width:3em;border-left:none;-moz-border-radius-topright:.8em;-webkit-border-top-right-radius:.8em;border-top-right-radius:.8em;-moz-border-radius-bottomright:.8em;-webkit-border-bottom-right-radius:.8em;border-bottom-right-radius:.8em;-webkit-mask:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');-webkit-mask-position:right top;-webkit-mask-repeat:repeat-y;-webkit-mask-size:3em 0.05em}.x-toolbar .x-field-select .x-input-text{color:#fff}.x-android .x-field-search .x-field-input{padding-left:.2em !important;padding-right:2.2em !important}.x-form .x-scroll-container{background-color:#eee}.x-form .x-toolbar .x-scroll-container{background-color:transparent}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;padding:.6em;background-color:#f7f7f7;color:#080808}.x-form-label span{font-size:.8em}.x-button.border-radius-10{-moz-border-radius:10px !important;-webkit-border-radius:10px;border-radius:10px !important}.x-toolbar{background-color:transparent}.x-toolbar-edit{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb);border-color:#4c4c4c}.x-toolbar-edit .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-edit.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-edit .x-button.x-button-back:before,.x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-button.x-button-back:before,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-edit .x-button,.x-toolbar-edit .x-button.x-button-back:after,.x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button.x-button-back:after,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-edit .x-button.x-button-pressing,.x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar-edit .x-button.x-button-pressed,.x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar-edit .x-button.x-button-active,.x-toolbar-edit .x-button.x-button-active:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-button.x-button-active,.x-toolbar .x-toolbar-edit .x-button.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-edit .x-label,.x-toolbar-edit .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-toolbar{background-color:transparent}.x-toolbar-search{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-moz-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-o-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#e7e7e7 20%,#e7e7e7);border-color:#4c4c4c}.x-toolbar-search .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-search.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-search .x-button.x-button-back:before,.x-toolbar-search .x-button.x-button-forward:before,.x-toolbar .x-toolbar-search .x-button.x-button-back:before,.x-toolbar .x-toolbar-search .x-button.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-search .x-button,.x-toolbar-search .x-button.x-button-back:after,.x-toolbar-search .x-button.x-button-forward:after,.x-toolbar .x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button.x-button-back:after,.x-toolbar .x-toolbar-search .x-button.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-search .x-button.x-button-pressing,.x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar-search .x-button.x-button-pressed,.x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar-search .x-button.x-button-active,.x-toolbar-search .x-button.x-button-active:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressing,.x-toolbar .x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressed,.x-toolbar .x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-button.x-button-active,.x-toolbar .x-toolbar-search .x-button.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-search .x-label,.x-toolbar-search .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-button-icon.share,.list-icon.share{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 0px;background-size:72px 144px}.x-button-pressing .x-button-icon.share,.x-button-pressing .list-icon.share,.x-button-pressed .x-button-icon.share,.x-button-pressed .list-icon.share,.x-button-active .x-button-icon.share,.x-button-active .list-icon.share,.x-item-pressed .x-button-icon.share,.x-item-pressed .list-icon.share{background-position:-24px 0px}.x-button-icon.search,.list-icon.search{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -24px;background-size:72px 144px}.x-button-pressing .x-button-icon.search,.x-button-pressing .list-icon.search,.x-button-pressed .x-button-icon.search,.x-button-pressed .list-icon.search,.x-button-active .x-button-icon.search,.x-button-active .list-icon.search,.x-item-pressed .x-button-icon.search,.x-item-pressed .list-icon.search{background-position:-24px -24px}.x-button-icon.fullscreen,.list-icon.fullscreen{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -24px;background-size:72px 144px}.x-button-pressing .x-button-icon.fullscreen,.x-button-pressing .list-icon.fullscreen,.x-button-pressed .x-button-icon.fullscreen,.x-button-pressed .list-icon.fullscreen,.x-button-active .x-button-icon.fullscreen,.x-button-active .list-icon.fullscreen,.x-item-pressed .x-button-icon.fullscreen,.x-item-pressed .list-icon.fullscreen{background-position:-24px -24px}.x-button-icon.right,.list-icon.right{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -48px;background-size:72px 144px}.x-button-pressing .x-button-icon.right,.x-button-pressing .list-icon.right,.x-button-pressed .x-button-icon.right,.x-button-pressed .list-icon.right,.x-button-active .x-button-icon.right,.x-button-active .list-icon.right,.x-item-pressed .x-button-icon.right,.x-item-pressed .list-icon.right{background-position:-24px -48px}.x-button-icon.left,.list-icon.left{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -72px;background-size:72px 144px}.x-button-pressing .x-button-icon.left,.x-button-pressing .list-icon.left,.x-button-pressed .x-button-icon.left,.x-button-pressed .list-icon.left,.x-button-active .x-button-icon.left,.x-button-active .list-icon.left,.x-item-pressed .x-button-icon.left,.x-item-pressed .list-icon.left{background-position:-24px -72px}.x-button-icon.play,.list-icon.play{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -96px;background-size:72px 144px}.x-button-pressing .x-button-icon.play,.x-button-pressing .list-icon.play,.x-button-pressed .x-button-icon.play,.x-button-pressed .list-icon.play,.x-button-active .x-button-icon.play,.x-button-active .list-icon.play,.x-item-pressed .x-button-icon.play,.x-item-pressed .list-icon.play{background-position:-24px -96px}.x-button-icon.pause,.list-icon.pause{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -120px;background-size:72px 144px}.x-button-pressing .x-button-icon.pause,.x-button-pressing .list-icon.pause,.x-button-pressed .x-button-icon.pause,.x-button-pressed .list-icon.pause,.x-button-active .x-button-icon.pause,.x-button-active .list-icon.pause,.x-item-pressed .x-button-icon.pause,.x-item-pressed .list-icon.pause{background-position:-24px -120px}.x-button.x-button-base{padding:.3em 8px}.x-button.x-button-base,.x-toolbar .x-button.x-button-base{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-base .x-button-icon,.x-toolbar .x-button.x-button-base .x-button-icon{width:24px;height:24px}.x-button.x-button-base.x-button-forward:before,.x-button.x-button-base.x-button-forward:after,.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base .x-button-label,.x-button.x-button-base .x-badge,.x-toolbar .x-button.x-button-base .x-button-label,.x-toolbar .x-button.x-button-base .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-forward:before{background:#989898}.x-button.x-button-base,.x-button.x-button-base.x-button-back:after,.x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base,.x-toolbar .x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-base.x-button-pressing,.x-button.x-button-base.x-button-pressing:after,.x-button.x-button-base.x-button-pressed,.x-button.x-button-base.x-button-pressed:after,.x-button.x-button-base.x-button-active,.x-button.x-button-base.x-button-active:after,.x-toolbar .x-button.x-button-base.x-button-pressing,.x-toolbar .x-button.x-button-base.x-button-pressing:after,.x-toolbar .x-button.x-button-base.x-button-pressed,.x-toolbar .x-button.x-button-base.x-button-pressed:after,.x-toolbar .x-button.x-button-base.x-button-active,.x-toolbar .x-button.x-button-base.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-base.x-button-pressing .x-button-label,.x-button.x-button-base.x-button-pressing .x-badge,.x-button.x-button-base.x-button-pressed .x-button-label,.x-button.x-button-base.x-button-pressed .x-badge,.x-button.x-button-base.x-button-active .x-button-label,.x-button.x-button-base.x-button-active .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-base:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-light{padding:.3em 8px}.x-button.x-button-light,.x-toolbar .x-button.x-button-light{border:1px solid #c7c7c7;border-top-color:#d9d9d9;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#262626}.x-button.x-button-light .x-button-icon,.x-toolbar .x-button.x-button-light .x-button-icon{width:24px;height:24px}.x-button.x-button-light.x-button-forward:before,.x-button.x-button-light.x-button-forward:after,.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-light .x-button-label,.x-button.x-button-light .x-badge,.x-toolbar .x-button.x-button-light .x-button-label,.x-toolbar .x-button.x-button-light .x-badge{color:#666;text-shadow:#fff 0 0.09em 0}.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-forward:before{background:#ccc}.x-button.x-button-light,.x-button.x-button-light.x-button-back:after,.x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light,.x-toolbar .x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:after{background-image:none;background-color:#fff;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#ffffff)}.x-button.x-button-light.x-button-pressing,.x-button.x-button-light.x-button-pressing:after,.x-button.x-button-light.x-button-pressed,.x-button.x-button-light.x-button-pressed:after,.x-button.x-button-light.x-button-active,.x-button.x-button-light.x-button-active:after,.x-toolbar .x-button.x-button-light.x-button-pressing,.x-toolbar .x-button.x-button-light.x-button-pressing:after,.x-toolbar .x-button.x-button-light.x-button-pressed,.x-toolbar .x-button.x-button-light.x-button-pressed:after,.x-toolbar .x-button.x-button-light.x-button-active,.x-toolbar .x-button.x-button-light.x-button-active:after{background-image:none;background-color:#999;background-image:-webkit-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-moz-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-o-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-ms-linear-gradient(to bottom, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a)}.x-button.x-button-light.x-button-pressing .x-button-label,.x-button.x-button-light.x-button-pressing .x-badge,.x-button.x-button-light.x-button-pressed .x-button-label,.x-button.x-button-light.x-button-pressed .x-badge,.x-button.x-button-light.x-button-active .x-button-label,.x-button.x-button-light.x-button-active .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-light.x-button-active .x-button-label,.x-toolbar .x-button.x-button-light.x-button-active .x-badge{color:#fff;text-shadow:gray 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-light{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-light:not(.x-first){border-left:1px solid #c7c7c7}.x-segmentedbutton-base.divided .x-button-light:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-light.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-light.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-base-blue{padding:.3em 8px}.x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue{border:1px solid #2e519b;border-top-color:#3760b7;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#fff}.x-button.x-button-base-blue .x-button-icon,.x-toolbar .x-button.x-button-base-blue .x-button-icon{width:24px;height:24px}.x-button.x-button-base-blue.x-button-forward:before,.x-button.x-button-base-blue.x-button-forward:after,.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base-blue .x-button-label,.x-button.x-button-base-blue .x-badge,.x-toolbar .x-button.x-button-base-blue .x-button-label,.x-toolbar .x-button.x-button-base-blue .x-badge{color:#fff;text-shadow:#2e519b 0 -0.09em 0}.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before{background:#3155a3}.x-button.x-button-base-blue,.x-button.x-button-base-blue.x-button-back:after,.x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after{background-image:none;background-color:#688AD2;background-image:-webkit-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-moz-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-o-linear-gradient(top, #ffffff,#9bb2e1 3%,#688ad2);background-image:-ms-linear-gradient(to bottom, #ffffff,#9bb2e1 3%,#688ad2)}.x-button.x-button-base-blue.x-button-pressing,.x-button.x-button-base-blue.x-button-pressing:after,.x-button.x-button-base-blue.x-button-pressed,.x-button.x-button-base-blue.x-button-pressed:after,.x-button.x-button-base-blue.x-button-active,.x-button.x-button-base-blue.x-button-active:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressing,.x-toolbar .x-button.x-button-base-blue.x-button-pressing:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressed,.x-toolbar .x-button.x-button-base-blue.x-button-pressed:after,.x-toolbar .x-button.x-button-base-blue.x-button-active,.x-toolbar .x-button.x-button-base-blue.x-button-active:after{background-image:none;background-color:#416cc6;background-image:-webkit-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-moz-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-o-linear-gradient(top, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7);background-image:-ms-linear-gradient(to bottom, #3155a3,#3760b7 10%,#416cc6 65%,#436dc7)}.x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-button.x-button-base-blue.x-button-pressing .x-badge,.x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-button.x-button-base-blue.x-button-pressed .x-badge,.x-button.x-button-base-blue.x-button-active .x-button-label,.x-button.x-button-base-blue.x-button-active .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge{text-shadow:#2e519b 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base-blue{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first){border-left:1px solid #2e519b}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base-blue.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base-blue.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-back{padding:.3em 8px}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-back .x-button-icon,.x-toolbar .x-button.x-button-back .x-button-icon{width:24px;height:24px}.x-button.x-button-back.x-button-forward:before,.x-button.x-button-back.x-button-forward:after,.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-back .x-button-label,.x-button.x-button-back .x-badge,.x-toolbar .x-button.x-button-back .x-button-label,.x-toolbar .x-button.x-button-back .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-forward:before{background:#989898}.x-button.x-button-back,.x-button.x-button-back.x-button-back:after,.x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back,.x-toolbar .x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-back.x-button-pressing,.x-button.x-button-back.x-button-pressing:after,.x-button.x-button-back.x-button-pressed,.x-button.x-button-back.x-button-pressed:after,.x-button.x-button-back.x-button-active,.x-button.x-button-back.x-button-active:after,.x-toolbar .x-button.x-button-back.x-button-pressing,.x-toolbar .x-button.x-button-back.x-button-pressing:after,.x-toolbar .x-button.x-button-back.x-button-pressed,.x-toolbar .x-button.x-button-back.x-button-pressed:after,.x-toolbar .x-button.x-button-back.x-button-active,.x-toolbar .x-button.x-button-back.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-back.x-button-pressing .x-button-label,.x-button.x-button-back.x-button-pressing .x-badge,.x-button.x-button-back.x-button-pressed .x-button-label,.x-button.x-button-back.x-button-pressed .x-badge,.x-button.x-button-back.x-button-active .x-button-label,.x-button.x-button-back.x-button-active .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-back.x-button-active .x-button-label,.x-toolbar .x-button.x-button-back.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-back{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-back:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-back:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-back.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-back.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.unsuported-view{position:absolute;left:0;top:0;right:0;bottom:0;background:url(../img/ios-only.png) no-repeat center #efefef;background-attachment:fixed;z-index:90000}.x-button.text-offset-12{padding-left:12px;padding-right:12px}.x-button.text-offset-30{padding-left:30px;padding-right:30px} diff --git a/apps/presentationeditor/mobile/resources/sass/_application-base.scss b/apps/presentationeditor/mobile/resources/sass/_application-base.scss index e24d67a5c..b7d337a02 100644 --- a/apps/presentationeditor/mobile/resources/sass/_application-base.scss +++ b/apps/presentationeditor/mobile/resources/sass/_application-base.scss @@ -13,23 +13,42 @@ $icons-default-size : 24px; $icons-default-image-width : 72px; $icons-default-image-height : 144px; -@import 'sencha-touch/default/all'; +@import 'sencha-touch/default'; + +@import 'sencha-touch/default/src/Class'; +@import 'sencha-touch/default/src/Button'; +//@import 'sencha-touch/default/src/Panel'; +@import 'sencha-touch/default/src/Sheet'; +@import 'sencha-touch/default/src/MessageBox'; +@import 'sencha-touch/default/src/Toolbar'; +//@import 'sencha-touch/default/src/Toast'; +//@import 'sencha-touch/default/src/Menu'; +//@import 'sencha-touch/default/src/carousel/Carousel'; +@import 'sencha-touch/default/src/form/Panel'; +//@import 'sencha-touch/default/src/form/FieldSet'; +//@import 'sencha-touch/default/src/field/Field'; +//@import 'sencha-touch/default/src/field/Checkbox'; +//@import 'sencha-touch/default/src/field/Radio'; +//@import 'sencha-touch/default/src/field/Search'; +//@import 'sencha-touch/default/src/field/Select'; +//@import 'sencha-touch/default/src/field/Slider'; +//@import 'sencha-touch/default/src/field/Spinner'; +//@import 'sencha-touch/default/src/field/TextArea'; +//@import 'sencha-touch/default/src/dataview/IndexBar'; +//@import 'sencha-touch/default/src/dataview/List'; +//@import 'sencha-touch/default/src/picker/Picker'; +//@import 'sencha-touch/default/src/plugin/ListPaging'; +//@import 'sencha-touch/default/src/plugin/PullRefresh'; +//@import 'sencha-touch/default/src/slider/Slider'; +//@import 'sencha-touch/default/src/slider/Toggle'; +//@import 'sencha-touch/default/src/tab/Panel'; +//@import 'sencha-touch/default/src/grid/Grid'; @import 'common-buttons'; @import 'common-toolbar'; @import 'application-mixins'; -@include sencha-panel; -@include sencha-buttons; -@include sencha-toolbar; -@include sencha-toolbar-forms; -@include sencha-indexbar; -@include sencha-layout; -@include sencha-form; -@include sencha-msgbox; -@include sencha-loading-spinner; - @include common-toolbar-ui('edit', $base-color); @include common-toolbar-ui('search', $base-color); diff --git a/apps/presentationeditor/mobile/resources/sass/config-debug.rb b/apps/presentationeditor/mobile/resources/sass/config-debug.rb index 3d5dde25b..11b745b4b 100644 --- a/apps/presentationeditor/mobile/resources/sass/config-debug.rb +++ b/apps/presentationeditor/mobile/resources/sass/config-debug.rb @@ -10,5 +10,6 @@ add_import_path File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', ' # Compass configurations sass_path = dir css_path = File.join(dir, "..", "css") -environment = :development -output_style = :expanded \ No newline at end of file +fonts_path = File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'fonts') +environment = :production +output_style = :compressed \ No newline at end of file diff --git a/apps/presentationeditor/mobile/resources/sass/config.rb b/apps/presentationeditor/mobile/resources/sass/config.rb index a6e8dbbab..11b745b4b 100644 --- a/apps/presentationeditor/mobile/resources/sass/config.rb +++ b/apps/presentationeditor/mobile/resources/sass/config.rb @@ -10,5 +10,6 @@ add_import_path File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', ' # Compass configurations sass_path = dir css_path = File.join(dir, "..", "css") +fonts_path = File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'fonts') environment = :production output_style = :compressed \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/resources/css/application-normal.css b/apps/spreadsheeteditor/mobile/resources/css/application-normal.css index 377742e10..f53fa3047 100644 --- a/apps/spreadsheeteditor/mobile/resources/css/application-normal.css +++ b/apps/spreadsheeteditor/mobile/resources/css/application-normal.css @@ -1,11307 +1 @@ -/* line 3, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, -h4, h5, h6, pre, code, form, fieldset, legend, -input, textarea, p, blockquote, th, td { - margin: 0; - padding: 0; -} - -/* line 8, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/* line 13, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -fieldset, img { - border: 0; -} - -/* line 18, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -address, caption, cite, code, -dfn, em, strong, th, var { - font-style: normal; - font-weight: normal; -} - -/* line 23, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -li { - list-style: none; -} - -/* line 27, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -caption, th { - text-align: left; -} - -/* line 31, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -h1, h2, h3, h4, h5, h6 { - font-size: 100%; - font-weight: normal; -} - -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -q:before, -q:after { - content: ""; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -abbr, acronym { - border: 0; - font-variant: normal; -} - -/* line 46, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sup { - vertical-align: text-top; -} - -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sub { - vertical-align: text-bottom; -} - -/* line 54, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -input, textarea, select { - font-family: inherit; - font-size: inherit; - font-weight: inherit; -} - -/* line 60, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -*:focus { - outline: none; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 10, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -html, body { - font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif; - font-weight: normal; - position: relative; - -webkit-text-size-adjust: none; -} - -/* line 17, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - overflow: hidden; -} - -/* line 21, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -*, *:after, *:before { - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -webkit-touch-callout: none; - -webkit-user-drag: none; -} - -/* line 29, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-ios.x-tablet .x-landscape * { - -webkit-text-stroke: 1px transparent; -} - -/* line 33, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body { - font-size: 104%; -} - -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone { - font-size: 116%; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone.x-silk { - font-size: 130%; -} - -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-ios.x-phone { - font-size: 114%; -} - -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - font-size: 114%; -} - -/* line 53, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -input, textarea { - -webkit-user-select: text; -} - -/* line 57, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-visibility { - visibility: hidden !important; -} - -/* line 61, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-display, .x-field-hidden { - display: none !important; -} - -/* line 65, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-offsets { - position: absolute !important; - left: -10000em; - top: -10000em; - visibility: hidden; -} - -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-fullscreen { - position: absolute !important; -} - -/* line 79, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-desktop .x-body-stretcher { - margin-bottom: 0px; -} - -/* line 83, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: 100%; - z-index: 10; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - background: rgba(0, 0, 0, 0.3) center center no-repeat; -} -/* line 100, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-gray { - background-color: rgba(0, 0, 0, 0.5); -} -/* line 104, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-transparent { - background-color: transparent; -} -/* line 108, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-inner { - position: relative; - background: rgba(0, 0, 0, 0.25); - color: #fff; - text-align: center; - padding: .4em; - font-size: .95em; - font-weight: bold; - -webkit-border-radius: 0.5em; - border-radius: 0.5em; -} -/* line 119, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-loading-spinner-outer { - display: -webkit-box; - display: box; - -webkit-box-orient: vertical; - box-orient: vertical; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - width: 100%; - min-width: 8.5em; - height: 8.5em; -} -/* line 130, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-inner { - padding-bottom: 0 !important; -} -/* line 133, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-loading-spinner-outer { - display: none; -} -/* line 136, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-message { - position: relative; - bottom: .25em; -} -/* line 142, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-message { - position: absolute; - bottom: 1.7em; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-flex: 0 !important; - max-width: 13em; - min-width: 8.5em; -} -/* line 152, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-mask-inner { - padding-bottom: 2em; -} -/* line 156, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-loading-spinner-outer { - height: 7.5em; -} - -/* line 162, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-draggable { - z-index: 1; -} - -/* line 166, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-dragging { - opacity: 0.7; -} - -/* line 170, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-panel-list { - background-color: white; -} - -/* line 175, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html { - -webkit-user-select: auto; - -webkit-touch-callout: inherit; - line-height: 1.5; - color: #333; - font-size: .8em; - padding: 1.2em; -} -/* line 33, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html body { - line-height: 1.5; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - color: #333333; - font-size: 75%; -} -/* line 51, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 { - font-weight: normal; - color: #222222; -} -/* line 52, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img { - margin: 0; -} -/* line 53, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 { - font-size: 3em; - line-height: 1; - margin-bottom: 0.50em; -} -/* line 54, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h2 { - font-size: 2em; - margin-bottom: 0.75em; -} -/* line 55, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h3 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; -} -/* line 56, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h4 { - font-size: 1.2em; - line-height: 1.25; - margin-bottom: 1.25em; -} -/* line 57, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h5 { - font-size: 1em; - font-weight: bold; - margin-bottom: 1.50em; -} -/* line 58, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h6 { - font-size: 1em; - font-weight: bold; -} -/* line 59, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p { - margin: 0 0 1.5em; -} -/* line 60, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .left { - display: inline; - float: left; - margin: 1.5em 1.5em 1.5em 0; - padding: 0; -} -/* line 61, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .right { - display: inline; - float: right; - margin: 1.5em 0 1.5em 1.5em; - padding: 0; -} -/* line 62, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html a { - text-decoration: underline; - color: #0066cc; -} -/* line 18, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:visited { - color: #004c99; -} -/* line 21, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:focus { - color: #0099ff; -} -/* line 24, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:hover { - color: #0099ff; -} -/* line 27, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:active { - color: #bf00ff; -} -/* line 63, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html blockquote { - margin: 1.5em; - color: #666666; - font-style: italic; -} -/* line 64, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html strong, .x-html dfn { - font-weight: bold; -} -/* line 65, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html em, .x-html dfn { - font-style: italic; -} -/* line 66, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html sup, .x-html sub { - line-height: 0; -} -/* line 67, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html abbr, .x-html acronym { - border-bottom: 1px dotted #666666; -} -/* line 68, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html address { - margin: 0 0 1.5em; - font-style: italic; -} -/* line 69, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html del { - color: #666666; -} -/* line 70, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre { - margin: 1.5em 0; - white-space: pre; -} -/* line 71, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre, .x-html code, .x-html tt { - font: 1em "andale mono", "lucida console", monospace; - line-height: 1.5; -} -/* line 72, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html li ul, .x-html li ol { - margin: 0; -} -/* line 73, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul, .x-html ol { - margin: 0 1.5em 1.5em 0; - padding-left: 1.5em; -} -/* line 74, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul { - list-style-type: disc; -} -/* line 75, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ol { - list-style-type: decimal; -} -/* line 76, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl { - margin: 0 0 1.5em 0; -} -/* line 77, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl dt { - font-weight: bold; -} -/* line 78, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dd { - margin-left: 1.5em; -} -/* line 79, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table { - margin-bottom: 1.4em; - width: 100%; -} -/* line 80, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th { - font-weight: bold; -} -/* line 81, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html thead th { - background: #c3d9ff; -} -/* line 82, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th, .x-html td, .x-html caption { - padding: 4px 10px 4px 5px; -} -/* line 85, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table.striped tr:nth-child(even) td, -.x-html table tr.even td { - background: #e5ecf9; -} -/* line 86, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html tfoot { - font-style: italic; -} -/* line 87, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html caption { - background: #eeeeee; -} -/* line 88, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .quiet { - color: #666666; -} -/* line 89, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .loud { - color: #111111; -} -/* line 185, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ul li { - list-style-type: circle; -} -/* line 188, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ol li { - list-style-type: decimal; -} - -/* line 194, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-video { - background-color: #000; -} - -/* line 198, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-sortable .x-dragging { - opacity: 1; - z-index: 5; -} - -/* line 203, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-layout-card-item { - background: #eeeeee; -} - -/* line 1, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map { - background-color: #edeae2; -} -/* line 3, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map * { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -/* line 9, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-mask-map { - background: transparent !important; -} - -/* line 13, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map-container { - position: absolute !important; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Toolbar - */ -/** - * @var {color} $toolbar-base-color - * The primary color variable from which toolbars derive their light and dark UIs. - */ -/** - * @var {measurement} $toolbar-spacing - * Space between items in a toolbar (like buttons and fields) - */ -/** - * @var {string} $toolbar-gradient - * Background gradient style for toolbars. - */ -/** - * @var {boolean} $include-toolbar-uis - * Optionally disable separate toolbar UIs (light and dark). - */ -/** - * Includes default toolbar styles. - */ -/** - * Creates a theme UI for toolbars. - * - * // SCSS - * @include sencha-toolbar-ui('sub', #58710D, 'glossy'); - * - * // JS - * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'}) - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Button - */ -/** - * @var {measurement} $button-height Default height for buttons. - */ -/** - * @var {measurement} $button-radius Default border-radius for buttons. - */ -/** - * @var {measurement} $button-stroke-weight Default border width for buttons. - */ -/** - * @var {string} $button-gradient Default gradient for buttons. - */ -/** - * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons. - */ -/** - * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline. - */ -/** - * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows. - */ -/** - * Includes default button styles. - */ -/** - * Creates a theme UI for buttons. - * Also automatically generates UIs for {ui-label}-round and {ui-label}-small. - * - * // SCSS - * @include sencha-button-ui('secondary', #99A4AE, 'glossy'); - * - * // JS - * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'}); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.tab.Bar - */ -/** - * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark). - */ -/** - * @var {boolean} $include-top-tabs - * Optionally exclude top tab styles by setting to false. - */ -/** - * @var {boolean} $include-bottom-tabs - * Optionally exclude bottom tab styles by setting to false. - */ -/** - * @var {color} $tabs-light - * Base color for "light" UI tabs. - */ -/** - * @var {color} $tabs-light-active - * Active color for "light" UI tabs. - */ -/** - * @var {color} $tabs-dark - * Base color for "dark" UI tabs. - */ -/** - * @var {color} $tabs-dark-active - * Active color for "dark" UI tabs. - */ -/** - * @var {string} $tabs-bar-gradient - * Background gradient style for tab bars. - */ -/** - * @class Ext.tab.Tab - */ -/** - * @var {string} $tabs-bottom-radius - * Border-radius for bottom tabs. - */ -/** - * @var {string} $tabs-bottom-icon-size - * Icon size for bottom tabs - */ -/** - * @var {string} $tabs-bottom-active-gradient - * Background gradient style for active bottom tabs. - */ -/** - * @var {boolean} $include-tab-highlights - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * Includes default tab styles. - * - * @member Ext.tab.Bar - */ -/** - * Creates a theme UI for tabbar/tab components. - * - * // SCSS - * @include sencha-button-ui('pink', #333, 'matte', #AE537A); - * - * // JS - * var tabs = new Ext.tab.Panel({ - * tabBar: { - * ui: 'pink', - * dock: 'bottom', - * layout: { pack: 'center' } - * }, - * ... - * }); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $bar-color Base color for the tab bar. - * @param {string} $bar-gradient Background gradient style for the tab bar. - * @param {color} $tab-active-color Background-color for active tab icons. - * - * @member Ext.tab.Bar - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.carousel.Indicator - */ -/** - * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots. - */ -/** - * @var {measurement} $carousel-indicator-spacing - * Amount of space between carousel indicator dots. - */ -/** - * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in. - */ -/** - * Creates a theme UI for carousel indicator components. - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - * @param {color} $active-color Active color for the UI. - * @param {string} $active-gradient Active gradient for the UI. - */ -/** - * @class Ext.carousel.Carousel - */ -/** - * Includes basic carousel formatting. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.IndexBar - */ -/** - * @var {measurement} $index-bar-width - * Width of the index bar. - */ -/** - * @var {color} $index-bar-bg-color - * Background-color of the index bar. - */ -/** - * @var {color} $index-bar-color - * Text color of the index bar. - */ -/** - * Includes default index bar styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.List - */ -/** - * @var {color} $list-color - * Text color for list rows. - */ -/** - * @var {color} $list-bg-color - * Background-color for list rows. - */ -/** - * @var {color} $include-list-highlights - * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $list-zebrastripe - * Optionally zebra-stripe the list (alternating background colors). - */ -/** - * @var {color} $list-pressed-color - * Background-color for pressed list rows. - */ -/** - * @var {color} $list-active-color - * Background-color for selected list rows. - */ -/** - * @var {string} $list-active-gradient - * Gradient style for selected list rows. - */ -/** - * @var {color} $list-header-bg-color - * Background-color for list header rows (in grouped lists). - */ -/** - * @var {string} $list-header-gradient - * Gradient style for list header rows (in grouped lists). - */ -/** - * @var {measurement} $list-disclosure-size - * Default size (width/height) for disclosure icons. - */ -/** - * @var {measurement} $list-disclosure-round-size - * Default size (width/height) for disclosure icons in a list with a `round` ui. - */ -/** - * @var {measurement} $list-round-padding - * Default padding for lists with a `round` ui. - */ -/** - * Includes default list styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * Includes default form slider styles. - * - * @member Ext.field.Slider - */ -/** - * @var {color} $form-bg-color - * Default background-color for forms. - * - * @member Ext.form.Panel - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $form-field-bg-color - * Default background-color for form fields. - */ -/** - * @var {color} $form-light - * Light color for form fields, mostly used on field borders. - */ -/** - * @var {color} $form-dark - * Dark color for form fields, mostly used on labels/text. - */ -/** - * @var {measurement} $form-label-width - * Default width for form labels. - */ -/** - * @var {color} $form-label-background-color - * The default background color for labels - */ -/** - * @var {measurement} $form-field-height - * Default height for form fields. - */ -/** - * @var {measurement} $form-spacing - * Default spacing for form fields, used for padding, etc. - */ -/** - * @var {measurement} $form-textarea-height - * Default height for form textareas. - * - * @member Ext.field.TextArea - */ -/** - * @var {measurement} $form-thumb-size - * Default size of "thumbs" for form sliders/toggles. - * - * @member Ext.field.Slider - */ -/** - * @var {measurement} $form-toggle-size - * Thumb size minus padding for inset thumbs like in a Toggle element. - * - * @member Ext.field.Toggle - */ -/** - * @var {measurement} $form-fieldset-radius - * Default border-radius for form fieldsets. - * - * @member Ext.form.FieldSet - */ -/** - * @var {measurement} $form-slider-size - * Height of the slider "track." - * - * @member Ext.field.Slider - */ -/** - * Includes default form styles. - * - * @member Ext.form.Panel - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Sheet - */ -/** - * @var {color} $sheet-bg-color - * Background-color for action sheets and message boxes. - */ -/** - * @var {color} $sheet-bg-gradient - * Background gradient style for action sheets and message boxes. - */ -/** - * @var {measurement} $sheet-button-spacing - * Vertical spacing between sheet buttons. - */ -/** - * @var {measurement} $sheet-padding - * Overall padding in a sheet. - */ -/** - * Includes default sheet styles (also required for message box). - */ -/** - * Includes default message box styles. - * - * @member Ext.MessageBox - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $toolbar-input-bg - * Background-color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-color - * Text color for toolbar form fields. - */ -/** - * @var {measurement} $toolbar-input-height - * Text color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-border-color - * Border color for toolbar form fields. - */ -/** - * Includes default toolbar form field styles. - * - * @member Ext.tab.Bar - */ -/** - * @class Ext.LoadMask - */ -/** - * @var {color} $loading-spinner-color - * Background-color for the bars in the loading spinner. - */ -/** - * Includes default loading spinner styles (for dataviews). - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 4, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image { - text-align: center; -} -/* line 7, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image img { - width: auto; - height: 100%; -} -/* line 13, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-background { - background-repeat: no-repeat; - background-position: center; - background-size: auto 100%; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 3, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video { - height: 100%; - width: 100%; -} - -/* line 8, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video > * { - height: 100%; - width: 100%; - position: absolute; -} - -/* line 14, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video-ghost { - -webkit-background-size: 100% auto; - background: black url() center center no-repeat; -} - -/* line 19, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -audio { - width: 100%; -} - -/* line 8, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel, -.x-msgbox, -.x-panel-body { - position: relative; -} - -/* line 15, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating, -.x-msgbox, -.x-form.x-floating { - padding: 6px; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - background-image: none; - background-color: #656565; -} -/* line 21, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating.x-floating-light, -.x-msgbox.x-floating-light, -.x-form.x-floating.x-floating-light { - background-image: none; - background-color: #cbcbcb; -} -/* line 26, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating .x-panel-inner, -.x-panel.x-floating > .x-body, -.x-msgbox .x-panel-inner, -.x-msgbox > .x-body, -.x-form.x-floating .x-panel-inner, -.x-form.x-floating > .x-body { - z-index: 1; - background-color: #fff; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 35, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock, -.x-msgbox > .x-dock, -.x-form.x-floating > .x-dock { - z-index: 1; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock.x-sized, -.x-msgbox > .x-dock.x-sized, -.x-form.x-floating > .x-dock.x-sized { - margin: 6px; -} - -/* line 48, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor { - position: absolute; - overflow: hidden; -} -/* line 53, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-top { - margin-top: -0.68em; - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-bottom { - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-left { - margin-left: -0.6655em; - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} -/* line 82, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-right { - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} - -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-floating.x-panel-light:after { - background-color: #cbcbcb; -} - -/* line 52, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - min-height: 1.8em; - padding: 0.3em 0.6em; - position: relative; - overflow: hidden; - -webkit-user-select: none; - z-index: 1; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-toolbar .x-button { - border: 1px solid #999999; - border-top-color: #a6a6a6; - color: black; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before { - background: #999999; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after { - background-image: none; - background-color: #cccccc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf)); - background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); - background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after { - background-image: none; - background-color: #c4c4c4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6)); - background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); - background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); -} -/* line 66, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon { - width: 2.1em; - height: 2.1em; - background-repeat: no-repeat; - background-position: center; - display: block; -} -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon.x-icon-mask { - width: 1.1em; - height: 1.1em; - -webkit-mask-size: 1.1em; -} -/* line 80, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon { - opacity: .5; -} - -/* line 86, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-round { - -webkit-border-radius: 0.9em; - border-radius: 0.9em; -} - -/* line 92, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left, .x-icon-align-right { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} - -/* line 95, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top, .x-iconalign-bottom { - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 98, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom, .x-iconalign-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} - -/* line 101, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-center { - -webkit-box-pack: center; - box-pack: center; -} - -/* line 104, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge { - margin-left: 0.3em; -} - -/* line 107, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge { - margin-right: 0.3em; -} - -/* line 110, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge { - margin-top: 0.3em; -} - -/* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge { - margin-bottom: 0.3em; -} - -/* line 118, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-label, .x-hasbadge .x-badge { - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-align: center; - box-align: center; - white-space: nowrap; - text-overflow: ellipsis; - text-align: center; - font-weight: bold; - line-height: 1.2em; - display: block; - overflow: hidden; -} - -/* line 131, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button { - margin: 0 0.2em; - padding: 0.3em 0.6em; -} -/* line 135, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge { - font-size: .7em; -} -/* line 139, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge { - line-height: 1.6em; -} - -/* line 144, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small, .x-toolbar .x-button-small { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - padding: 0.2em 0.4em; - min-height: 0; -} -/* line 149, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge { - font-size: .6em; -} -/* line 153, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon { - width: .75em; - height: .75em; -} -/* line 157, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask { - -webkit-mask-size: .75em; -} - -/* line 175, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, .x-button-back { - position: relative; - overflow: visible; - height: 1.7em; - z-index: 1; -} -/* line 180, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after { - content: ""; - position: absolute; - width: 0.80717em; - height: 1.8em; - top: -0.1em; - left: auto; - z-index: 2; - -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat; - -webkit-mask-size: 0.80717em 1.8em; - overflow: hidden; -} - -/* line 190, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back, -.x-toolbar .x-button-back { - margin-left: 0.87217em; - padding-left: .4em; -} -/* line 193, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:before, -.x-toolbar .x-button-back:before { - left: -0.72717em; -} -/* line 196, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:after, -.x-toolbar .x-button-back:after { - left: -0.68217em; -} - -/* line 202, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, -.x-toolbar .x-button-forward { - margin-right: 0.88217em; - padding-right: .4em; -} -/* line 205, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, -.x-toolbar .x-button-forward:before, -.x-toolbar .x-button-forward:after { - -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat; -} -/* line 208, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, -.x-toolbar .x-button-forward:before { - right: -0.72717em; -} -/* line 211, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:after, -.x-toolbar .x-button-forward:after { - right: -0.68217em; -} - -/* line 219, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain, -.x-toolbar .x-button.x-button-plain { - background: none; - border: 0 none; - -webkit-border-radius: none; - border-radius: none; - min-height: 0; - text-shadow: none; - line-height: auto; - height: 1.9em; - padding: 0em 0.5em; -} -/* line 229, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain > *, -.x-toolbar .x-button.x-button-plain > * { - overflow: visible; -} -/* line 233, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain .x-button-icon, -.x-toolbar .x-button.x-button-plain .x-button-icon { - -webkit-mask-size: 1em; - width: 1em; - height: 1em; -} -/* line 239, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed, -.x-toolbar .x-button.x-button-plain.x-button-pressing, -.x-toolbar .x-button.x-button-plain.x-button-pressed { - background: none; - background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(236, 240, 225, 0.7)), color-stop(100%, rgba(236, 240, 225, 0))); - background-image: -webkit-radial-gradient(rgba(236, 240, 225, 0.7), rgba(236, 240, 225, 0) 24px); - background-image: radial-gradient(rgba(236, 240, 225, 0.7), rgba(236, 240, 225, 0) 24px); -} -/* line 244, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); - background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); -} - -/* line 251, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button { - margin: 0; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 257, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-first { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 260, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-last { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 265, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button:not(.x-first) { - border-left: 0; -} - -/* line 276, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge { - overflow: visible; -} -/* line 278, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge .x-badge { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; - padding: 0.1em 0.3em; - z-index: 2; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - overflow: hidden; - color: #ffcccc; - border: 1px solid #990000; - position: absolute; - width: auto; - min-width: 2em; - line-height: 1.2em; - font-size: .6em; - right: 0px; - top: -.2em; - max-width: 95%; - background-image: none; - background-color: #cc0000; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000)); - background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - display: inline-block; -} - -/* line 36, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar { - padding: 0 0.2em; - position: relative; -} -/* line 46, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-top { - border-bottom: 0.1em solid; -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-bottom { - border-top: 0.1em solid; -} -/* line 54, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-left { - width: 7em; - height: auto; - padding: 0.2em; - border-right: 0.1em solid; -} -/* line 61, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-right { - width: 7em; - height: auto; - padding: 0.2em; - border-left: 0.1em solid; -} - -/* line 69, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title { - line-height: 2.1em; - font-size: 1.2em; - text-align: center; - font-weight: bold; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: 0 0.3em; - padding: 0 0.3em; - max-width: 100%; -} -/* line 81, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 103, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-navigation-bar .x-container { - overflow: visible; -} - -/* line 43, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner .x-input-el, -.x-field-select .x-input-el { - -webkit-text-fill-color: #000; - -webkit-opacity: 1; -} - -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner.x-item-disabled .x-input-el, -.x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: currentcolor; -} - -/* line 54, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-el { - -webkit-text-fill-color: #fff; -} - -/* line 58, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: rgba(255, 255, 255, 0.6); -} - -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field-container { - padding: 0 0.3em; -} -/* line 67, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field { - width: 13em; - margin: .5em; - min-height: 0; - border-bottom: 0; - background: transparent; -} -/* line 74, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field .x-clear-icon { - background-size: 50% 50%; - right: -0.8em; - margin-top: -1.06em; -} -/* line 81, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-input { - padding-right: 1.6em !important; -} -/* line 89, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-textarea .x-component-outer, -.x-toolbar .x-field-text .x-component-outer, -.x-toolbar .x-field-number .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - background-color: white; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; -} -/* line 99, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-label { - background: transparent; - border: 0; - padding: 0; - line-height: 1.4em; -} -/* line 106, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field { - height: 1.6em; - color: #6e6e6e; - background: transparent; - min-height: 0; - -webkit-appearance: none; - padding: 0em 0.3em; - margin: 0; -} -/* line 115, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field:focus { - color: black; -} -/* line 122, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.8em; - border-radius: 0.8em; -} -/* line 128, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-search .x-field-input { - background-position: 0.5em 50%; -} -/* line 133, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - -webkit-box-shadow: none; -} -/* line 136, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-form-field { - height: 1.4em; -} -/* line 141, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - background: transparent; -} -/* line 145, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:after { - right: .4em; -} -/* line 151, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after { - opacity: .6; -} -/* line 157, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:before { - width: 3em; - border-left: none; - -webkit-border-top-right-radius: 0.8em; - border-top-right-radius: 0.8em; - -webkit-border-bottom-right-radius: 0.8em; - border-bottom-right-radius: 0.8em; - -webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC'); - -webkit-mask-position: right top; - -webkit-mask-repeat: repeat-y; - -webkit-mask-size: 3em 0.05em; -} -/* line 172, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-text { - color: #fff; -} - -/* line 178, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-android .x-field-search .x-field-input { - padding-left: 0.2em !important; - padding-right: 2.2em !important; -} - -/* line 29, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-wrapper { - -webkit-box-pack: end !important; - box-pack: end !important; - pointer-events: none; -} - -/* line 35, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-vertical { - width: 1.1em; - -webkit-box-orient: vertical; - box-orient: vertical; - margin-right: 8px; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-horizontal { - height: 1.1em; - -webkit-box-orient: horizontal; - box-orient: horizontal; - margin-bottom: 8px; -} - -/* line 47, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar { - pointer-events: auto; - z-index: 2; - padding: 0.3em 0; - min-height: 0 !important; - height: auto !important; - -webkit-box-flex: 0 !important; -} -/* line 55, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar > div { - color: #a5a5a5; - font-size: 0.6em; - text-align: center; - line-height: 1.1em; - font-weight: bold; - display: block; -} - -/* line 66, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-phone.x-landscape .x-indexbar > div { - font-size: 0.38em; - line-height: 1em; -} - -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-pressed { - -webkit-border-radius: 0.55em; - border-radius: 0.55em; - background-color: rgba(163, 143, 143, 0.8); -} - -/* line 84, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list { - position: relative; - background-color: #f7f7f7; - overflow: hidden; -} -/* line 89, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-inner { - width: 100% !important; -} -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-disclosure { - overflow: visible; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNCM0JGNTZFMjI2ODExQkNGQjkwMzk3MDc3MkZFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3M0MzQUU1QUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3M0MzQUU1OUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU3Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+uoWjuwAACh9JREFUeNrUm2toVdkVx7eJRqPRaHzFGBOjidGYaLQaX9GREXXAkloYQVpT+qFYBkcqLS0zTKFQWpwv86F0KLRfHFqnWDq0UCsMFYqlqHSwGo2v4Du+X9FoNL5P12/N3rLn9Cb33HNvrnHDujfnnHvO2f+91l57/dfaGWBe8xYEQUq/H5ilftWIVIoU2+Ov2e/jIt0inSKnRVpEnvdlR/oK8CKRt0QaRd4QyU3hXkDvFvmXyOeZHoABGXzWWJF3RL4rUuFfKC4uNmPHjjUjRozQ44kTJ+r3jRs3zNOnT013d7e5deuWuXTpknnx4oV/602RP4n8TqQ1EyadCcBlIh9YoHmcqKioMFOnTjXl5eVm1KhR5smTJwrs+fPnCohvOjpw4ECTk5Ojwt/5+fnmzp075vr16+bkyZPm1KlT/nv+KvJLkf++KsCAe89KPidmz55t5s6dawoLC839+/fNo0ePFCwgHjx4oMe0u3fv6vfw4cNNbm6uGTRokCkoKNDBycvLU+DDhg3TQTp27Jg5fPiwuXfvnnvvJyI/EunIJmCczqci1RzMmzfPLFiwQF9Ox65cuWKuXr2qZoqk0ikGa/z48WbcuHFm0qRJOihDhw41LS0tZu/evToI1sl9W2RXNgC/K/IRGp42bZpZsmSJasSZ4fnz51WbmWiDBw9W0NXV1TrvOd6zZ49pbX05nd8XwB/2FWA87a+tYzKLFi0yixcvVoCY3NmzZ8MOJ6OttLRUpwy+4dy5c2bnzp3u0h9FvifAuzMJmPm6Q+SbHGzYsEHn3P79+83Ro0fVCWWrVVZWmqVLl+rfO3bsUA8v7QuRbwjoa5l6z2/xD7KsBJs3bw7WrVsXiINh8rwSGTJkSLBmzRrtS1lZmTv/H5wnc7o3iTpnA1k69AXLli0LZAmJ1VGeQWfFEek3x3FBc684ymDLli0+6E/TBfymyDMeJmasL4jbSe4bPXp0MGvWLJX6+vpAApJAlqTYoAcMGBDU1NQEmzZtCsRxuvPvxQVM7Hubh4gnDsRJxdYsInM+kOUrkHVXj/lmAGVOBuJ909K0rBZBc3OzO4eCmuIA/jcPkEAiWLVqVVqdQjA7WWLc8TZ3ns7W1tYGstaqxuI8m8GbM2dOIKuGO3dDpCAVwCw9QUlJSbB+/XrfXGLLzJkzffMtFNko8pjjyZMnq4njFONOGRSyevVqNXF77hdRARc4U167dm0wZsyYjHhW5m0IsLFMCm0EEl0FDQ0NgZCMl2afqjBgTU1N7vg+PCUK4B9yw/Tp0wNZ6NOatxEAO/JxxC03mCWmH8eZMVBVVVVBXV2dO/ebMOCcEFhIwI/5g1j2woUL5tmzZ30dS7SLLBb5DHKxb98+jaVhXDIAKT2IAIgYnnjcto3iF6r934QBr4G+Tpkyxdy+fdt0dXVlK4DiRetEfs7BgQMHtPPE6rAm6XTkBz18+FDJC2GoDYc39ga4mQ9ZL5UMZEG74fYzC7zrzJkzSitlaqnG4MxRGvH8zZs3daBs+5YMWG6iFE+R1bA+HD6bNBCXkcfsioqKNJsBl+1JGwT9J06ciNLnz0TaRP5+8eLFMvohnlfJCVQzihLQMoMF05JnFNsAanf4dxCDoLy8XIOBKGsiyxXLjUyBQEY0FQdTGDFltMdFVAQ+MmiR4wGiONZme7w1kdNayYcsQ0rio8SdaBa2wuhnigOH8lmryGfRF5gZaSDYEvw7qVMQ/4PF+djCc7iBD9ItUTtPNoK5blu5pZtRpDMi6Cci3xfZjBNua2tTc8WZ8e7e5jWK8GhrvVhJng841+aOdY643FPSjEBubrac2cciK8hjQf6vXbumzowcWE99ACyKGzlypMNX6QNmYueTO3r8+HFWCX0KjTz1AtK1WNXx48c19TNhwgS1ykQNLFiCR4ZeAsZBqMe1SbL+2k7bIGUX2iNIIectsbjmu8INLN7yNNEHXKBrlDiFfqrdcJDydZEPXZDinG0is/YcV6EPWA+42JeJuAy390XW49hI2JNjC8cAYEGJvlJzzOvb8mztStPFeOUkS2muH2l1OxOIGsK94kZU+BdLL1W7xM/hBhYvMuv0NdzhvFoWl5q4rY6pC1iWnIULFxI+6vocbpizt8R2+IDb/egkFXaS5Ub4u496HYU64b2GYARml8j3hIKo9rCGOyh84d69id6f2gfWjAsIOgAMGaEwlwisIzaucGe+LL5/hS1RiH4Tk+5n6zGB8+9F3uaAWhZ9O3ToUK+MDqURSFkNd4lDaw976f18YPPeYp00w9DHrcxWFN6GMKxYsUKJzZEjR5LSV8B6DviLROThn3wQtuEMonhrXko6xrYLGaaHb1iwdSUlJapZ4mjMOEqsT0jZ2fmSo+xOBBgNd7icUBQK1tHRob8jJeTFrJlopGX+QYxP4qCqqkqLdlQqoyQAMGeXtbFtV6KMR7fNNmzExZPBSEYTGWm4MLy4trZWHV4iD8854t3t27frjoAkwcRHtp6lmQ46jgnjfKIWw1iXWW3IeuCb5L7WRIBpnwAY+kUBmpRKb86LDhDhXL58WcH3Ng0izPevBBPLly/XKXPw4MGUkgs4XTKunnb/kOweFnWtBGQqCZ8kL+2CibNcE2sJVq5cGQj1i1XeIRlPzcpLxhf1lpemsVNGQzWSYB7byEowIQOtjglCQOSXSmPuwo897X4sIDt6S9PS2B7Uwh4qzBAvnIn4uof593/BBPOVKRKHteE48T04N0sjfxX13kY/W0gBO12TnjFjhl+UI8PyZ3eNcix1pXTeQ5mGSqfMX3fuB6mWS3Wbg5iI1pjSLZeWlpZqldAen3JpXgkmtBZEh+M+G99ATQmx5w7hv1IFDGE+aWwNFw2lA5r6L46LEqyx9WKcU0VFRVoFOwposqKohdhz0KaauFse6o2t4eI1SYTH7RzTg2Q9SXuhdLobAPOLWwQ3tvpPebWxsdE/35zuphaCdt3nQSmTykQ6+zLoJLXgdIvsaNaB9erJWzOxi4f2jnvR/Pnz1cTTmXNxC95OZKnUGnII7LZkYFPdpviueyHOAUeGV01n61GcaYFlUKzHI3vXtvXkpNIB7Mz7ofPemDhOJ50NKalolXcSReEHvGtbowB1EieXgyNjG6JW1mEylDwIFoi9U42OkjXSNLA3oj6Ykle4g/t9R0D8LZXnxU1esWRttXM7lwwJNA6qCL2EpMO44iYIXNaFyMlFeu3t7Zq78ugeBbZz2d4RX2mBa/oFTRPLQs+ggfBlGA/gYV09hYvQR5eScRvF+Zt7iOm92JjMxU9snam3kLXPALvWYHlsoztBmgjtIGiazkMhw6ABC4+GpADa/QuA5bJ+Temn5sv/f4gSo/c5YNfYKd9kGVBdOCmO5hI1pkAC3t1uExKfmwTbFfoL4HACDlN/y5p+RZLfU/Fvs+BgbK1psLBXAjhR+qauh2unTfRdAa8N4D5pqQL+nwADAKGFDQ//Deb9AAAAAElFTkSuQmCC') no-repeat; - -webkit-mask-size: 1.7em; - background-image: none; - background-color: #7e983a; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a5c15e), color-stop(3%, #8daa42), color-stop(100%, #6e8533)); - background-image: -webkit-linear-gradient(top, #a5c15e, #8daa42 3%, #6e8533); - background-image: linear-gradient(top, #a5c15e, #8daa42 3%, #6e8533); - width: 1.7em; - height: 1.7em; - margin: 0.5em 0.5em 0 0; -} -/* line 103, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list.x-list-indexed .x-list-disclosure { - margin-right: 1.8em; -} -/* line 107, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-item-selected .x-list-disclosure { - background: white none; -} -/* line 111, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-scrolldock-hidden { - display: none; -} -/* line 115, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item { - position: absolute !important; - left: 0; - top: 0; - color: black; - width: 100%; -} -/* line 123, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-pressed .x-dock-horizontal { - background: #ecf0e1 none; -} -/* line 128, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-selected .x-dock-horizontal { - background-image: none; - background-color: #798d45; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a0b669), color-stop(3%, #889e4d), color-stop(100%, #6a7c3d)); - background-image: -webkit-linear-gradient(top, #a0b669, #889e4d 3%, #6a7c3d); - background-image: linear-gradient(top, #a0b669, #889e4d 3%, #6a7c3d); - color: white; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 134, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item > .x-dock { - height: auto; -} - -/* line 140, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item-body { - min-height: 46px; - padding: 0.65em 0.8em; -} - -/* line 145, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-header-swap { - position: absolute; - left: 0; - width: 100%; - z-index: 2 !important; -} - -/* line 152, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-ios .x-list-header-swap { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -/* line 156, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item .x-list-header { - display: none; -} - -/* line 160, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-grouped .x-list-header-wrap .x-list-header { - position: absolute; - top: 0; - left: 0; - width: 100%; - display: block; -} - -/* line 169, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 26px; -} -/* line 174, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-header-wrap .x-item-header, -.x-list-normal .x-list-header { - background-image: none; - background-color: #fefefe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #f3f0f0)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - color: #b9aaaa; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - border-top: 1px solid #fefefe; - border-bottom: 1px solid #d0c6c6; - font-weight: bold; - font-size: 0.8em; - padding: 0.2em 1.02em; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 202, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item .x-dock-horizontal { - border-top: 1px solid #dedede; -} -/* line 206, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal { - border-bottom: 1px solid #dedede; -} -/* line 214, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal { - border-top-color: #ecf0e1; - background-color: #ecf0e1; -} -/* line 219, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal { - border-top-color: #798d45; - border-bottom: 1px solid #4d5a2c; -} - -/* line 227, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal { - border-top: 0; -} - -/* line 232, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 31px; -} -/* line 236, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-scroll-view { - background-color: #eeeeee !important; -} -/* line 241, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header-swap { - padding-right: 13px; -} -/* line 245, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-inner .x-scroll-container { - top: 13px; - left: 13px; - bottom: 13px; - right: 13px; - width: auto !important; - height: auto !important; -} -/* line 254, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-disclosure { - overflow: hidden; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAA9CAYAAAAeYmHpAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABO5JREFUeNrsm1toXFUUhr8kEDNVkzjYCwTyUCMtsfGCMBJaS7EolsDUqMUHXxQrgiBUWm94a0WpWlt9kSBGKwEh0GJpaDFEbEMJBAN9ChaUqKX1UolNG1MyWlt/H2YdmY65zJ7Z+8wE/GE/zayz1r/PXuustfbeVZIIiHbgdqANWAFcAzQALfb7GDAJXAC+AUaB48BwSKOqPJOuAe4GOoE0sKzI55wB+oADwBfAZa+sJfkYrZI+lXRe/nHent3qydaSSTdJ6pZ0SfGg23SWhXSDpJ2SphU/pk13Q7Gki/HpDmAvsJjyYhx4FDjsKljtGKR2AocqgDBmwyGzqSZE9E4A++wtVyL6gfuBjC/SSeBzIEVlYwTYAEyUSjoBDC4AwrnE1833xufy6VqgNyDhaRs+kTKba4sl/bplVb4hoAt4CBgK8Py02e6ckXUE+L5elvSRpNWSkpKqJW2UdDrQ97zDJTlJSjrrmWy3pDslXZ+nq07S1kAZ3VnjUhDpDzwp/UvSh5LWzkA2d9R71DlT2jov6XZPyrbZm11cYGrYIulIIOLt+fryA9kOjyXmCUsVC8EY8B7wY4DAtmOuQJbyOLu/SHpF0iKHQqBO0haLAb6Rmm15f+ZZ0W+SNjlWQPWSugKQ3jcT6WSgMnFU0m2OxFskHQ1QjibzffpBSzl9YxXwPLDEQWYMeAf4yaMdCeN4RUbWGTAfTgNbrSFYKL4E3vZsR2duIKuNoQNyTtIjZfbvaeNKtSXpCcKiEXgZuMNB5ndb5oMel3gqWt5xlY3LgVeBZgeZ74C3PPp3e0T61hjr3XuALUC9g8yg+bePBn1bRLo5RtI11szb5CDzhzUiuzzob45IN8Xc3Wi0z9haB5kpYBdwrETdTRHpZBnaOi3AG8BKB5mT1hwYKUFvMiJdQ3mwBngKuNrx+725RPdy6nv7xgXgZ8cAVQfcVKrialNeDvRacJp2IPwk8H6JE1020l9ZYJpwkLkL2FZiDJqMSJ+JmfBpK+y/dZC5AXgJWFqi7vGI9KkYCU8B7wIDDjL1wAtRNlUiTkWkR2Mk3QN8QuEnCxLA48BjnvSPRqSHYyJ8xPz4nIPMevNjXxiOSstEDKXl95LWOJaWN0oa8lxaJqLSMhNoeyX3M/Gmo45G4DlgtUc7hozrv8nJgUCELwEfA/sd697NHv04wv78FnBS0p8BlvVBSUsdl/V91kIO3hicoIizGwU0ALYDvzrIrLDAtcyzLYevSIQCNfu/lvSA4xtutF3NEEjNtZc14EnJE5KucyC8SNKzkv4OQHhgvr2s1zwtp/XAw8DNzHMqwHCvtZGqAgTT/3KaYdb3epzlHyQ9LWmVpKtmecsrPX+Pc9FTrk15STppm3O3SLo2z497AhF22pRHUjqQIZOSthv5JZKeCeTHMg7OZ0N3B0xLRyS9KOlYoOfvLvZsaC1w0ILMQkI/sBG4ONsf/j88NwMyZI8ejiwQwhso4HxoId3QCZu9/gpf0usK7bkV2gLOmJ/sqUDCe8y2TKECxRxyT5PdW0qWmewE2X2xvmL63q7oI7vtustldj0iY293eTGEZ0tDXUazncqLC92ms6y3daLRJqlX0lQAolP27DZfV5R8X0arJXsZLY2fy2h9ZC+jXfRppG/S+Wi3xKbVRoLshZPmnOb7uPnpCRvHAzcqg5OuSPwzAGYd6fed/rrcAAAAAElFTkSuQmCC') no-repeat; - -webkit-mask-size: 1.5em; - background-image: none; - background-color: #e5e5e5; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f1f1f1), color-stop(100%, #d8d8d8)); - background-image: -webkit-linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - background-image: linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - width: 1.5em; - height: 1.5em; - margin: 0.5em 0.5em 0 0; -} -/* line 264, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header { - color: #777; - font-size: 1em; - font-weight: bold; - padding-left: 26px; - line-height: 1.7em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(30%, rgba(238, 238, 238, 0.9)), color-stop(100%, rgba(238, 238, 238, 0.4))); - background-image: -webkit-linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); - background-image: linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); -} -/* line 274, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container { - padding: 13px 13px 0 13px; -} -/* line 277, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container .x-list-header { - padding-left: 13px; - background-image: none; -} -/* line 285, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal, .x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - background: #f7f7f7; -} -/* line 295, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 299, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:last-child { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - border-width: 1px; - margin-bottom: 13px; -} -/* line 310, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 314, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 321, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap { - background: transparent; -} -/* line 324, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13px; -} -/* line 329, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #dedede; - background: #f7f7f7; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 340, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item { - display: inline-block !important; -} - -/* line 346, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-nowrap .x-dataview-container { - white-space: nowrap !important; -} - -/* line 352, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-inlineblock .x-list-item { - display: inline-block !important; -} - -/* line 358, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-inner { - width: auto; -} -/* line 361, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-container { - white-space: nowrap !important; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -html, body { - width: 100%; - height: 100%; -} - -@-webkit-keyframes x-paint-monitor-helper { - /* line 47, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - from { - zoom: 1; - } - - /* line 48, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - to { - zoom: 1; - } -} - -/* line 51, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitored { - position: relative; -} - -/* line 55, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor { - width: 0 !important; - height: 0 !important; - visibility: hidden; -} -/* line 59, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.cssanimation { - -webkit-animation-duration: 0.0001ms; - -webkit-animation-name: x-paint-monitor-helper; -} -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange { - overflow: hidden; -} -/* line 65, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange::after { - content: ""; - display: block; - width: 1px !important; - height: 1px !important; -} - -/* line 74, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitored { - position: relative; -} - -/* line 78, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - visibility: hidden; - z-index: -9999; - overflow: hidden; -} -/* line 87, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors > * { - width: 100%; - height: 100%; - overflow: hidden; -} -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.shrink::after { - content: ""; - display: block; - width: 200%; - height: 200%; - min-width: 1px; - min-height: 1px; -} -/* line 101, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.expand::after { - content: ""; - display: block; - width: 100000px; - height: 100000px; -} -/* line 110, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.shrink > * { - width: 100%; - height: 100%; -} -/* line 116, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.expand > * { - width: 200%; - height: 200%; -} - -/* line 130, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-body { - position: relative; - z-index: 0; -} - -/* line 135, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-inner, .x-body { - width: 100%; - height: 100%; -} - -/* line 140, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock, .x-dock-body { - height: 100%; -} - -/* line 144, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-sized { - position: relative; -} - -/* line 148, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container { - display: -webkit-box; - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 151, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 158, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-innerhtml { - width: 100%; -} - -/* line 162, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card { - position: relative; - overflow: hidden; -} - -/* line 167, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item-container { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 171, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 175, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item, .x-layout-newcard-item > * { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 179, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item:not(.active) { - display: none; -} - -/* line 183, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit.x-stretched > .x-layout-fit-item { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 188, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit { - position: relative; -} - -/* line 193, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-sized { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 196, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-unsized { - width: 100%; - height: 100%; -} - -/* line 202, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center, .x-centered { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: -webkit-box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; -} -/* line 207, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > *, .x-centered > * { - position: relative; -} -/* line 210, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > .x-floating, .x-centered > .x-floating { - position: relative !important; -} - -/* line 215, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-floating { - position: absolute; -} - -/* line 219, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock { - display: -webkit-box; -} -/* line 222, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 225, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock .x-dock-body { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 229, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized > .x-dock-body { - position: relative; -} -/* line 233, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 235, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * { - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 240, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 243, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} -/* line 245, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item { - display: -webkit-box; -} -/* line 248, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 252, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 254, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 301, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box { - display: -webkit-box; -} -/* line 303, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal { - -webkit-box-orient: horizontal !important; -} -/* line 305, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed { - width: 0 !important; -} -/* line 309, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 311, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical > .x-layout-box-item.x-flexed { - height: 0 !important; -} -/* line 315, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box > .x-layout-box-item { - display: -webkit-box !important; -} -/* line 318, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-start { - -webkit-box-align: start; - box-align: start; -} -/* line 321, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-center { - -webkit-box-align: center; - box-align: center; -} -/* line 324, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-end { - -webkit-box-align: end; - box-align: end; -} -/* line 327, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-stretch { - -webkit-box-align: stretch; - box-align: stretch; -} -/* line 330, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-start { - -webkit-box-pack: start; - box-pack: start; -} -/* line 333, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-center { - -webkit-box-pack: center; - box-pack: center; -} -/* line 336, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-end { - -webkit-box-pack: end; - box-pack: end; -} -/* line 339, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-justify { - -webkit-box-pack: justify; - box-pack: justify; -} - -/* line 345, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 350, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float { - overflow: hidden; -} -/* line 352, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float > .x-layout-float-item { - float: left; -} -/* line 356, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float.x-direction-right > .x-layout-float-item { - float: right; -} - -/* line 362, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner { - display: table !important; - width: 100% !important; - height: 100% !important; -} -/* line 367, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner.x-fixed-layout { - table-layout: fixed !important; -} - -/* line 372, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-row { - display: table-row !important; -} - -/* line 376, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-cell { - display: table-cell !important; - vertical-align: middle; -} - -/* line 381, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable { - position: absolute; - top: 100% !important; - left: 100% !important; - overflow: visible !important; - z-index: 1; -} -/* line 387, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable::before { - content: ""; - display: block; - position: absolute; - top: 100%; - left: 100%; - width: 100%; - height: 100%; - visibility: hidden; -} - -/* line 399, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container { - overflow: hidden; - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 402, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container::before { - content: ""; - display: block; - width: 300%; - height: 300%; - visibility: hidden; -} - -/* line 411, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector { - visibility: hidden; - position: absolute; - left: 0; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - overflow: hidden; -} - -/* line 422, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector > * { - visibility: hidden; -} - -/* line 426, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-shrink > * { - width: 200%; - height: 200%; -} - -/* line 431, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-expand > * { - width: 100000px; - height: 100000px; -} - -/* line 436, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-view { - position: relative; - display: block; - overflow: hidden; -} - -/* line 442, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-container { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 448, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-scroller { - position: absolute; - min-width: 100%; - min-height: 100%; - width: auto !important; - height: auto !important; -} - -/* line 456, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-ios .x-scroll-scroller { - -webkit-transform: translate3d(0, 0, 0); -} - -/* line 460, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-stretcher { - position: absolute; - visibility: hidden; -} - -/* line 465, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid-wrapper { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 471, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid { - display: table; - width: 100%; - height: 100%; -} -/* line 476, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * { - display: table-row; -} -/* line 480, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * > * { - display: table-cell; -} -/* line 484, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :first-child { - width: 100%; - height: 100%; -} -/* line 489, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :nth-child(2) { - padding: 3px 3px 0 0; -} -/* line 493, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :nth-child(2) > :first-child { - padding: 0 0 3px 3px; -} - -/* line 498, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar { - position: relative; - overflow: hidden; -} - -/* line 503, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-stretcher { - position: absolute; - visibility: hidden; - width: 100%; - height: 100%; -} - -/* line 510, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x { - width: 100%; -} -/* line 513, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x > .x-scroll-bar-stretcher { - width: 300%; -} -/* line 517, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x.active { - height: 6px; -} - -/* line 522, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y { - height: 100%; -} -/* line 525, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y > .x-scroll-bar-stretcher { - height: 300%; -} -/* line 529, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y.active { - width: 6px; -} - -/* line 534, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator { - background: #333; - position: absolute; - z-index: 3; - opacity: 0.5; -} - -/* line 541, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-android-4 .x-scroll-indicator { - opacity: 1; -} - -/* line 545, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.default { - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 552, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-list-light .x-scroll-indicator, -.x-dataview-light .x-scroll-indicator { - background: #fff; - opacity: 1; -} - -/* line 558, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-x { - height: 100%; -} - -/* line 562, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-y { - width: 100%; -} - -/* line 566, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform { - background: none; -} -/* line 569, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > * { - position: absolute; - background-color: #333; -} -/* line 574, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > :nth-child(2) { - -webkit-transform-origin: 0% 0%; - background: none; - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA); -} -/* line 581, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > * { - background-color: #eee; -} -/* line 585, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) { - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA); -} -/* line 591, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > * { - width: 100%; -} -/* line 595, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child { - height: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; -} -/* line 600, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) { - height: 1px; -} -/* line 604, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child { - height: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} -/* line 611, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > * { - height: 100%; -} -/* line 615, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child { - width: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; -} -/* line 620, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) { - width: 1px; -} -/* line 623, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child { - width: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 134, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container { - background-color: #eeeeee; -} -/* line 137, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container > .x-inner { - padding: 1em; -} - -/* line 144, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label { - text-shadow: white 0 1px 1px; - color: #333333; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - padding: 0.6em; - display: none !important; - background-color: #f7f7f7; -} -/* line 151, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label span { - font-size: .8em; - font-weight: bold; -} -/* line 156, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label-nowrap .x-form-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 162, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field { - display: -webkit-box; - display: box; - min-height: 2.5em; - background: #fff; -} -/* line 167, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input { - position: relative; - min-width: 3.7em; -} -/* line 173, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input, -.x-field .x-input-el { - width: 100%; -} -/* line 178, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field.x-field-labeled .x-form-label { - display: block !important; -} -/* line 183, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field:last-child { - border-bottom: 0; -} - -/* line 190, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left .x-component-outer, -.x-label-align-right .x-component-outer { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 197, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 203, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} - -/* line 213, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 217, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:first-child .x-form-label { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 222, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child { - border-bottom: 0; -} -/* line 225, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child .x-form-label { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 235, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left, -.x-label-align-right { - -webkit-box-orient: horizontal !important; - box-orient: horizontal !important; -} - -/* line 240, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top, -.x-label-align-bottom { - -webkit-box-orient: vertical !important; - box-orient: vertical !important; -} - -/* line 249, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 255, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top .x-component-outer { - position: relative; -} - -/* line 260, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 264, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 270, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-input-el { - padding: .4em; - min-height: 2.5em; - display: block; - border-width: 0; - background: transparent; - -webkit-appearance: none; -} - -/* line 279, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-mask { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 286, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-required label:after, -.x-field-required .x-form-label:after { - content: "*"; - display: inline; -} - -/* line 294, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled label:after, -.x-item-disabled .x-form-label:after { - color: #666666 !important; -} - -/* line 301, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-textarea textarea { - min-height: 6em; - padding-top: .5em; -} - -/* line 313, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII='); - margin-top: -.7em; -} - -/* line 322, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - margin-top: -0.7em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAApRJREFUeNrs279v2kAUwPHvVe0KZUDKwGCJiQwMmbKUBbqjKP8FmfpP8A/kT8jCUrFXWdwhWwaGICEhZWBjaVhr6TrkLFmufRjbh33nPOltyPij84+7d89CSkmT4hMNi8aBP5s6sBDiK3AFDIEB0Ad6QBdoqZ8dgD2wA7bAGlgBz1LKP0bOq8x7WAjRBr4DY2AEXOY81AvgA4/ALynlW63AQggPuAGmwLeSB+U3sAR+SilfCx9NSpk71aU5A54AaTif1H+1Cp1zAewEWJwBGs8FMDkrGLgDNhVgw9wAd8bBQAeYA0GF2DADdS4dI2DgArivATSe98BFqWA1snXERtGdMsHzGmPDnJcCVg+owAJwkOVBluXVs7EAG316T3KB1aRiYRE2+p5u5QHPLMSGOTsJDHhnmi6anIZ6Sba09fANcG3xsvdaGY4XANQSb+rAWn+qLPrVEnBr8aUcz9ssl/TYoYrOWHtJq7LMyCHwSJlS7+GrAmWZOsalMqWChw4WKoc68MBB8EAH7jsI7uvAPQfBPR246yC4m1qXFkL8NbkbUVEEUsovjd1bioMPDhoPOvDeQfBeB945CN7pwFsHwVsdeO0geK0DrxwEr3TgZ943o12JF2VKBqs2A98hsB9vnUiaeDw6BP7fklDTaqtRtr2e5QPtozUt1UCydGB0l4nNMB+F+Pd4BR4sHt2H1I6flBGGJm2mRaIZ26WxsGpDPO2qzbohHoYVLQ+62/RUsBVNLcewp4Ch5m1LWUb3lC6e6EjXrjHt2FunCDj6IKu89TDLK7ZIJ148Km0uzTqnKKu5NDo5OXv7cNr0ymj7cAzuAT8MrbJ8dWwvLzKaVnwCALzFkbnP0dR3S434yMPGrZYPsGvxbwA7bHepWd7cEgAAAABJRU5ErkJggg=='); -} - -/* line 330, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el { - position: relative; -} -/* line 332, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:after { - background-color: #dddddd; -} -/* line 335, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:checked:after { - background-color: #798d45; -} - -/* line 340, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el { - position: relative; -} -/* line 342, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:before { - background-color: #d0d0d0; -} -/* line 345, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:after { - background-color: #dddddd; - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 349, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:checked:before { - background-color: #798d45; -} - -/* line 356, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:checked:before { - background: #b5bda0; -} -/* line 360, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:after { - background: #eee; -} -/* line 367, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-checkbox .x-input-el:checked:after { - background: #b5bda0; -} - -/* line 376, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer { - display: -webkit-box; - display: box; -} -/* line 379, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer > * { - width: auto; -} -/* line 384, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input { - -webkit-box-flex: 1; -} -/* line 387, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input .x-input-el { - -webkit-text-fill-color: #000; - width: 100%; - text-align: center; -} -/* line 395, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input input::-webkit-outer-spin-button, -.x-spinner .x-field-input input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} -/* line 402, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-input-el { - -webkit-text-fill-color: #B3B3B3; -} -/* line 406, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-spinner-button { - color: #aaaaaa !important; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button { - border: 1px solid #c4c4c4; - border-top-color: #d0d0d0; - color: #1e1e1e; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before { - background: #c4c4c4; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #f7f7f7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #efefef; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0)); - background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); - background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); -} -/* line 412, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button { - margin-top: .25em; - margin-bottom: .25em; - width: 2em; - padding: 0.23em 0 0.27em; - font-weight: bold; - text-align: center; - border: 1px solid #dddddd !important; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button { - border: 1px solid #b7b7b7; - border-top-color: #c4c4c4; - color: #111111; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before { - background: #b7b7b7; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #eaeaea; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd)); - background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); - background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3)); - background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); - background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); -} -/* line 424, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-down { - margin-left: .25em; -} -/* line 427, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-up { - margin-right: .25em; -} -/* line 432, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-input-el { - text-align: left; -} -/* line 436, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: .5em; -} - -/* line 443, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-spinner-button { - padding: 0.4em 0 0.11em !important; -} - -/* line 450, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-item-label { - height: 2.6em; -} -/* line 454, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -/* line 460, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-label { - margin-right: 2.6em; -} -/* line 465, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:before { - background-color: rgba(0, 0, 0, 0.3); - margin-top: -.8em; -} -/* line 470, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:after { - background-color: #dddddd; -} - -/* line 11, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer { - padding: 0.6em; -} - -/* line 17, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider, -.x-toggle { - position: relative; - height: 2.2em; - min-height: 0; - min-width: 0; -} -/* line 23, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider > *, -.x-toggle > * { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 30, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider.x-item-disabled { - opacity: .6; -} - -/* line 57, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb { - position: absolute; - height: 2.2em; - width: 2.2em; -} -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb:after { - content: ""; - position: absolute; - width: 1.85em; - height: 1.85em; - top: 0.175em; - left: 0.175em; - border: 1px solid #919191; - -webkit-border-radius: 0.925em; - border-radius: 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0)); - background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging { - opacity: 1; -} -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging:after { - background-image: none; - background-color: #d0d0d0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4)); - background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); - background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); -} - -/* line 81, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider:after { - content: ""; - position: absolute; - width: auto; - height: 0.8em; - top: 0.7375em; - left: 0; - right: 0; - margin: 0 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - border: 0.1em solid rgba(0, 0, 0, 0.1); - border-bottom: 0; - -webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} - -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle { - width: 4.4em; - -webkit-border-radius: 1.1em; - border-radius: 1.1em; - overflow: hidden; - border: 1px solid #b7b7b7; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - -webkit-box-flex: 0; -} -/* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb.x-dragging { - opacity: 1; -} -/* line 117, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb:before { - top: 0.175em; -} - -/* line 146, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle-on { - background-image: none; - background-color: #92cf00; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200)); - background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); - background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); -} - -/* line 482, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/* line 488, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-number input::-webkit-outer-spin-button, -.x-field-number input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -/* line 495, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input { - position: relative; -} -/* line 498, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input:before { - content: ""; - position: absolute; - width: 0.86em; - height: 0.86em; - top: 50%; - left: 0.5em; - -webkit-mask-image: url('data:image/png;base64,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'); - -webkit-mask-size: .86em; - background-color: #ccc; - -webkit-mask-repeat: no-repeat; - margin-top: -0.43em; -} -/* line 506, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input .x-form-field { - margin-left: 1.0em; -} - -/* line 516, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-input .x-clear-icon { - display: none; - background: url('data:image/png;base64,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') no-repeat; - background-position: center center; - background-size: 55% 55%; - width: 2.2em; - height: 2.2em; - margin: .5em; - margin-top: -1.1em; - position: absolute; - top: 50%; - right: -.5em; -} - -/* line 532, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-clear-icon { - display: block; -} -/* line 536, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-field-input { - padding-right: 2.2em; -} - -/* line 541, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-input-el { - -webkit-text-fill-color: #000; -} - -/* line 545, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-empty .x-input-el { - -webkit-text-fill-color: #A9A9A9; -} - -/* line 556, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled .x-form-label span, -.x-item-disabled input, -.x-item-disabled .x-input-el, -.x-item-disabled .x-spinner-body, -.x-item-disabled select, -.x-item-disabled textarea, -.x-item-disabled .x-field-clear-container { - color: #b3b3b3; - -webkit-text-fill-color: #b3b3b3; - pointer-events: none; -} - -/* line 563, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset { - margin: 0 0 1.5em; -} -/* line 566, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-label { - border-top: 1px solid white; -} -/* line 570, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-fieldset-inner { - border: 1px solid #dddddd; - background: #fff; - padding: 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - overflow: hidden; -} -/* line 579, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field { - border-bottom: 1px solid #dddddd; - background: transparent; -} -/* line 583, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 589, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:last-child { - border-bottom: 0; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 599, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title { - text-shadow: white 0 1px 1px; - color: #333333; - margin: 1em 0.7em 0.3em; - color: #333333; - font-weight: bold; -} -/* line 605, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 610, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-instructions { - text-shadow: white 0 1px 1px; - color: #333333; - color: gray; - margin: 1em 0.7em 0.3em; - font-size: .8em; - text-align: center; -} - -/* line 619, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-selectmark-base, .x-field-select .x-component-outer:after { - content: ""; - position: absolute; - width: 1em; - height: 1em; - top: 50%; - left: auto; - right: 0.7em; - -webkit-mask-size: 1em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC'); - margin-top: -.5em; -} - -/* line 629, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select { - position: relative; - z-index: 1; -} -/* line 634, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:after { - background-color: #dddddd; -} -/* line 639, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after { - pointer-events: none; - position: absolute; - display: block; -} -/* line 645, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before { - content: ""; - position: absolute; - width: 4em; - height: auto; - top: 0; - left: auto; - right: 0; - bottom: 0; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white)); -} - -/* line 7, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox { - min-width: 15em; - max-width: 20em; - max-height: 90%; - margin: .5em; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - border: 0.15em solid #cbcbcb; -} -/* line 17, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-docking-vertical { - overflow: hidden; -} -/* line 22, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-icon { - margin: 0 0.8em 0 0.5em; - background: #fff; - -webkit-mask-size: 100%; -} -/* line 28, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-info { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-warning { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 36, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-question { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 40, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-error { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC'); -} -/* line 44, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-title { - font-size: .9em; - line-height: 1.4em; -} -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-body { - background: transparent !important; -} -/* line 53, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar { - background: transparent none; - -webkit-box-shadow: none; - box-shadow: none; -} -/* line 57, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-top { - border-bottom: 0; - height: 1.3em; -} -/* line 62, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom { - border-top: 0; -} -/* line 67, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field { - min-height: 2em; - background: #fff; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; -} -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-form-field { - min-height: 1.5em; - padding-right: 0 !important; - -webkit-appearance: none; -} -/* line 79, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field-input { - padding-right: 2.2em; -} - -/* line 84, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-text { - text-align: center; - padding: 6px 0; - line-height: 1.4em; -} - -/* line 90, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons { - padding: 0.4em 0; - height: auto; -} -/* line 94, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button { - min-width: 4.5em; -} -/* line 98, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button-normal span { - opacity: .7; -} - -/* line 109, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-text { - color: rgba(255, 255, 255, 0.9); - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-input { - background-image: none; - background-color: rgba(255, 255, 255, 0.9); - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(230, 230, 230, 0.9)), color-stop(10%, rgba(242, 242, 242, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0.9))); - background-image: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - background-image: linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - border: 0.1em solid rgba(203, 203, 203, 0.9); -} - -/* line 20, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - font-size: 250%; - height: 1em; - width: 1em; - position: relative; - -webkit-transform-origin: 0.5em 0.5em; - /* Shared Properties for all the bars */ -} -/* line 29, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after { - display: block; - position: absolute; - width: 0.1em; - height: 0.25em; - top: 0; - -webkit-transform-origin: 0.05em 0.5em; - -webkit-border-radius: 0.05em; - border-radius: 0.05em; - content: " "; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - background-color: rgba(170, 170, 170, 0.99); -} -/* line 42, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::after { - background-color: rgba(170, 170, 170, 0.9); -} -/* line 43, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::before { - background-color: rgba(170, 170, 170, 0.8); -} -/* line 44, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - background-color: rgba(170, 170, 170, 0.7); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::after { - background-color: rgba(170, 170, 170, 0.6); -} -/* line 46, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::before { - background-color: rgba(170, 170, 170, 0.5); -} -/* line 47, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - background-color: rgba(170, 170, 170, 0.4); -} -/* line 48, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::after { - background-color: rgba(170, 170, 170, 0.35); -} -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::before { - background-color: rgba(170, 170, 170, 0.3); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - background-color: rgba(170, 170, 170, 0.25); -} -/* line 51, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::after { - background-color: rgba(170, 170, 170, 0.2); -} -/* line 52, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::before { - background-color: rgba(170, 170, 170, 0.15); -} - -/* line 56, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span { - left: 50%; - margin-left: -0.05em; -} - -/* Rotate each of the 4 Spans */ -/* line 65, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); -} - -/* line 66, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); -} - -/* line 67, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); -} - -/* line 68, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); -} - -/* These are the two lines that surround each of the 4 Span lines */ -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::before { - -webkit-transform: rotate(30deg); - -moz-transform: rotate(30deg); -} - -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::after { - -webkit-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); -} - -/* Set Animation */ -/* line 77, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - -webkit-animation-name: x-loading-spinner-rotate; - -webkit-animation-duration: .5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} - -@-webkit-keyframes x-loading-spinner-rotate { - /* line 85, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 0% { - -webkit-transform: rotate(0deg); - } - - /* line 86, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.32% { - -webkit-transform: rotate(0deg); - } - - /* line 88, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.33% { - -webkit-transform: rotate(30deg); - } - - /* line 89, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.65% { - -webkit-transform: rotate(30deg); - } - - /* line 91, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.66% { - -webkit-transform: rotate(60deg); - } - - /* line 92, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 24.99% { - -webkit-transform: rotate(60deg); - } - - /* line 94, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 25% { - -webkit-transform: rotate(90deg); - } - - /* line 95, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.32% { - -webkit-transform: rotate(90deg); - } - - /* line 97, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.33% { - -webkit-transform: rotate(120deg); - } - - /* line 98, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.65% { - -webkit-transform: rotate(120deg); - } - - /* line 100, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.66% { - -webkit-transform: rotate(150deg); - } - - /* line 101, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 49.99% { - -webkit-transform: rotate(150deg); - } - - /* line 103, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 50% { - -webkit-transform: rotate(180deg); - } - - /* line 104, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.32% { - -webkit-transform: rotate(180deg); - } - - /* line 106, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.33% { - -webkit-transform: rotate(210deg); - } - - /* line 107, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.65% { - -webkit-transform: rotate(210deg); - } - - /* line 109, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.66% { - -webkit-transform: rotate(240deg); - } - - /* line 110, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 74.99% { - -webkit-transform: rotate(240deg); - } - - /* line 112, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 75% { - -webkit-transform: rotate(270deg); - } - - /* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.32% { - -webkit-transform: rotate(270deg); - } - - /* line 115, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.33% { - -webkit-transform: rotate(300deg); - } - - /* line 116, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.65% { - -webkit-transform: rotate(300deg); - } - - /* line 118, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.66% { - -webkit-transform: rotate(330deg); - } - - /* line 119, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 100% { - -webkit-transform: rotate(330deg); - } -} - -/* line 129, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.border-radius-10 { - -webkit-border-radius: 10px !important; - border-radius: 10px !important; -} - -/* - * Color palette - */ -/* line 7, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller { - top: 12px; - left: 12px; - width: auto !important; - height: auto !important; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container { - margin-bottom: 12px; -} -/* line 19, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item { - display: inline-block; -} -/* line 22, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item.x-item-selected .item-inner { - -webkit-box-shadow: #c9d200 0 0 0 4px; - box-shadow: #c9d200 0 0 0 4px; -} -/* line 26, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item .item-inner { - display: inline-block; - width: 50px; - height: 50px; - border: 1px solid #d8d8d8; - margin: 6px; -} - -/** - * // SCSS - * @include application-toolbar-ui('edit', $base-color); - */ -/** - * // SCSS - * @include application-toolbar-iconmask('code3', '../../img/toolbar/code3.png'); - */ -/* line 1, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 5, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round .x-scroll-view { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 11, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 0; -} -/* line 15, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - display: none; -} -/* line 22, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal { - padding-bottom: 0; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #bcbcbc; - border-width: 1px 1px 0 1px; - background: white; -} -/* line 34, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -/* line 42, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal { - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #889e4d), color-stop(100%, #5c6b34)); - background-image: -webkit-linear-gradient(top, #889e4d, #5c6b34); - background-image: linear-gradient(top, #889e4d, #5c6b34); - color: white; -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure { - background-position: -24px 0; -} -/* line 55, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal { - color: inherit; -} -/* line 58, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body { - padding-right: 1.2em; -} -/* line 62, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after { - content: ""; - width: 24px; - height: 24px; - position: absolute; - top: 11px; - right: 11px; - background-image: url("../img/icons/list-normal.png"); - background-size: 72px 48px; - background-position: 0 -24px; -} -/* line 76, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal { - color: white; -} -/* line 79, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after { - background-position: -24px -24px; -} -/* line 86, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon { - width: 24px; - height: 24px; - position: absolute; -} -/* line 93, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset { - margin-left: 30px; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure { - right: 12px; - background-image: url("../img/icons/list-normal.png"); - background-size: 72px 48px; - background-position: 0 0; -} -/* line 106, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body { - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} -/* line 112, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13.8px; -} -/* line 117, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #bcbcbc; - background: white; -} -/* line 124, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal { - background: transparent; -} -/* line 126, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal > .x-dock-body { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #889e4d), color-stop(100%, #5c6b34)); - background-image: -webkit-linear-gradient(top, #889e4d, #5c6b34); - background-image: linear-gradient(top, #889e4d, #5c6b34); - color: white; -} - -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #989898), color-stop(10%, #656565), color-stop(100%, #656565)); - background-image: -webkit-linear-gradient(top, #989898, #656565 10%, #656565); - background-image: linear-gradient(top, #989898, #656565 10%, #656565); -} -/* line 6, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label, .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-hasbadge .x-badge, .x-hasbadge .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge { - font-size: .9em; - line-height: 2em; -} -/* line 12, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-title { - font-size: 1em; - line-height: 1.4em; - color: #ffffff; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} - -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ececec, #cbcbcb); - background-image: linear-gradient(top, #ececec, #cbcbcb); - -webkit-box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - border: 1px solid #797979; -} -/* line 7, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top { - background-color: #797979; - margin-top: -0.62em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 15, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #ececec)); - background-image: -webkit-linear-gradient(top, #f1f1f1, #ececec); - background-image: linear-gradient(top, #f1f1f1, #ececec); - top: 1px !important; -} -/* line 27, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom { - height: 0.8em; - background-color: #797979; - margin-top: -0.15em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 36, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.8em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAY9JREFUSA3FVbFKA0EQfbOXuzMgpLLyG2wVBEHSBSRFSvMNltZi5x9Y2kmqFKLY+QFpBStbK6uAJJe92xt3DkM2yV1yOYg5WG7nzcybx+wOS1GUtElRD+A6dvqRJmZGHMfHKbxnAh/sRg8NU0o7Sor7vj9Aqk4B+vh/MfQJVmd7tdpb1hlHQGMSmz4BTQfb5nagfe9iH/iWIllnnGrD0Pda1n50sO1sGU+B751PhUiRRTGCaRvUBdOdGFv5LHcQeB3LPXb5F4/J9UFrcwmiBztpwZyjskGGgavQV/d5FCvFSEKUJE3Fqm8FNfIIymM05JS7Yei9FOWsFSOJWuOIkb4S8WER0Sqcmb4IqhUEeF8Vl3dnluKFJDXqxDoGS861AGW564QITanOOPXq9h71QGg7WPFWJiawwwD8FAfNPKU6MwvHWKaAQbkX0ImDxPxNTCkhWa48B1VWFJvriTbJRCc8v0wiviqclYRMC8kjawWNZmLMSLCpf9P/pnfGPYlsL48ss7oVgyi9yd65pahywC+kjlEYVbHNjwAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(100%, #bebebe)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #bebebe); - background-image: linear-gradient(top, #cbcbcb, #bebebe); - top: -1px !important; -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-panel-inner { - background: transparent; -} -/* line 52, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar { - border-bottom: none; - margin-top: -6px; - background: transparent; - overflow: hidden; -} -/* line 58, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar .x-title { - color: #323232; - text-shadow: white 0 0.08em 0; -} -/* line 66, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner { - background: transparent; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 69, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after { - content: none; -} -/* line 75, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner { - background-color: #efefef; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 78, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - pointer-events: none; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: inset 0 1px 2px 2px #c8c8c8; - box-shadow: inset 0 1px 2px 2px #c8c8c8; - border: 1px solid #797979; -} - -/* line 88, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-label.info .x-innerhtml { - color: #7f7f7f; - text-shadow: 0 1px 0 white; - text-align: center; -} - -/* line 94, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.btn-input-image input[type="file"] { - opacity: 0; - position: absolute; - left: 0; - top: 0; -} - -/* line 102, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-mask.transparent { - background: transparent; -} - -/* line 106, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.round { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 3, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons { - background: transparent; -} -/* line 6, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons.x-field { - min-height: 0; -} -/* line 10, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - background: transparent; -} -/* line 13, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span { - font-size: inherit; -} -/* line 18, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-button { - margin-top: 9px; - margin-bottom: 9px; -} -/* line 23, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - padding: 0.16em; -} -/* line 27, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input { - -webkit-box-shadow: #b2b2b2 0 3px 4px -2px inset; - box-shadow: #b2b2b2 0 3px 4px -2px inset; - background: white; - min-width: 2.3em; -} -/* line 32, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el { - text-align: center; - -webkit-border-radius: 0; - border-radius: 0; - padding: 3px 0 4px; - min-height: 0; - border-top: 1px solid #565656; - border-bottom: 1px solid #565656; -} -/* line 46, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button { - width: auto; - border: 1px solid #939393 !important; - margin: 0; -} -/* line 52, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: 0; - -webkit-border-top-right-radius: 0; - border-top-right-radius: 0; - -webkit-border-bottom-right-radius: 0; - border-bottom-right-radius: 0; -} -/* line 58, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up { - -webkit-border-top-left-radius: 0; - border-top-left-radius: 0; - -webkit-border-bottom-left-radius: 0; - border-bottom-left-radius: 0; -} - -/* line 12, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - border-color: #4c4c4c; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button, -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-back:before, .x-toolbar-edit .x-button.x-button-forward:before, .x-toolbar .x-toolbar-edit .x-button.x-button-back:before, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar-edit .x-button.x-button-forward:after, .x-toolbar .x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-edit .x-button .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-pressing, .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar-edit .x-button.x-button-active, .x-toolbar-edit .x-button.x-button-active:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-edit .x-button.x-button-active, .x-toolbar .x-toolbar-edit .x-button.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-label, -.x-toolbar-edit .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 12, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(20%, #e7e7e7), color-stop(100%, #e7e7e7)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - background-image: linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - border-color: #4c4c4c; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button, -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-back:before, .x-toolbar-search .x-button.x-button-forward:before, .x-toolbar .x-toolbar-search .x-button.x-button-back:before, .x-toolbar .x-toolbar-search .x-button.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar-search .x-button.x-button-back:after, .x-toolbar-search .x-button.x-button-forward:after, .x-toolbar .x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button.x-button-back:after, .x-toolbar .x-toolbar-search .x-button.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-search .x-button .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-pressing, .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar-search .x-button.x-button-pressed, .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar-search .x-button.x-button-active, .x-toolbar-search .x-button.x-button-active:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressing, .x-toolbar .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressed, .x-toolbar .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-search .x-button.x-button-active, .x-toolbar .x-toolbar-search .x-button.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-label, -.x-toolbar-search .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.save, -.list-icon.save { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 0px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.save, -.x-button-pressing .list-icon.save, -.x-button-pressed .x-button-icon.save, -.x-button-pressed .list-icon.save, -.x-button-active .x-button-icon.save, -.x-button-active .list-icon.save, -.x-item-pressed .x-button-icon.save, -.x-item-pressed .list-icon.save { - background-position: -24px 0px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.undo, -.list-icon.undo { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.undo, -.x-button-pressing .list-icon.undo, -.x-button-pressed .x-button-icon.undo, -.x-button-pressed .list-icon.undo, -.x-button-active .x-button-icon.undo, -.x-button-active .list-icon.undo, -.x-item-pressed .x-button-icon.undo, -.x-item-pressed .list-icon.undo { - background-position: -24px -24px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.share, -.list-icon.share { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -48px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.share, -.x-button-pressing .list-icon.share, -.x-button-pressed .x-button-icon.share, -.x-button-pressed .list-icon.share, -.x-button-active .x-button-icon.share, -.x-button-active .list-icon.share, -.x-item-pressed .x-button-icon.share, -.x-item-pressed .list-icon.share { - background-position: -24px -48px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-style, -.list-icon.font-style { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -72px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-style, -.x-button-pressing .list-icon.font-style, -.x-button-pressed .x-button-icon.font-style, -.x-button-pressed .list-icon.font-style, -.x-button-active .x-button-icon.font-style, -.x-button-active .list-icon.font-style, -.x-item-pressed .x-button-icon.font-style, -.x-item-pressed .list-icon.font-style { - background-position: -24px -72px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-color, -.list-icon.font-color { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -96px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-color, -.x-button-pressing .list-icon.font-color, -.x-button-pressed .x-button-icon.font-color, -.x-button-pressed .list-icon.font-color, -.x-button-active .x-button-icon.font-color, -.x-button-active .list-icon.font-color, -.x-item-pressed .x-button-icon.font-color, -.x-item-pressed .list-icon.font-color { - background-position: -24px -96px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.bold, -.list-icon.bold { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -120px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.bold, -.x-button-pressing .list-icon.bold, -.x-button-pressed .x-button-icon.bold, -.x-button-pressed .list-icon.bold, -.x-button-active .x-button-icon.bold, -.x-button-active .list-icon.bold, -.x-item-pressed .x-button-icon.bold, -.x-item-pressed .list-icon.bold { - background-position: -24px -120px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.italic, -.list-icon.italic { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -144px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.italic, -.x-button-pressing .list-icon.italic, -.x-button-pressed .x-button-icon.italic, -.x-button-pressed .list-icon.italic, -.x-button-active .x-button-icon.italic, -.x-button-active .list-icon.italic, -.x-item-pressed .x-button-icon.italic, -.x-item-pressed .list-icon.italic { - background-position: -24px -144px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.underline, -.list-icon.underline { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -168px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.underline, -.x-button-pressing .list-icon.underline, -.x-button-pressed .x-button-icon.underline, -.x-button-pressed .list-icon.underline, -.x-button-active .x-button-icon.underline, -.x-button-active .list-icon.underline, -.x-item-pressed .x-button-icon.underline, -.x-item-pressed .list-icon.underline { - background-position: -24px -168px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-left, -.list-icon.align-left { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -192px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-left, -.x-button-pressing .list-icon.align-left, -.x-button-pressed .x-button-icon.align-left, -.x-button-pressed .list-icon.align-left, -.x-button-active .x-button-icon.align-left, -.x-button-active .list-icon.align-left, -.x-item-pressed .x-button-icon.align-left, -.x-item-pressed .list-icon.align-left { - background-position: -24px -192px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-center, -.list-icon.align-center { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -216px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-center, -.x-button-pressing .list-icon.align-center, -.x-button-pressed .x-button-icon.align-center, -.x-button-pressed .list-icon.align-center, -.x-button-active .x-button-icon.align-center, -.x-button-active .list-icon.align-center, -.x-item-pressed .x-button-icon.align-center, -.x-item-pressed .list-icon.align-center { - background-position: -24px -216px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-right, -.list-icon.align-right { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -240px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-right, -.x-button-pressing .list-icon.align-right, -.x-button-pressed .x-button-icon.align-right, -.x-button-pressed .list-icon.align-right, -.x-button-active .x-button-icon.align-right, -.x-button-active .list-icon.align-right, -.x-item-pressed .x-button-icon.align-right, -.x-item-pressed .list-icon.align-right { - background-position: -24px -240px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-fill, -.list-icon.align-fill { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -264px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-fill, -.x-button-pressing .list-icon.align-fill, -.x-button-pressed .x-button-icon.align-fill, -.x-button-pressed .list-icon.align-fill, -.x-button-active .x-button-icon.align-fill, -.x-button-active .list-icon.align-fill, -.x-item-pressed .x-button-icon.align-fill, -.x-item-pressed .list-icon.align-fill { - background-position: -24px -264px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.pages, -.list-icon.pages { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -288px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.pages, -.x-button-pressing .list-icon.pages, -.x-button-pressed .x-button-icon.pages, -.x-button-pressed .list-icon.pages, -.x-button-active .x-button-icon.pages, -.x-button-active .list-icon.pages, -.x-item-pressed .x-button-icon.pages, -.x-item-pressed .list-icon.pages { - background-position: -24px -288px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search-prev, -.list-icon.search-prev { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -312px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search-prev, -.x-button-pressing .list-icon.search-prev, -.x-button-pressed .x-button-icon.search-prev, -.x-button-pressed .list-icon.search-prev, -.x-button-active .x-button-icon.search-prev, -.x-button-active .list-icon.search-prev, -.x-item-pressed .x-button-icon.search-prev, -.x-item-pressed .list-icon.search-prev { - background-position: -24px -312px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search-next, -.list-icon.search-next { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -336px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search-next, -.x-button-pressing .list-icon.search-next, -.x-button-pressed .x-button-icon.search-next, -.x-button-pressed .list-icon.search-next, -.x-button-active .x-button-icon.search-next, -.x-button-active .list-icon.search-next, -.x-item-pressed .x-button-icon.search-next, -.x-item-pressed .list-icon.search-next { - background-position: -24px -336px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert, -.list-icon.insert { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -360px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert, -.x-button-pressing .list-icon.insert, -.x-button-pressed .x-button-icon.insert, -.x-button-pressed .list-icon.insert, -.x-button-active .x-button-icon.insert, -.x-button-active .list-icon.insert, -.x-item-pressed .x-button-icon.insert, -.x-item-pressed .list-icon.insert { - background-position: -24px -360px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search, -.list-icon.search { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -384px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search, -.x-button-pressing .list-icon.search, -.x-button-pressed .x-button-icon.search, -.x-button-pressed .list-icon.search, -.x-button-active .x-button-icon.search, -.x-button-active .list-icon.search, -.x-item-pressed .x-button-icon.search, -.x-item-pressed .list-icon.search { - background-position: -24px -384px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.fullscreen, -.list-icon.fullscreen { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -408px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.fullscreen, -.x-button-pressing .list-icon.fullscreen, -.x-button-pressed .x-button-icon.fullscreen, -.x-button-pressed .list-icon.fullscreen, -.x-button-active .x-button-icon.fullscreen, -.x-button-active .list-icon.fullscreen, -.x-item-pressed .x-button-icon.fullscreen, -.x-item-pressed .list-icon.fullscreen { - background-position: -24px -408px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-down, -.list-icon.spinner-down { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -432px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-down, -.x-button-pressing .list-icon.spinner-down, -.x-button-pressed .x-button-icon.spinner-down, -.x-button-pressed .list-icon.spinner-down, -.x-button-active .x-button-icon.spinner-down, -.x-button-active .list-icon.spinner-down, -.x-item-pressed .x-button-icon.spinner-down, -.x-item-pressed .list-icon.spinner-down { - background-position: -24px -432px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-up, -.list-icon.spinner-up { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -456px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-up, -.x-button-pressing .list-icon.spinner-up, -.x-button-pressed .x-button-icon.spinner-up, -.x-button-pressed .list-icon.spinner-up, -.x-button-active .x-button-icon.spinner-up, -.x-button-active .list-icon.spinner-up, -.x-item-pressed .x-button-icon.spinner-up, -.x-item-pressed .list-icon.spinner-up { - background-position: -24px -456px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.table, -.list-icon.table { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -480px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.table, -.x-button-pressing .list-icon.table, -.x-button-pressed .x-button-icon.table, -.x-button-pressed .list-icon.table, -.x-button-active .x-button-icon.table, -.x-button-active .list-icon.table, -.x-item-pressed .x-button-icon.table, -.x-item-pressed .list-icon.table { - background-position: -24px -480px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.picture, -.list-icon.picture { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -504px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.picture, -.x-button-pressing .list-icon.picture, -.x-button-pressed .x-button-icon.picture, -.x-button-pressed .list-icon.picture, -.x-button-active .x-button-icon.picture, -.x-button-active .list-icon.picture, -.x-item-pressed .x-button-icon.picture, -.x-item-pressed .list-icon.picture { - background-position: -24px -504px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-row, -.list-icon.insert-row { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -528px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-row, -.x-button-pressing .list-icon.insert-row, -.x-button-pressed .x-button-icon.insert-row, -.x-button-pressed .list-icon.insert-row, -.x-button-active .x-button-icon.insert-row, -.x-button-active .list-icon.insert-row, -.x-item-pressed .x-button-icon.insert-row, -.x-item-pressed .list-icon.insert-row { - background-position: -24px -528px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-column, -.list-icon.insert-column { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -552px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-column, -.x-button-pressing .list-icon.insert-column, -.x-button-pressed .x-button-icon.insert-column, -.x-button-pressed .list-icon.insert-column, -.x-button-active .x-button-icon.insert-column, -.x-button-active .list-icon.insert-column, -.x-item-pressed .x-button-icon.insert-column, -.x-item-pressed .list-icon.insert-column { - background-position: -24px -552px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textbigger, -.list-icon.textbigger { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -576px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textbigger, -.x-button-pressing .list-icon.textbigger, -.x-button-pressed .x-button-icon.textbigger, -.x-button-pressed .list-icon.textbigger, -.x-button-active .x-button-icon.textbigger, -.x-button-active .list-icon.textbigger, -.x-item-pressed .x-button-icon.textbigger, -.x-item-pressed .list-icon.textbigger { - background-position: -24px -576px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textless, -.list-icon.textless { - background-image: url("../img/icons/icons-normal.png"); - background-color: transparent; - background-position: 0 -600px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textless, -.x-button-pressing .list-icon.textless, -.x-button-pressed .x-button-icon.textless, -.x-button-pressed .list-icon.textless, -.x-button-active .x-button-icon.textless, -.x-button-active .list-icon.textless, -.x-item-pressed .x-button-icon.textless, -.x-item-pressed .list-icon.textless { - background-position: -24px -600px; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-toolbar .x-button.x-button-base { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-icon, .x-toolbar .x-button.x-button-base .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-forward:before, .x-button.x-button-base.x-button-forward:after, .x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-label, .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base .x-badge, .x-toolbar .x-button.x-button-base .x-button-label, .x-toolbar .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-forward:before { - background: #989898; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-button.x-button-base.x-button-back:after, .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base, .x-toolbar .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing, .x-button.x-button-base.x-button-pressing:after, .x-button.x-button-base.x-button-pressed, .x-button.x-button-base.x-button-pressed:after, .x-button.x-button-base.x-button-active, .x-button.x-button-base.x-button-active:after, .x-toolbar .x-button.x-button-base.x-button-pressing, .x-toolbar .x-button.x-button-base.x-button-pressing:after, .x-toolbar .x-button.x-button-base.x-button-pressed, .x-toolbar .x-button.x-button-base.x-button-pressed:after, .x-toolbar .x-button.x-button-base.x-button-active, .x-toolbar .x-button.x-button-base.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing .x-button-label, .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressing .x-badge, .x-button.x-button-base.x-button-pressed .x-button-label, .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressed .x-badge, .x-button.x-button-base.x-button-active .x-button-label, .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-active .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-toolbar .x-button.x-button-light { - border: 1px solid #c7c7c7; - border-top-color: #d9d9d9; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: #262626; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-icon, .x-toolbar .x-button.x-button-light .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-forward:before, .x-button.x-button-light.x-button-forward:after, .x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-label, .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light .x-badge, .x-toolbar .x-button.x-button-light .x-button-label, .x-toolbar .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light .x-badge { - color: #666666; - text-shadow: white 0 0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-forward:before { - background: #cccccc; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-button.x-button-light.x-button-back:after, .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light, .x-toolbar .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:after { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing, .x-button.x-button-light.x-button-pressing:after, .x-button.x-button-light.x-button-pressed, .x-button.x-button-light.x-button-pressed:after, .x-button.x-button-light.x-button-active, .x-button.x-button-light.x-button-active:after, .x-toolbar .x-button.x-button-light.x-button-pressing, .x-toolbar .x-button.x-button-light.x-button-pressing:after, .x-toolbar .x-button.x-button-light.x-button-pressed, .x-toolbar .x-button.x-button-light.x-button-pressed:after, .x-toolbar .x-button.x-button-light.x-button-active, .x-toolbar .x-button.x-button-light.x-button-active:after { - background-image: none; - background-color: #999999; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(10%, #8c8c8c), color-stop(65%, #999999), color-stop(100%, #9a9a9a)); - background-image: -webkit-linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); - background-image: linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing .x-button-label, .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressing .x-badge, .x-button.x-button-light.x-button-pressed .x-button-label, .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressed .x-badge, .x-button.x-button-light.x-button-active .x-button-label, .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-active .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-light.x-button-active .x-button-label, .x-toolbar .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-active .x-badge { - color: white; - text-shadow: gray 0 0.09em 0; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-first) { - border-left: 1px solid #c7c7c7; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue { - border: 1px solid #384220; - border-top-color: #4d5a2c; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: white; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-icon, .x-toolbar .x-button.x-button-base-blue .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-forward:before, .x-button.x-button-base-blue.x-button-forward:after, .x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-label, .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue .x-badge, .x-toolbar .x-button.x-button-base-blue .x-button-label, .x-toolbar .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue .x-badge { - color: white; - text-shadow: #384220 0 -0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before { - background: #3e4923; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-button.x-button-base-blue.x-button-back:after, .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after { - background-image: none; - background-color: #798d45; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #9cb262), color-stop(100%, #798d45)); - background-image: -webkit-linear-gradient(top, #ffffff, #9cb262 3%, #798d45); - background-image: linear-gradient(top, #ffffff, #9cb262 3%, #798d45); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing, .x-button.x-button-base-blue.x-button-pressing:after, .x-button.x-button-base-blue.x-button-pressed, .x-button.x-button-base-blue.x-button-pressed:after, .x-button.x-button-base-blue.x-button-active, .x-button.x-button-base-blue.x-button-active:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressing, .x-toolbar .x-button.x-button-base-blue.x-button-pressing:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressed, .x-toolbar .x-button.x-button-base-blue.x-button-pressed:after, .x-toolbar .x-button.x-button-base-blue.x-button-active, .x-toolbar .x-button.x-button-base-blue.x-button-active:after { - background-image: none; - background-color: #5c6b34; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4923), color-stop(10%, #4d5a2c), color-stop(65%, #5c6b34), color-stop(100%, #5d6c35)); - background-image: -webkit-linear-gradient(top, #3e4923, #4d5a2c 10%, #5c6b34 65%, #5d6c35); - background-image: linear-gradient(top, #3e4923, #4d5a2c 10%, #5c6b34 65%, #5d6c35); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-button.x-button-base-blue.x-button-active .x-button-label, .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-active .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge { - text-shadow: #384220 0 0.09em 0; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first) { - border-left: 1px solid #384220; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-icon, .x-toolbar .x-button.x-button-back .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-forward:before, .x-button.x-button-back.x-button-forward:after, .x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-label, .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back .x-badge, .x-toolbar .x-button.x-button-back .x-button-label, .x-toolbar .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-forward:before { - background: #989898; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-button.x-button-back.x-button-back:after, .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back, .x-toolbar .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing, .x-button.x-button-back.x-button-pressing:after, .x-button.x-button-back.x-button-pressed, .x-button.x-button-back.x-button-pressed:after, .x-button.x-button-back.x-button-active, .x-button.x-button-back.x-button-active:after, .x-toolbar .x-button.x-button-back.x-button-pressing, .x-toolbar .x-button.x-button-back.x-button-pressing:after, .x-toolbar .x-button.x-button-back.x-button-pressed, .x-toolbar .x-button.x-button-back.x-button-pressed:after, .x-toolbar .x-button.x-button-back.x-button-active, .x-toolbar .x-button.x-button-back.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing .x-button-label, .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressing .x-badge, .x-button.x-button-back.x-button-pressed .x-button-label, .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressed .x-badge, .x-button.x-button-back.x-button-active .x-button-label, .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-active .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-back.x-button-active .x-button-label, .x-toolbar .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} -/* line 79, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - -webkit-border-radius: 4px; - border-radius: 4px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* - * unsupport - */ -/* line 89, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss */ -.unsuported-view { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url(../img/ios-only.png) no-repeat center #efefef; - background-attachment: fixed; - z-index: 90000; -} - -/* - * Additional styles - */ -/* line 104, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-12 { - padding-left: 12px; - padding-right: 12px; -} - -/* line 109, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-30 { - padding-left: 30px; - padding-right: 30px; -} +html,body{position:relative;width:100%;height:100%}.x-fullscreen{position:absolute !important}.x-body{position:relative;z-index:0}.x-inner,.x-body{width:100%;height:100%}.x-sized{position:relative}.x-innerhtml{width:100%}.x-layout-box{display:flex;display:-webkit-box;display:-ms-flexbox}.x-layout-box.x-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{min-width:0 !important}.x-layout-box.x-vertical{-webkit-box-orient:vertical !important;-ms-flex-direction:column !important;flex-direction:column !important}.x-layout-box.x-vertical>.x-layout-box-item.x-flexed{min-height:0 !important}.x-layout-box>.x-layout-box-item{display:flex !important;display:-webkit-box !important;display:-ms-flexbox !important}.x-layout-box.x-align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.x-layout-box.x-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-layout-box.x-align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.x-layout-box.x-align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.x-layout-box.x-pack-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.x-layout-box.x-pack-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-layout-box.x-pack-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.x-layout-box.x-pack-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-layout-box-item.x-sized>.x-inner,.x-layout-box-item.x-sized>.x-body,.x-layout-box-item.x-sized>.x-dock-outer{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-webkit .x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{width:0 !important}.x-webkit .x-layout-box.x-vertical>.x-layout-box-item.x-flexed{height:0 !important}.x-firefox .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-firefox .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px;min-height:0;min-width:0}.x-firefox .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-layout-card{position:relative;overflow:hidden}.x-layout-card-perspective{-webkit-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.x-layout-card-item-container{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-card-item{position:absolute;top:0;right:0;bottom:0;left:0;position:absolute !important}.x-dock{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock>.x-dock-body{overflow:hidden}.x-dock.x-sized,.x-dock.x-sized>.x-dock-body>*,.x-dock.x-sized>.x-dock-body>.x-body>.x-inner{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-sized>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-unsized,.x-dock.x-stretched{height:100%}.x-dock.x-unsized>.x-dock-body,.x-dock.x-stretched>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0;min-width:0}.x-dock.x-unsized>.x-dock-body>*,.x-dock.x-stretched>.x-dock-body>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-dock-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-dock.x-dock-horizontal>.x-dock-item{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-inner,.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-body{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-ie .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-ie .x-has-width>.x-dock.x-unsized.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-stretched.x-container{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-stretched.x-container>.x-inner,.x-stretched.x-container>.x-body,.x-stretched.x-container>.x-body>.x-inner{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0px}.x-layout-fit.x-stretched>.x-layout-fit-item{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-layout-fit{position:relative}.x-layout-fit-item.x-sized{position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-fit-item.x-unsized{width:100%;height:100%}.x-ie .x-stretched>.x-inner,.x-ie .x-stretched>.x-body{min-height:inherit}.x-center,.x-centered{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-center>*,.x-centered>*{position:relative}.x-center>.x-floating,.x-centered>.x-floating{position:relative !important}.x-floating{position:absolute !important}.x-layout-float{overflow:hidden}.x-layout-float>.x-layout-float-item{float:left}.x-layout-float.x-direction-right>.x-layout-float-item{float:right}@-webkit-keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}@keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}.x-paint-monitored{position:relative}.x-paint-monitor{width:0 !important;height:0 !important;visibility:hidden}.x-paint-monitor.cssanimation{-webkit-animation-duration:0.0001ms;-webkit-animation-name:x-paint-monitor-helper;animation-duration:0.0001ms;animation-name:x-paint-monitor-helper}.x-paint-monitor.overflowchange{overflow:hidden}.x-paint-monitor.overflowchange::after{content:'';display:block;width:1px !important;height:1px !important}.x-size-monitored{position:relative}.x-size-monitors{position:absolute;left:0;top:0;width:100%;height:100%;visibility:hidden;overflow:hidden}.x-size-monitors>*{width:100%;height:100%;overflow:hidden}.x-size-monitors.scroll>*.shrink::after{content:'';display:block;width:200%;height:200%;min-width:1px;min-height:1px}.x-size-monitors.scroll>*.expand::after{content:'';display:block;width:100000px;height:100000px}.x-size-monitors.overflowchanged>*.shrink>*{width:100%;height:100%}.x-size-monitors.overflowchanged>*.expand>*{width:200%;height:200%}.x-size-change-detector{visibility:hidden;position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;overflow:hidden}.x-size-change-detector>*{visibility:hidden}.x-size-change-detector-shrink>*{width:200%;height:200%}.x-size-change-detector-expand>*{width:100000px;height:100000px}.x-translatable{position:absolute !important;top:500000px !important;left:500000px !important;overflow:visible !important;z-index:1}.x-translatable-hboxfix{position:absolute;min-width:100%;top:0;left:0}.x-translatable-hboxfix>.x-translatable{position:relative !important}.x-translatable-container{overflow:hidden;width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-translatable-container::before{content:'';display:block;width:1000000px;height:1000000px;visibility:hidden}.x-button{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;border:1px solid #ccc;position:relative;overflow:hidden;z-index:1}.x-button .x-button-icon{position:relative;background-repeat:no-repeat;background-position:center}.x-button .x-button-icon.x-shown{display:block}.x-button .x-button-icon.x-hidden{display:none}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-iconalign-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-button-label,.x-badge,.x-hasbadge .x-badge{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;text-overflow:ellipsis;text-align:center;display:block;overflow:hidden}.x-badge{background-color:#ccc;border:1px solid #aaa;z-index:2;position:absolute !important;width:auto;font-size:.6em;right:0;top:0;max-width:95%;display:inline-block}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;-webkit-text-size-adjust:none;margin:0;cursor:default}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}*:focus{outline:none}body.x-desktop{overflow:hidden}@-ms-viewport{width:device-width}*,*:after,*:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;-ms-touch-action:none;-moz-user-select:-moz-none}input,textarea{-webkit-user-select:text;-ms-user-select:auto;-moz-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;-ms-user-select:auto;line-height:1.5;color:#333;font-size:.8em;padding:1.2em}.x-html body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%}.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6{font-weight:normal;color:#222}.x-html h1 img,.x-html h2 img,.x-html h3 img,.x-html h4 img,.x-html h5 img,.x-html h6 img{margin:0}.x-html h1{font-size:3em;line-height:1;margin-bottom:0.50em}.x-html h2{font-size:2em;margin-bottom:0.75em}.x-html h3{font-size:1.5em;line-height:1;margin-bottom:1.00em}.x-html h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}.x-html h5{font-size:1em;font-weight:bold;margin-bottom:1.50em}.x-html h6{font-size:1em;font-weight:bold}.x-html p{margin:0 0 1.5em}.x-html p .left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{float:right;margin:1.5em 0 1.5em 1.5em;padding:0}.x-html a{text-decoration:underline;color:#06c}.x-html a:visited{color:#004d99}.x-html a:focus{color:#09f}.x-html a:hover{color:#09f}.x-html a:active{color:#bf00ff}.x-html blockquote{margin:1.5em;color:#666;font-style:italic}.x-html strong,.x-html dfn{font-weight:bold}.x-html em,.x-html dfn{font-style:italic}.x-html sup,.x-html sub{line-height:0}.x-html abbr,.x-html acronym{border-bottom:1px dotted #666666}.x-html address{margin:0 0 1.5em;font-style:italic}.x-html del{color:#666}.x-html pre{margin:1.5em 0;white-space:pre}.x-html pre,.x-html code,.x-html tt{font:1em "andale mono","lucida console",monospace;line-height:1.5}.x-html li ul,.x-html li ol{margin:0}.x-html ul,.x-html ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}.x-html ul{list-style-type:disc}.x-html ol{list-style-type:decimal}.x-html dl{margin:0 0 1.5em 0}.x-html dl dt{font-weight:bold}.x-html dd{margin-left:1.5em}.x-html table{margin-bottom:1.4em;width:100%}.x-html th{font-weight:bold}.x-html thead th{background:#c3d9ff}.x-html th,.x-html td,.x-html caption{padding:4px 10px 4px 5px}.x-html table.striped tr:nth-child(even) td,.x-html table tr.even td{background:#e5ecf9}.x-html tfoot{font-style:italic}.x-html caption{background:#eee}.x-html .quiet{color:#666}.x-html .loud{color:#111}.x-html ul li{list-style-type:circle}.x-html ol li{list-style-type:decimal}@-webkit-keyframes x-loading-spinner-rotate{0%{-webkit-transform:rotate(0deg)}8.32%{-webkit-transform:rotate(0deg)}8.33%{-webkit-transform:rotate(30deg)}16.65%{-webkit-transform:rotate(30deg)}16.66%{-webkit-transform:rotate(60deg)}24.99%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.32%{-webkit-transform:rotate(90deg)}33.33%{-webkit-transform:rotate(120deg)}41.65%{-webkit-transform:rotate(120deg)}41.66%{-webkit-transform:rotate(150deg)}49.99%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.32%{-webkit-transform:rotate(180deg)}58.33%{-webkit-transform:rotate(210deg)}66.65%{-webkit-transform:rotate(210deg)}66.66%{-webkit-transform:rotate(240deg)}74.99%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.32%{-webkit-transform:rotate(270deg)}83.33%{-webkit-transform:rotate(300deg)}91.65%{-webkit-transform:rotate(300deg)}91.66%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(330deg)}}@keyframes x-loading-spinner-rotate{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.32%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.33%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.65%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.66%{-ms-transform:rotate(60deg);transform:rotate(60deg)}24.99%{-ms-transform:rotate(60deg);transform:rotate(60deg)}25%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.32%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.33%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.65%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.66%{-ms-transform:rotate(150deg);transform:rotate(150deg)}49.99%{-ms-transform:rotate(150deg);transform:rotate(150deg)}50%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.32%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.33%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.65%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.66%{-ms-transform:rotate(240deg);transform:rotate(240deg)}74.99%{-ms-transform:rotate(240deg);transform:rotate(240deg)}75%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.32%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.33%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.65%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.66%{-ms-transform:rotate(330deg);transform:rotate(330deg)}100%{-ms-transform:rotate(330deg);transform:rotate(330deg)}}@font-face{font-family:"Pictos";src:url('data:application/font-woff;base64,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') format('woff'),url('data:font/truetype;base64,AAEAAAANAIAAAwBQRkZUTVhd8L4AAADcAAAAHEdERUYAkQAEAAAA+AAAACBPUy8ygxR/WQAAARgAAABgY21hcM52AmwAAAF4AAABSmdhc3D//wADAAACxAAAAAhnbHlmJw4xwQAAAswAAD1oaGVhZPSrSy0AAEA0AAAANmhoZWEGhQMnAABAbAAAACRobXR4SUwNLQAAQJAAAAGQbG9jYQIo9WoAAEIgAAAAym1heHAAvATkAABC7AAAACBuYW1lO18JUwAAQwwAAANocG9zdFx+DF8AAEZ0AAAA7QAAAAEAAAAAxtQumQAAAADIj74XAAAAAMj6BA0AAQAAAA4AAAAYAAAAAAACAAEAAQBjAAEABAAAAAIAAAACAyIBkAAFAAQCvAKKAAAAjAK8AooAAAHdADIA+gAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAABweXJzAEAAIAD/Au7/BgAAAzQAtAAAAAEAAAAAApUCrQAAACAAAQAAAAMAAAADAAAAHAABAAAAAABEAAMAAQAAABwABAAoAAAABgAEAAEAAgB+AP///wAAACAA/////+P/YwABAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAADBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf//AAIAAwA7/9ADbAK7AAsAFQAZAAAlFgYjISImNwE2MhcDMjY0JiMiBhQWNxMjEwNhJTRI/ZNIMyUBNiRnJFUXHx8XFh8fPBp/Gmc+WVk+AhY+Pv2xICwfHywgjQE0/swAAAAAAgA0/+wDJgKnABgAMgAAEz4ENxUiBhUHMzIWFREUBisBIiY1ESU0PgM3FSIGFQczMhYVERQGKwEiJjURNDQBDShDck5COgRUEhoaEuESGgG5DihDck5DOgRUEhoaEuATGgEhQWRnRi8FnV1lARoT/v4SGhoSAQIHQWRnRi8FnV1lARoT/v4SGhoSAQIFAAAABgAo/4wCwQK7ACQANABEAFQAZAB0AAABFisBERQGIyEiJjURIyImPwE2OwE1ND8BNjsBMh8BFh0BMzIXJRUzPQE0LwEmKwEiDwEGFQU0JyEjIgYVERQWMyEyNjUBMhYVERQGKwEiJjURNDYzEyImNRE0NjsBMhYVERQGIzMiJjURNDY7ATIWFREUBiMCwQkRMAoH/f8HCjQHBQQfCRJLDDAMEtgSDDQNRxIJ/lb+DAkMEpsSDAYMAUgQ/ulZBwoKBwFvBwr+xwcLCwcVBwsLB3oHCwsHFQcKCgdkBwoKBxYHCgoHAeIO/ckHCgoHAjcIBi4OQhQKMQwMNA0RPw4SBAQcFAoKDAwGDBKAEAILB/4kBwoKBwG8Cgf+hQcKCgcBewcK/mMKBwF7BwoKB/6FBwoKBwF7BwoKB/6FBwoAAAAGABb/7ANaAkEAAwAHAA8AFwAzADgAAAEjJzsBByM3BjIWFAYiJjQkMhYUBiImNBMWFRQHAwYjISImJwMjIiY0NjsBMh8BITc2MzIDNyEXIQH3bBB8tRJoAb84KSk4KQErOigoOijzGQJYBxn+XwwTAlGVDhQUDrAaBxIB9wUGGgd2Nv4uLQFtARtERETpKDooKDooKDooKDoBtgcaAwb+2xkPCwFHFBwUGkkPGP7is7oAAAAEACD/egNjArgAQABkAH4AiAAAARQGBxcVFAcGKwEiJyY9ATcGKwEXFRQHBisBIicmPQE3JicHIyInJj0BNDc2OwEXNjcnPQE0NzYzMh8BNjMyFxYDPgE1NCcmIyIPAScXBwYPAScVNxcWHwEHMycXFjMyPwEHMycDFzIeBBcWFAcGIyInLgInIy4BNT4BBT4BFxYOAiY2A2NLQQsLDRWUFQ0LAgYMCgILDBaUFQ0LC1YmLAQSDA8PDBIEKyJJAhkLDw4LgBkaoG5xuj1FXmCJHRgJiAIMTxsHS0sHIVsPDXsJIw0aGBckCXsPpQcHFh4iJCYRCAgIDAsIGEYpDwQLEAER/v0TLAwLCSYrGAoBFU+ML2AEEQ0PDw0RBRIBEQURDQ8PDREFWjxdBAwMFZgVDAwEVThuAQEcDwcHSANjZP6KKXhFdlRVBAFNggg5VxYHfwgWYDsJcEoEAgMES3QB4wEEBgwQGRAHGAgJCBcfCAEBEQsMEIkUDAsLLCgMFiwAAAAAAQAR/9UCywKPAAsAAAEzFSMVIzUjNTM1MwHR+vrG+vrGAZXG+vrG+gAAAAAEAA3/zgN/AioACwAXACcALAAAJTYyFzIVByI1JiIHJz4BFh8BBzQjJiQHJRQzBycmJAQHIhUnNzYkBAE2MhcHAQlO3U4BNwE3nDe1VeXkVQE4AWr+0WoCuQI4Amj+6P7paAE4AXgBQAE//oMaSho/i05OATcBNze0VT09VQE4AWoBarcCOAJoSkpoATgBd1VV/g4ZGT8AAAMALf+yAnMCugAOABsAJgAAATMRIREzNTQ2OwIyFhUDJzY1NCYjIgYVFBcHEzU0JisCIgYdAQImTf26S3xXBARYe5QgICYcGychIa8+LAMFKz4BZ/5LAbWAV3x8V/4bjRQlHCYmHCYSjgFlgCs+PiuAAAAAAgAZ/7EDWQK6AB0AKgAAATIWHQEjNTc1IzU0JisCIgYdATMRIREhNTQ2OwEBJzY1NCYjIgYVFBcHAoVYfGokJD4sAgUsPk39uAGRfFgD/v0hIScbHCchIQK6e1iAHSINNCw9PSyA/koBtoBYe/1GjhQlHCcnHCUUjgAAAAEAJ//KAuEChAALAAABBxcHJwcnNyc3FzcC4cPDmsPDmsPDmsPDAerDxJnDw5nEw5rDwwACACj/dgNwAr4ABwA3AAAAIBYQBiAmEAU1NCYrASImPQE0JisBIgYdARQGKwEiBh0BFBY7ATIWHQEUFjsBMjY9ATQ2OwEyNgEeAVz29v6k9gKdFQ95DxUWDykPFRYPeBAVFRB4DxYVDykPFhUPeQ8VAr72/qT29gFcwikPFRYPeQ8VFQ95DxYVDykPFhUPeQ8VFQ95DxUWAAgAKP95A2sCvQAQADUARQBJAE0AUQBVAFkAAAAgFhUUBwYHBiMiJyYnJjU0BTY1NCYjIgYVFBcWFzYzMhYVFAcWFxYzMjcyNjMmNTQ2MzIXNiUWFRQHBiMiJyY1NDY1Jz8BFSM1HwEHJxc1MxUhNTMVJzcXBwEdAVr0LjtxXmllXXI9MQLQC7iBgrgMAwYVGEFdBQQIKiktKgIHAgVdQBcVBf79GQUQKgsNJwE4FXMnwRtEG0Fg/etfKxxDGwK99a1oV3M9MzA8cV1orf0pJ4K4uIInLgkQBlxBERQCAgsMBBYSQF0GD40THw4KJwUQKgEGAvUJE19fSxtEHHsmJiYmoxtDHAAAAAIAKP9wA3ECugAJABkAAAEyFhAGIyImEDYBNTQmIyEiBh0BFBYzITI2Ac2u9vaur/b2AZgcE/6IExwcEwF4ExwCuvf+pPf3AVz3/kgnExwcEycUGxsAAAADADcA0QN6AYgACQASABsAABMyFhUUBiImNDYgMhYUBiImNTQkMhYUBiImNTSTJTY1TDY2AUVMNjZMNQF7TDY2TDYBiDYlJjY2TDU1TDY2JiU2NUw2NiYlAAAAAAQAKP+wA2oCvAAOABIAFgAnAAABMxURIxUHITUjETUzNSEXIxUzJRUhNQM1Mz0BMxUzNSEVMz0BMxURArW1tYj+sLW1Adh7aWn94wFsiYk2Q/2kQTYCGX/+0zWIvQEtf6PcNdttbf1giIM3gcXFbxI3/vUAAgAb/90DXgKAABQAKgAAJR8BDgEjIiYnKwI3FysBFBYzMjY3MwcnOwE1NCYjIgYHLwE+ATMyFh0BAoMnHC+LT4zFAQsCQ35/MxyPZTxpyDR/fjIej2U9aSInHC+LUYvGoSgbPEXEjH5+ZI43u35+AmWPOTAnHD1GxosCAAEAHP91As0CuwAiAAAlMxUUBiAmNTQ2MzIXPQEfAg8CPQEmIyIGFRQWMjY9ATMCsB3J/uLKyo8QCTGdFRWdMRIHU3R1pHQe6x6PycqOj8oBT0cynRUUnTJGWAJ0U1J0dFIeAAACACj/dQNvAr0ACQAhAAABMhYQBiMiJhA2ATY0LwEmIg8BBi8BJg8BBhQfARY7ATI3Acuu9vaurfb2AboGBjcGEgfzDxBYEA83BgaLDxYaFBECvfb+pPb2AVz2/ssGEgc2Bgb0EBBYEBA2BxIGjA8PAAAAAAEADAADA04CaQAZAAA3JjQ/ATYyHwEWMjcBNjIfARYUBwEGKwEiJxYKClMKGwqIChsKAXMKGwpTCgr+PhghJyAY7wocClMKCocKCgF0CgpSChsK/j0YGAABADv//wL5ArwAAgAAEwkBOwK+/UICvP6h/qIAAgA7AAEC9QK7AAMABwAANxEhERMhESE7AQauAQb++gECuv1GArr9RgAAAAABADsAAgL2ArwAAwAAJSERIQL2/UUCuwICugAAAQA7AHIDjAJXAAYAAAE1DQE1BREBpwHl/hv+lAGhtvPytbUB5QAAAAEADgBxA18CVgAGAAABFS0BFSURAfT+GgHmAWsBJ7bz8ra2/hsAAAACACj/dANwArwABwAKAAAAIBYQBiAmEAEtAQEeAVz29v6k9gECAa/+UQK89v6k9vYBXP562NgAAAIAGf9rAwgCxQAoADUAACUXFAYrARYVFAYiJjU0NjUjIiY1NyY9ATQ2NyY1NDYyFhUUBx4BHQEUARQXNjMyFzY1NCYiBgKfaRgR8gE3TjcB8RAZaQFlUAQ3TjcDUGX+vAIcFhcbAx8sHmRmEBkECCc3NycCCAIZEGYIEdBYjBwLDyc3NycODByNV9ARAfsFCgUFCAcWHh4AAwAO/+cDTgJcAA8AHwA8AAABBw4CByYnJisBNTMWFxYTPwEWFxY3MzUXBzUjIicmEyIHBgcOAgcGByM1MzI3Njc+ATc2NzM1Fwc1IwErKgQOCwUSCTEgZWU7OyGFLCAQCjQgVq+vVjhAG5AXISMrE0c+HVBKY2MaIR0yBYgnUUdYr69YAaIsBQ8MBRAHKHABKBX+2i8iDggqAl6UklgoEQEYFhctE00+GEABcBYSMgWRIEABXJOTWgAAAAABAAP/3QFRAnkABQAAEzcRJyM1c97ecAGa3/1k3t8AAAMAPABGA4ACAAAHAAsADwAAARUHFSERIRUDESERNxchNQOAP/z7AwVJ/Y7v3v5jAXuwGWwBum3+/QEm/tr2xsYAAAAABAAO/3MDTgLiAAUADgAcACgAABM3EScjNSUWFAcnNjQnNQUUBgcnPgE0Jic1Nx4BAx4BEAYHJz4BNCYnft7ecAGkS0siIyMBGFxNIjtGRjshTV1ddo2NdiFjd3dkAZjf/WTe3x4ytDFDHFgcAkpcmSxCIneMdyICQSybAV1C6v7o6kFCOMfsxzgAAAADACj/dANyAr4ACQAYAE8AAAEyFhAGIyImEDYTNjQnJiMiBwYXBhcWMzITNjU0JyYjIgcGDwEXNzY3Njc2NzYzMhcWFRQHBgcOAgcGBwYHBhUUFhUXOwE1NDc2Nz4BNzYBza/29q+u9/fKExMUHRwUFAICFBMdIIIKKSZGMSQhHgkuCgIRBxAKDQcOHggLBwwJBAkLBBENDAgFAQELWAgJDA4eEQ4Cvvf+pPf3AVz3/V8SOhIRERQbGxQRAVMYJjojIgwLFAZXCAEKBAYEAgIKCxQNDBAIBAgKAxASFBoWEwQQBAsMGhAQDg4WExEAAAACABv/jAHhAr8ADwAbAAABMhYVFAMGMS4BAjU0NjsBETI2NTQmIyIGFRQWAQJcg8sYGUx+g1wEKjw8Kis8PAK/hFtr/kkyNaQBRTZcg/7OPCsqPDwqKzwAAwAc/3gDYAK8AB0AOwBHAAABFwYmLwEmND8BNjIfAR4BByc2LwEmIg8BBhQfARYBBiIvAS4BNxcGHwEWMj8BNjQvASYHJzYWHwEWFAcANjIXARYUBiInASYBO0YmZSSQJiZjJmsmkCQDIEYKEJAJGwljCgqQEAGxJmomkSMEIEUJEJAJGwljCgqQEBVFJmUkkCUl/b4cKA4BJw4cKA7+2Q4BK0YgBCSQJWwlYyYmkCRlJkUUEpAJCWMKGgqQEP58JSWRI2UmRhQQkAoKYwkbCZEQC0YgAySQJmsmAcMcDv7ZDigcDgEmDgAAAAACABIASANXAiUAJQAuAAABBgcOAyMiLgIvAR4DNjcmJyY3NhcWNzY3NTQ2MzIWHwEnIgYUFjI2NCYC3g4cDCdGc0hNhU44CwsFEzo6UiVAIBUNBxI1nwcOXkNAXAVm5RMaGiYbGgE3GxceOEAnKjw8FRUDBxAIBw4bQCsLBxEyCQgSBUNeVz8xdxsmGhomGwABACQAAANpAkUAIAAAAR4BFRQGIyImIyErAS4BNTQ2NyY1NDYzMhc+ATMyFhUUAwMuOGFEAgYB/hIBAkVhLSYGRC8mIR94SWeSAT0SUzNEYQEBYkYtTRYQEy9EGUBOkWgKAAAAAgAo/3UDbQK6AAcANwAAACAWEAYgJhAFJjQ/ATY0LwEmIg8BBiIvASYiDwEGFB8BFhQPAQYUHwEWMj8BNjIfARYyPwE2NCcBHgFa9fX+pvYCFgsLbQsLHwwhC2wMIQttCyELHwsLbQsLbQsLHwshC20LIQxsCyEMHwsLArr2/qb19QFayAwgDGwMIQsfCwttCwttCwsfCyEMbAwgDGwMIQsfCwttCwttCwsfCyEMAAADAB4ARANhAhMAFwAjACsAAAAyHgIfARUOBCIuAi8BNT4DEzI2NTQmIyIGFRQWNjIWFAYiJjQBgX6FYlEVFQgcW12HfoViURUVCBxbXcQ6UVE6OVFRHzQmJjQlAhMvQ0MYFwgJH048MS9DQxcYCQkfTjv+vFE6OVFROTpRyyY0JSU0AAACADX/igKGArwABQALAAATIREhETcBESEVIxHgAab9r6sBYv7jrAK8/M4Chqv9EwKqrP4CAAAAABYAKP9yA3ACugAHADIDbAOKA6MDxgPXA90D4QPnA+8D9gSjBKsEtwTFBMkEzgTSBNcE3ATgAAAAIBYQBiAmEAUHBhQzFBYVFDEWFx4BNyI2IzQnJjUzNCY1IgYiNTQvATI3IjcmJyYHIgYDNjU0JyInIiYHNCM2JyYHBhcUFxYGFTI3FDMGFxUyNzIUFxYGMxY1NDUWFAcUBhUUDwEOARUiByIHIiYjJzIuATUnJicmJzI1IicmMzc0NjUiBxQmIyc0BicmJyYjJgYfATIHBhUuAScmIzQjJyYnIi4BBxcyFjcVNhYzFCcmFxYHNCMuASciJicGIw4BLwEGBw4BBxQGFSY1PAE2NRc6AjY1MgcWNSI1Ni4BNScWNzQnNR4BNzY3NRY2NxQ3NjM+ATcmNTI2MhcUMzY1IiciByImIyYzJjczNDY3Ijc2MzI+ARcyFTIeATc2FhUiBiMVMhYHMjYzFBcWNyc+ATcuASMiBxY/ARQfATIXIxYnJiM0JgYXMhcWFzIWFzI2Mz4BJzYnNDM2JjYyNxYXMhcWNRYVNjUiNTIzFjUyFTMVFAYjBwYeARcnIg4BJzI3JgcGJg8BDgE1BhUWFR4BMxYzFDM0FxYVIhYXIhcWNjUiNSY3FDc2JzYnJiInNiczMhY2Nx4BNxQWMxQzBjEyNTI1Mh4BMx4DFRYVMjc2FTIWFSIWIxQjDgEmBw4BFTI2NzI3FDMVIhcWFRYzFCIVByM/ATM1IgYjBiMGDwEGDwIGBwYVIgYjDgEVHgIVFCMwJyYzNCc0BiMmIxQWFQYjIiYHBhUiFDMUFhUyFjMWMzc2NyY2NxQ/AhYHIg8BDgEUFgczNTIGMxQWFRYHMjUyBzI2NDM0Fzc2MRYVMjcyFjMyNxYVMh8BMxcUFhUfAjYXFjMXFhcWFyIVFzI1MhYzBhY1MhUyNjMyNRYXHgEPARQjFCMUBgcOAQciBiMwBwYzFAYHBhciBiMiBhUGDwEGHQEiByIHFCMUJyYHMhUUBzAHBiMUBh0BNzQXDgEHIhUUMxQXJzQzNDM1JjY1PgE0MzQ2LwEiJjUmNTImLwEmNDY1JjYzNDcWNzYnNTQjIgcuAjU2JzYmIzQmNSImIyImIy4BJyI1NCM0JiMmIzQnJhUGFhUyFxYHBicmNS4BNS4BLwE0IyYxNCc0Jjc0JwYVFBYzMjY3BicmNxY3JjcWNSc0NzYWFTI2NxQXFgYVBhUjFAYVIgMWFTI1HgE3MhY/ASc0JiciJiMmBwY1JiM0Bw4CJxQjBisBIic0NzYjNjMdARQ+ATcyNzYWFRc0JjU0FjcWBxUyNjMGFxYHMgcyNRYUIwYjNAcGNzY1JjcmByY3Jjc2MSI3MxY3MjEWBwYXMjUzFCIHNjcUFzIHJicyFTIGJzQzFzYXFAYmIzMWFzI1MjcUBhciFQcGBxQHDgEHBjMUMxcWFAcUBhUHBgciBiMUBhUHBg8BBhUGByIVIzQmNSImIzQuATM0IzQmNSIuATc0NzYnIjUmNTYnJiMuAQ8BBi4BNSImNS4BNSY3NCc0NjU0NzQ2NTYzNjc2NzY3NicyNTYzNzYzNjMWMj8BNjM2HgEzNR4BFTMUMzI1MhU6AR4BBzIXFjMUFjMUFxYXBhYVFhcUFjMUBwYlFDcUJyI3MjMeATMeAQcGJyInMh8BFh8BIwYiJzMnMhYzBzIVIjM3MhUGNzIVJgcXIhQjBzY1FxQFNDcGAR4BXPb2/qT2AroBAQIGAQQBCgEDAQEBAgcEAQMBBAIDAwEFAQECBQIGBT8BCQQEFQYBAgcFAgIHAgICBAEBAgMKBAEBAwIDAgQEAgQEBAgMAwcEBgUCAgEFBgUCBQgCCgEBAgMDAgIGAwIDDQICAgEHAwEBAQIEAQQEAgECAQMEAQIHBgEDAgYEAwMBAwQBAgYDAgoBAQUCAgMBBwQDBwEBBAEPCwICAQUEAwQBCQIDAgYECQIBAgMBAgEDAwEDAgEBCAEDAgUCAQEEAgMDAgMJAgcBAgQCFwEGDgoEAREMAhYBBQMCAxADEgUCBwEDBgEBAwEBAQcBL4dMhmEBBAIBAwgBBQEEAwEGBAIBAQECAgkCAgYBAgICAQULAgECBgEEAQECCQYHAQEDAgEIBAECAwMKAQgBBwUCBQIIAwEGAQIDBAcLBAsDAQMJBgEBAgICAQIHAgYHBgIDAgIBAwEEAwUCBwQBAwMDCAECAQcGAQMDAQEDAwICAQEDAgUCAQELAQoMBQQLAwkCAggBBgQBAwUFBQYBAQMDBgIEAgIEAgICAgIBAQMBBQQBCQEBAgQCAgEECQEBDAIGAQIFAw4BAQQCCAEBBAIBAQMDAgYGAgECAgEBAQICAQ0DAQICBQEMBwIFAgICBgMCBQQCBAQMAQMBAQEBBAUBAwkBAwEBAgEDAgIBBAICBgECBgMCBQIGCAUFAQUIAQMFAQELAQEGAQIDAQEBBAEBAQMCBgIEAwQGAgQHAgMDAQIGAQIBAQICAQQBBQECGwQCAQUDAQIDAgcFCAMBBgMEAwQEBAMDAQIDAwUCAgEIBgIKAQ0EBAIGAwQMAwELAQcJCAIDAgYDAQcBBwYDBAYCAgUBAwEBCwcIAgEKIceMUo4vBwIDBQUBBAIKAgEBAQMBAQMCBQIDAgJFAhkBAgEBBwQHAgoBAQUCAwMDAQIJAQUClAEFBQsCCAEDBAcBBAUBAwMBAScCBgEDAwIEAQIBBQEHAgMCAgMMBAMBAQIHARYCAgMEBQQCAgEBBAEBAwYBAwOgAQPKAgMBAQMCAQUCAQEWAgcCBQFxBgoGBQEDAgICCQEJAQ4EAgEBAQQCAgECBAECAQEBAQ8HARMPAgECAQUEAQMFAQIBAQQBBAQGBgMDCwENCgoBBwoDCQQIBAQDAwQEAgECAQIDAgEDAwQCBAEEAQIEAQMDAwUJAQgNAQMICAoQBgIICQYBAgICAQUCBQYGAQUBAgoDAQH+YwMEAgEBEQQHAgMBAggEBQUGIwICAQENAQcBBwIBCAIfBAUGAgEBJgMEAgIBARABAQF9AgICuvb+pPb2AVwzAwMFAggECwIBBAIECQIBAgECBgECAgIEBwECAQMEAgX+wFprEwkCCQIBAwgEBAMHAgQBBAEHAQMDBQoEAQMEAQIBAQIIAgEEAgYCAgMFAQcEDAUMDgIKAQsECQQBAgkBCQICAQEBAQIDAgwDAQQDBAcBAQEKAQQKAQIBBwQCBgkBBQEFAQECAwYDDAMEAgcBAgIBAQESAgMEAwEBAQQJAQgKAQICAQQDBgIEBgYBBAYFAQIBAgECAQIGBAgBAwMCAgEDAQsDAgYCAwoCAgcEAQIGBQ0IBAMCAgIBAQIIBAICCQIEAgECBQQCAQM4QFsBAwEGAgcCBgIBAQICBAEBAQIBAQECAQICAQIDBAMCBAMKBwEKAQoDAQICCwICAQQCBQEBAQEBCwIHBAECAQEBAQIPCAQBAgMEBgoCAQUDAQICAgYGAgQFAgEJAwECAQ0DAQMCBgQBCQMC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') format('truetype'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIHdlYmZvbnQgZ2VuZXJhdGVkIGJ5IEZvbnQgU3F1aXJyZWwuCkRlc2lnbmVyICAgIDogRHJldyBXaWxzb24KRm91bmRyeSAgICAgOiBEcmV3IFdpbHNvbgpGb3VuZHJ5IFVSTCA6IGh0dHBwaWN0b3NkcmV3d2lsc29uY29tCjwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0id2ViZm9udEl5Zlpic2VGIiBob3Jpei1hZHYteD0iOTIwIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSIxMDAwIiBhc2NlbnQ9Ijc1MCIgZGVzY2VudD0iLTI1MCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPGdseXBoIHVuaWNvZGU9IiAiICBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MDk7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4YTA7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iISIgaG9yaXotYWR2LXg9IjkzNiIgZD0iTTg2NSAxMDNxMzcgLTYyIDExIC0xMDYuNXQtOTggLTQ0LjVoLTYyMXEtNzIgMCAtOTcuNSA0NC41dDExLjUgMTA2LjVsMzEwIDUzNHEzNiA2MiA4Ny41IDYydDg3LjUgLTYyek00NzEgNDZxMjMgMCAzOC41IDE2dDE1LjUgMzh0LTE1LjUgMzcuNXQtMzguNSAxNS41cS0yMiAwIC0zNy41IC0xNS41dC0xNS41IC0zNy41dDE1LjUgLTM4dDM3LjUgLTE2ek01MDkgMTg3bDI2IDMwOGgtMTI3bDI2IC0zMDhoNzV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjI7IiBob3Jpei1hZHYteD0iODY1IiBkPSJNNTIgMjg5cTEgNjUgNy41IDExNXQyNi41IDEwMS41dDUzLjUgODYuNXQ5MC41IDU4LjV0MTM1IDI4LjV2LTE1N3EtNjYgMCAtOTUgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNXEtMTggMCAtMzEgMTN0LTEzIDMxdjI1OHY3ek00OTMgMjg5cTAgNjUgNyAxMTV0MjcgMTAxLjV0NTMuNSA4Ni41dDkwLjUgNTguNXQxMzUgMjguNXYtMTU3IHEtNjcgMCAtOTYgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNHEtMTkgMCAtMzIgMTN0LTEzIDMxdjI1OHEwIDUgMSA3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiMiIGhvcml6LWFkdi14PSI3NDgiIGQ9Ik03MDUgNDgycTkgLTE0IC04IC0xNGgtNDh2LTU2N3EwIC03IC01IC0xMnQtMTIgLTVoLTUxM3EtNyAwIC0xMiA1dC01IDEydjU2N2gtNTJxLTcgMCAtOS41IDR0MS41IDEwbDMxIDQ2cTkgMTQgMjcgMTRoNzV2NjZxMCAyMCAxMiAzMGw0OCA0OXExMiAxMiAzMCAxMmgyMTZxMTggMCAzMCAtMTJsNTIgLTUycTEzIC0xMyAxMyAtMzB2LTYzaDcxcTE4IDAgMjcgLTE0ek0yNDggNTQ2di00aDI1NHY0djI4cTAgMjAgLTEyIDMwbC05IDEwIHEtMTIgMTIgLTMwIDEyaC0xNTVxLTE4IDAgLTMwIC0xMmwtNiAtNnEtMTIgLTEyIC0xMiAtMzB2LTMyek01NzYgNDUwcTAgMTYgLTE2IDE4aC0yNzloLTg5cS03IDAgLTEyIC01LjV0LTUgLTEyLjV2LTQ3NnEwIC03IDUgLTEydDEyIC01aDM2N3E3IDAgMTIgNXQ1IDEydjQ3NnpNMjYzIDQxOHE3IDAgMTIuNSAtNXQ1LjUgLTEydi0zNzlxMCAtNyAtNS41IC0xMnQtMTIuNSAtNWgtMjFxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTIgdDEyLjUgNWgyMXpNMzY0IDVxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTJ0MTIuNSA1aDIxcTcgMCAxMiAtNXQ1IC0xMnYtMzc5cTAgLTcgLTUgLTEydC0xMiAtNWgtMjF6TTQ4NSA1cS03IDAgLTEyIDV0LTUgMTJ2Mzc5cTAgNyA1IDEydDEyIDVoMjJxNyAwIDEyIC01dDUgLTEydi0zNzlxMCAtNyAtNSAtMTJ0LTEyIC01aC0yMnoiIC8+CjxnbHlwaCB1bmljb2RlPSIkIiBob3Jpei1hZHYteD0iODkzIiBkPSJNNTAzIDI4M2gtMTA4bC0xNiA2OGgxMjR2LTY4ek02ODQgMzUxbC0xOCAtNjhoLTEwNGwxIDY4aDEyMXpNNDAwIDExOHEyOCAwIDQ4LjUgLTIwdDIwLjUgLTQ5dC0yMC41IC00OXQtNDguNSAtMjB0LTQ4LjUgMjB0LTIwLjUgNDl0MjAuNSA0OXQ0OC41IDIwek02NTkgMTE4cTI5IDAgNDkgLTIwdDIwIC00OXQtMjAgLTQ5dC00OSAtMjB0LTQ5IDIwdC0yMCA0OXQyMCA0OXQ0OSAyMHpNODMzIDUxNnEyNSAtNyAyNSAtMzNxMCAtMyAtMiAtOSBsLTg4IC0yOTNxLTcgLTI1IC0zMiAtMjVoLTQxN3EtMTIgMCAtMjEuNSA3LjV0LTExLjUgMTguNWwtODEgMzI3aC0xNDlxLTE0IDAgLTI0IDEwdC0xMCAyNHQxMCAyNHQyNCAxMGgxNzZxMjYgMCAzMyAtMjZsMTggLTczaDUwM2w1IDE1cTYgMjQgMzIgMjRxNyAwIDEwIC0xek03MTIgMjMxbDU0IDE3OWgtNDY2bDQ1IC0xODZoMzY1eiIgLz4KPGdseXBoIHVuaWNvZGU9IiUiIGhvcml6LWFkdi14PSI5MDMiIGQ9Ik04NjcgMjc3cTAgLTc5IC0zNy41IC0xNDl0LTEwMi41IC0xMTdsMTEgLTk2di00cTAgLTE3IC0xMSAtMzBxLTEzIC0xNSAtMzQgLTE1aC0xNDhxLTIxIDAgLTM0IDE1cS0xMSAxMyAtMTEgMzB2NWwyIDE4cS02IC0xIC0xOCAtMWgtMTBsMiAtMTd2LTVxMCAtMTcgLTExIC0zMHEtMTIgLTE1IC0zNCAtMTVoLTE0OHEtMjEgMCAtMzQgMTVxLTExIDEzIC0xMSAzMHY1bDExIDkwcS04NiA2MCAtMTI0IDE1M2wtNDQgLTRoLTRxLTE4IDAgLTMwIDEyIHEtMTUgMTIgLTE1IDMzdjE1MnEwIDIxIDE1IDMzcTEyIDEyIDMwIDEyaDRsNDMgLTRxMzQgODUgMTA3IDE0MWwtMiAxMTB2MXYxcTAgMjggMjUgNDNxMTEgNyAyNiA3cTE0IDAgMjUgLTdsMTI4IC03MnEyNSAzIDUxIDNxMTYwIDAgMjcwIC05OXExMTMgLTEwMCAxMTMgLTI0NHpNNjgxIDQ3cTYxIDQxIDk1LjUgMTAxdDM0LjUgMTI5cTAgMTE4IC05NCAyMDJxLTk2IDg1IC0yMzMgODVxLTI5IDAgLTUzIC00bC05IC0xbC0xMzYgNzdsMiAtMTMwIGwtMTIgLThxLTc5IC01NyAtMTA2IC0xNDRsLTcgLTIybC03NSA3di0xMjdsNzUgOGw3IC0yMnEzMyAtOTYgMTI0IC0xNTVsMTUgLTlsLTEzIC0xMTJoMTIzbC05IDc0bDM1IC00cTEzIC0yIDM5IC0ycTI0IDAgNDcgM2wzNiA0bC05IC03NWgxMjNsLTE1IDExNnpNNTAxIDUyMWw3IC0xcTcgMCAxOCAtMnQyNiAtNXQzMiAtOXQzNSAtMTR0MzcgLTIwLjV0MzYgLTI4LjVxOCAtNyA4IC0xOXQtOCAtMjBxLTggLTkgLTIwIC05cS0xMSAwIC0xOSA4IHEtMjQgMjMgLTU5IDM4LjV0LTU1LjUgMTkuNXQtMzUuNSA1aC00cS0xMSAxIC0xOSA5LjV0LTggMTkuNXExIDEyIDkuNSAyMHQxOS41IDh6TTIzMSAzODRxMTkgMjAgNDEgMjZ0MzQgLTVxMTEgLTExIDYuNSAtMzN0LTIzLjUgLTQydC00MC41IC0yNnQtMzMuNSA1dC03IDMzdDIzIDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDI2OyIgaG9yaXotYWR2LXg9IjczMiIgZD0iTTQ2NSA0MDVoMjUwdi0xOThoLTI1MHYtMjUwaC0xOTh2MjUwaC0yNTB2MTk4aDI1MHYyNTBoMTk4di0yNTB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJyIgaG9yaXotYWR2LXg9IjkwOCIgZD0iTTI2NSAxMzlxNzggNzggMTg4LjUgNzh0MTg4LjUgLTc4cTEgMCAxIC0xbC01NSAtNTVxLTEgMCAtMSAxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1ek0xNDAgMjY0cTg1IDg1IDE5OS41IDExNS41dDIyOC41IDB0MTk5IC0xMTUuNWwxIC0xbC01NiAtNTZxMCAxIC0xIDFxLTEwNiAxMDYgLTI1Ny41IDEwNi41dC0yNTcuNSAtMTA1LjV6TTg5MyAzOTJxMCAtMiAyIC0ybC01NiAtNTZsLTIgMnEtMTA0IDEwNCAtMjQ0IDE0MXQtMjc5LjUgMCB0LTI0My41IC0xNDFxLTEgMCAtMSAtMWwtNTYgNTZsMSAxcTEyMCAxMTkgMjgwIDE2MS41dDMxOS41IDB0Mjc5LjUgLTE2MS41ek0zOTIgMTNxMjYgMjUgNjMgMjV0NjMgLTI1bC02MyAtNjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKCIgaG9yaXotYWR2LXg9IjY3MSIgZD0iTTU1MCAzNTloNzd2LTQzN2gtNTgydjQzN2g3NXYxMjhxMCA4NyA2MiAxNDl0MTQ5IDYyaDRoNHE4OCAwIDE0OS41IC02MnQ2MS41IC0xNDl2LTEyOHpNNDAyIDJsLTMyIDE0MXEzMiAyMCAzMiA1N3EwIDI4IC0xOSA0N3QtNDcgMTlxLTI3IDAgLTQ2LjUgLTE5dC0xOS41IC00N3EwIC0zOCAzMyAtNTZsLTMzIC0xNDJoMTMyek00NDUgMzU5djEyOHEwIDQzIC0zMSA3NHQtNzUgMzFoLTNoLTVxLTQzIDAgLTc0IC0zMXQtMzEgLTc0di0xMjggaDIxOXoiIC8+CjxnbHlwaCB1bmljb2RlPSIpIiBob3Jpei1hZHYteD0iODg5IiBkPSJNNjQ1IDY5OHE4OCAwIDE1MCAtNjEuNXQ2MiAtMTQ5LjV2LTEyOGgtMTA2djI5bDM2IDM0djEzaC0zNnY1MnEwIDQ0IC0zMSA3NC41dC03NSAzMC41aC0yaC01cS00NCAwIC03NSAtMzAuNXQtMzEgLTc0LjV2LTEyOGg3N3YtNDM4aC01ODR2NDM4aDQwMXYxMjhxMCA4OCA2MiAxNDkuNXQxNTAgNjEuNWgzaDR6TTM4MiAwbC0zMyAxNDJxMzMgMjAgMzMgNTdxMCAyOCAtMTkuNSA0Ny41dC00Ni41IDE5LjVxLTI4IDAgLTQ3LjUgLTE5LjUgdC0xOS41IC00Ny41cTAgLTM3IDMzIC01N2wtMzMgLTE0MmgxMzN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKiIgaG9yaXotYWR2LXg9Ijc3NyIgZD0iTTczNyA0OTBsLTE5NSAtMTk1bDE5NSAtMTk2bC0xNTQgLTE1M2wtMTk1IDE5NWwtMTk1IC0xOTVsLTE1NCAxNTNsMTk1IDE5NmwtMTk1IDE5NWwxNTQgMTU0bDE5NSAtMTk1bDE5NSAxOTV6IiAvPgo8Z2x5cGggdW5pY29kZT0iKyIgZD0iTTQ2MCA3MDJxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTcwOSAyNjJ2NDFxMCAxNSAtMTAuNSAyNS41dC0yNS41IDEwLjVoLTEyMXEtMTUgMCAtMjUuNSAxMXQtMTAuNSAyNnYxMjFxMCAxNSAtMTEgMjUuNXQtMjYgMTAuNWgtNDFxLTE1IDAgLTI1LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTEyMXEwIC0xNSAtMTEgLTI2dC0yNiAtMTFoLTEyMCBxLTE2IDAgLTI2LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTQxcTAgLTE1IDEwLjUgLTI2dDI2LjUgLTExaDEyMHExNSAwIDI2IC0xMC41dDExIC0yNS41di0xMjFxMCAtMTUgMTAuNSAtMjUuNXQyNS41IC0xMC41aDQxcTE1IDAgMjYgMTAuNXQxMSAyNS41djEyMXEwIDE1IDEwLjUgMjUuNXQyNS41IDEwLjVoMTIxcTE1IDAgMjUuNSAxMXQxMC41IDI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiwiIGhvcml6LWFkdi14PSI5MTUiIGQ9Ik00NTggNzAxcTE3MyAwIDI5NSAtMTIyLjV0MTIyIC0yOTUuNXEwIC0xMDQgLTQ2IC0xOTFxLTU5IC0xMTUgLTE3MiAtMTc2cS05NCAtNTEgLTE5OSAtNTFxLTEwMSAwIC0xOTQgNDhxLTExNCA2MCAtMTc1IDE3M3EtNDkgOTMgLTQ5IDE5N3EwIDE3MyAxMjIuNSAyOTUuNXQyOTUuNSAxMjIuNXpNNzYwIDIwM3ExMSA0MSAxMSA4MHEwIDEzMCAtOTIgMjIydC0yMjEgOTJxLTEzMCAwIC0yMjIgLTkydC05MiAtMjIycTAgLTM5IDEyIC04NSBxMyAtOSA5IC0yNXEyMSA2IDQ1IDZxNjUgMCAxMTEuNSAtNDZ0NDYuNSAtMTExcTAgLTE3IC01IC0zN3E0IC0yIDEyIC00cTQyIC0xMSA4MyAtMTFxNDUgMCA4NyAxMnEyIDAgNS41IDJ0NS41IDJxLTUgMjIgLTUgNDBxMCA2NCA0Ni41IDExMC41dDExMC41IDQ2LjVxMjMgMCA0NCAtNnE1IDE1IDggMjZ6TTQ5OCAzMzNxMjUgLTE5IDI1IC01MHEwIC0xNCAtNSAtMjRxLTE2IC0zOSAtNTggLTM5cS0xMSAwIC0yNCA1cS0zOSAxNiAtMzkgNTggcTAgMSAwLjUgNHQwLjUgNWwtNTYgMjQ1bDIxIDl6TTQ3OCA1NjV2LTk1aC0zOXY5NWgzOXpNNjMyIDQ5MGwyNyAtMjdsLTY4IC02OGwtMjcgMjh6TTYyOSAzMDB2MzhoOTZ2LTM4aC05NnpNMTkyIDMwMHYzOGg5NXYtMzhoLTk1ek0yNDQgNDYzbDI4IDI3bDY3IC02N2wtMjcgLTI4eiIgLz4KPGdseXBoIHVuaWNvZGU9Ii0iIGhvcml6LWFkdi14PSI5MjEiIGQ9Ik00NjEgNjk4cTE3NCAwIDI5NyAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk3IC0xMjMuNXEtMTc1IDAgLTI5OCAxMjMuNXQtMTIzIDI5Ny41dDEyMyAyOTcuNXQyOTggMTIzLjV6TTY5NCAyNTh2MzlxMCAxOSAtMTQgMzN0LTMzIDE0aC0zNzZxLTE5IDAgLTMzIC0xNHQtMTQgLTMzdi0zOXEwIC0yMCAxNCAtMzMuNXQzMyAtMTMuNWgzNzZxMTkgMCAzMyAxMy41dDE0IDMzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iLiIgaG9yaXotYWR2LXg9Ijk0NSIgZD0iTTE0NyAzOTJxMzcgMCA2NCAtMjd0MjcgLTY0cTAgLTM4IC0yNi41IC02NXQtNjQuNSAtMjd0LTY1IDI3dC0yNyA2NXQyNyA2NC41dDY1IDI2LjV6TTQ3MiAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY0LjUgMjd0LTI2LjUgNjVxMCAzNyAyNi41IDY0dDY0LjUgMjd6TTc5OCAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY1IDI3dC0yNyA2NXEwIDM3IDI3IDY0dDY1IDI3eiAiIC8+CjxnbHlwaCB1bmljb2RlPSIvIiBob3Jpei1hZHYteD0iOTEyIiBkPSJNNjkzIDUzN2gxODF2LTEyN3YtMzAxaC0xODF2LTUzbC0xMzYgLTEzNmgtMzM2djE4OWgtMTgxdjMwMXYxMjdoMTgxdjE2M2g0NzJ2LTE2M3pNODE2IDQ4MGgtMTA1di01M2gxMDV2NTN6TTI3NSA2NDZ2LTEwOWgzNjR2MTA5aC0zNjR6TTUwMiAtMjZ2MTM2aDEzN3YxMzF2NTVoNTR2LTEyOWg2N3YxOTdoLTYwNHYtMTk3aDY1djExMXYxOGg1NHYtNTV2LTI2N2gyMjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iMCIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTY0MyAxNjFsMzkgLTQwbDI4IC0yN3EtNDcgLTYwIC0xMTYuNSAtOTQuNXQtMTQ4LjUgLTM0LjVxLTE0MCAwIC0yMzguNSA5OHQtOTkuNSAyMzhoLTExaC0yaC02N2wxMjYgMTI2bDEyNyAtMTI2aC01MWgtMjhxMCAtMTAwIDcxLjUgLTE3MXQxNzIuNSAtNzFxNjAgMCAxMTIuNSAyNy41dDg1LjUgNzQuNXpNODEwIDMwMWg1MmwtMTI3IC0xMjZsLTEyNiAxMjZoNTBoMzB2MnEwIDEwMSAtNzEuNSAxNzIuNXQtMTcyLjUgNzEuNSBxLTYxIDAgLTExMy41IC0yOC41dC04Ni41IC03Ni41bC0zOSAzOWwtMjggMjhxNDcgNjEgMTE2LjUgOTZ0MTUwLjUgMzVxMTM5IDAgMjM4IC05OXQ5OSAtMjM4di0yaDI4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjEiIGhvcml6LWFkdi14PSI3NDMiIGQ9Ik02ODggMjM1aDI5di0zMHEwIC0xNDMgLTEwMC41IC0yNDMuNXQtMjQzLjUgLTEwMC41dC0yNDQgMTAxdC0xMDEgMjQzcTAgMTQzIDEwMSAyNDR0MjQ0IDEwMXExNiAwIDI1IC0xdjc5djcxbDQ5IC01MGwxNTcgLTE1N2wyMSAtMjFsLTIxIC0yMGwtMTU3IC0xNTdsLTQ5IC01MHY3MHY4OHEtMTggMiAtMjUgMnEtODMgMCAtMTQxIC01OHQtNTggLTE0MXEwIC04MiA1OC41IC0xNDB0MTQwLjUgLTU4dDE0MCA1OHQ1OCAxNDB2MzBoMzBoODd6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjIiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NTkgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjNxLTE3MyAwIC0yOTYgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk2IDEyM3pNNzI4IDM5MnE2IDYgNiAxNXQtNiAxNmwtNTUgNTRxLTYgNiAtMTUgNnQtMTYgLTZsLTI0MyAtMjQ0cS0xNSAtMTYgLTMxIDBsLTg4IDg4cS0xNiAxNiAtMzEgMGwtNTUgLTU0cS02IC03IC02IC0xNnQ2IC0xNWwxMzkgLTE0MHExNSAtMTUgMzcgLTE1aDI2cTIwIDAgMzcgMTV6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjMiIGhvcml6LWFkdi14PSI4NjgiIGQ9Ik0yMiAyMzlxLTEwIDEwIC0xMCAyNHQxMCAyNGw4MyA4M3ExMCAxMCAyMy41IDEwdDIzLjUgLTEwbDEzNiAtMTM1cTEwIC0xMCAyMy41IC0xMHQyMy41IDEwbDM3MSAzNzJxMTAgMTAgMjMuNSAxMHQyMy41IC0xMGw4MyAtODJxMTAgLTEwIDEwIC0yMy41dC0xMCAtMjMuNWwtNDUwIC00NTFxLTI0IC0yNCAtNTcgLTI0aC0zOXEtMzIgMCAtNTYgMjR6IiAvPgo8Z2x5cGggdW5pY29kZT0iNCIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTU5IDcwMGw3MDIgLTM1MWwtNzAyIC0zNTB2NzAxeiIgLz4KPGdseXBoIHVuaWNvZGU9IjUiIGhvcml6LWFkdi14PSI4MTYiIGQ9Ik01OSAxdjY5OGgyNjJ2LTY5OGgtMjYyek00OTUgNjk5aDI2MnYtNjk4aC0yNjJ2Njk4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjYiIGhvcml6LWFkdi14PSI4MTciIGQ9Ik03NTggMmgtNjk5djY5OGg2OTl2LTY5OHoiIC8+CjxnbHlwaCB1bmljb2RlPSI3IiBob3Jpei1hZHYteD0iOTIyIiBkPSJNNDIzIDQxN3YxODJsNDg1IC0yNDNsLTQ4NSAtMjQydjE4MWwtMzY0IC0xODF2NDg1eiIgLz4KPGdseXBoIHVuaWNvZGU9IjgiIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik01MDAgMjk1di0xODJsLTQ4NiAyNDNsNDg2IDI0MnYtMTgybDM2MyAxODJ2LTQ4NXoiIC8+CjxnbHlwaCB1bmljb2RlPSI5IiBkPSJNNDYwIDcwMHExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzdC0yOTcgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk3IDEyM3pNMjk4IDY0bDQzMSAyMTZsLTQzMSAyMTZ2LTQzMnoiIC8+CjxnbHlwaCB1bmljb2RlPSI6IiBob3Jpei1hZHYteD0iODAxIiBkPSJNNjcxIDEwMGwxMDUgLTEwMnEwIC0xNiAtMTIgLTI4LjV0LTI5IC0xMi41aC0yNDJxMSAtNCAxIC0xMnEwIC0zOSAtMjcuNSAtNjYuNXQtNjYuNSAtMjcuNXQtNjYuNSAyNy41dC0yNy41IDY2LjVxMCAyIDAuNSA2dDAuNSA2aC0yNDFxLTE2IDAgLTI4LjUgMTIuNXQtMTIuNSAyOC41bDEwNSAxMDJxLTEgOCAtMSAyNXYyMDhxMCA4OCA1MC41IDE1OHQxMzAuNSA5OHEtNCAxMSAtNCAyNnEwIDM5IDI3LjUgNjYuNXQ2Ni41IDI3LjUgdDY2LjUgLTI3LjV0MjcuNSAtNjYuNXEwIC0xNCAtMyAtMjZxODAgLTI4IDEzMC41IC05OC41dDUwLjUgLTE1Ny41di0yMDhxMCAtMTcgLTEgLTI1ek0zNDggNjE1cTAgLTUgMiAtMTVxMjggNSA1MCA1cTIzIDAgNTAgLTVxMyA4IDMgMTVxMCAyMiAtMTUuNSAzN3QtMzcuNSAxNXQtMzcgLTE1dC0xNSAtMzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iOyIgaG9yaXotYWR2LXg9Ijg4NyIgZD0iTTI5OSA0MThsLTQyIC00NHEtNCAtNSAtMTEgLTEyLjVsLTEyLjUgLTEzLjVsLTEwLjUgLTExcS0xOCAxNiAtMjcgMjNxLTQ5IDQwIC04MSA0MGgtMTAxdjExMmgxMDFxNTkgLTEgMTE4IC00MXEzMyAtMjEgNjYgLTUzek0zOTkgMTU2bDQ0IDQ3bDMyIDM0cTE2IC0xNCAyNiAtMjJxNTIgLTQyIDg0IC00MGg4NnY5NGwxNzUgLTE0OGwtMTc1IC0xNDZ2ODhoLTg2cS01NiAwIC0xMjAgNDBxLTI3IDE3IC02NiA1M3pNNTgyIDQwMCBxLTIzIDAgLTU2IC0yMnEtMzUgLTIzIC03OCAtNjhxLTE5IC0xOSAtNTQuNSAtNTcuNWwtNjYuNSAtNjkuNXQtNjAgLTU1cS04MCAtNjQgLTE1NCAtNjVoLTk5djExMmg5OXEyNiAwIDU5IDIycTI5IDE4IDc5IDY4cTUgNSA3MyA3Ny41dDEwNyAxMDQuNXE4MSA2NCAxNTIgNjVoODh2OTJsMTc1IC0xNDdsLTE3NSAtMTQ3djkwaC04OGgtMXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gzYzsiIGhvcml6LWFkdi14PSIzOTUiIGQ9Ik0xMTUgNDEwbDIyMiAyMjN2LTY2OGwtMjIyIDIyMmgtMTEydjIyM2gxMTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iPSIgaG9yaXotYWR2LXg9Ijk0NyIgZD0iTTg5NiAzNzl2LTE3NmwtNjMgLTI1di0xMDhoLTc3M3Y0NDJoNzczdi0xMDl6TTc2MCAxNDR2Mjk0aC02MjZ2LTI5NGg2MjZ6TTM3MyAzOTBsMjIyIC0xOThoLTQxM3YxOThoMTkxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDNlOyIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTEyNiA0MDhsMjIyIDIyM3YtNjY4bC0yMjIgMjIyaC0xMTJ2MjIzaDExMnpNNDM0IDQzOHE3NSAtNTAgNzUgLTE0MHQtNzUgLTEzOWwtMzQgNjdxMzUgMjggMzUgNzJ0LTM1IDcydjJ6TTY4MCAyOThxMCAtOTIgLTQ2IC0xNjguNXQtMTIzIC0xMjAuNWwtMzQgNjZxNTkgMzQgOTQgOTMuNXQzNSAxMjkuNXQtMzUgMTI5LjV0LTk0IDkzLjV2MmwzMyA2NXE3NyAtNDQgMTIzLjUgLTEyMS41dDQ2LjUgLTE2OC41ek01ODcgNzM4IHExMTggLTY2IDE4OC41IC0xODN0NzAuNSAtMjU3dC03MC41IC0yNTd0LTE4OC41IC0xODJsLTMzIDY2cTk5IDU2IDE1OC41IDE1NS41dDU5LjUgMjE3LjV0LTU5LjUgMjE3LjV0LTE1OS41IDE1NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Ij8iIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik00NjEgNzAycTE3NSAwIDI5OCAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk4IC0xMjMuNXEtMTc0IDAgLTI5Ny41IDEyMy41dC0xMjMuNSAyOTcuNXQxMjMuNSAyOTcuNXQyOTcuNSAxMjMuNXpNNDg5IDI5cTE5IDE4IDE5IDQ3dC0xOSA0N3EtMjAgMTcgLTQ5IDE3cS0yOCAwIC00OCAtMTdxLTIwIC0yMCAtMTggLTQ3cS0yIC0yNyAxOCAtNDdxMTkgLTE3IDQ4IC0xN3EzMiAwIDQ5IDE3ek02MDIgMzUxcTEwIDI0IDEwIDYyIHEwIDU4IC00MSA5M3EtMzggMzQgLTEwOCAzNHEtNDkgMCAtODUgLTEycS0zMyAtMTEgLTYzIC0zMWwtOSAtNmw0NiAtODdsMTAgOHEyIDEgMTkgMTFxNyA0IDIzIDEwcTEwIDQgMjMgNnE3IDIgMjEgMnEzMCAwIDM4IC0xMHExMSAtMTEgMTEgLTMxcTAgLTEzIC03IC0yNXEtMTIgLTE2IC0yMSAtMjRxLTQgLTQgLTguNSAtOGwtMTAgLTl0LTkuNSAtOHEtMTcgLTE2IC0zMCAtMzRxLTEyIC0yMCAtMjAgLTQ2cS01IC0yMiAtNSAtNDEgcTAgLTQgMC41IC0xMnQwLjUgLTEybDEgLTExaDExaDg4djEycTAgMjYgOCA0MnE5IDE2IDIxIDMwcTE0IDE0IDI5IDI1dDMyIDMwcTE0IDE3IDI1IDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IkAiIGhvcml6LWFkdi14PSI1MDgiIGQ9Ik0yNTggNzAzcTkyIDAgMTU3LjUgLTY2dDY1LjUgLTE1N3EwIC0xMDcgLTIwMyAtNTQ2bC0yNCAtNTBsLTYzIDEzNXQtMTAxIDI0NC41dC02MyAyMTYuNXEwIDkyIDY1LjUgMTU3LjV0MTU3LjUgNjUuNWg0aDR6TTI1NCAzOTdxNDIgMCA3MiAzMHQzMCA3M3EwIDQyIC0zMCA3MnQtNzIgMzBxLTQzIDAgLTczIC0zMHQtMzAgLTcycTAgLTQzIDMwIC03M3Q3MyAtMzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iQSIgaG9yaXotYWR2LXg9Ijg5MyIgZD0iTTMxNSAyOTlsNzAgLTcwcS0zOCAtMzIgLTg4LjUgLTMwdC04Ni41IDM4bC0xNDQgMTQ0cS0zOCAzNyAtMzggOTF0MzggOTFsOTkgOTlxMzggMzggOTEuNSAzOHQ5MS41IC0zOGwxNDQgLTE0NHEzNiAtMzYgMzcuNSAtODYuNXQtMzAuNSAtODguNWwtNzAgNjlxMTAgMjAgLTYgMzhsLTE0NCAxNDRxLTkgOSAtMjIuNSA5dC0yMi41IC05bC05OSAtOTlxLTEwIC0xMCAtMTAgLTIzdDEwIC0yM2wxNDQgLTE0NHExNiAtMTYgMzYgLTZ6TTcyOCAtOTkgcS0zOCAtMzcgLTkxIC0zN3QtOTEgMzdsLTE0NSAxNDVxLTM1IDM1IC0zNyA4NS41dDMwIDg4LjVsNjkgLTcwcS05IC0yMCA3IC0zNmwxNDQgLTE0NHE5IC0xMCAyMi41IC0xMHQyMi41IDEwbDk5IDk5cTEwIDkgMTAgMjIuNXQtMTAgMjIuNWwtMTQ0IDE0NXEtMTYgMTYgLTM3IDVsLTY5IDcwcTM4IDMyIDg4LjUgMzAuNXQ4Ni41IC0zNy41bDE0NCAtMTQ0cTM3IC0zOCAzNyAtOTEuNXQtMzcgLTkxLjV6TTI2MyA0NjVxMTQgMTQgMzQgMTQgdDM0IC0xNGwyOTUgLTI5NXExNCAtMTQgMTQgLTM0dC0xNCAtMzR0LTM0IC0xNHQtMzQgMTRsLTI5NSAyOTRxLTE0IDE0IC0xNCAzNC41dDE0IDM0LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQiIgaG9yaXotYWR2LXg9Ijg4MSIgZD0iTTczNCAzMTFxLTE0IC0yNyAtNDIgLTUwcS0xMiAtMzAgLTMxLjUgLTU4dC01NC41IC02MHQtOTIuNSAtNTEuNXQtMTI5LjUgLTE5LjVxLTc3IDAgLTE0My41IDIxdC0xMDUuNSA1MXQtNjcgNjB0LTM5IDUxbC0xMSAyMXE1IC0zIDE0LjUgLTYuNXQzOC41IC0xMS41dDU4IC0xMnQ3MCAtMC41dDc4IDE3LjVxLTY0IDI3IC05NiA5MXEtMjEgNDMgLTggNTRxNyA3IDI1IC0xMHE1MyAtNTAgMjEyIC00MXE3IDggMjEgMjZ2NXEwIDY3IDQ3IDExNCB0MTE0IDQ3cTY0IDAgMTEwIC00My41dDUxIC0xMDYuNWwxMDIgLTQ5ek02MjYgNDY5cS0xOSAwIC0zMiAtMTMuNXQtMTMgLTMyLjV0MTMgLTMydDMyIC0xM3QzMi41IDEzdDEzLjUgMzJ0LTEzIDMyLjV0LTMzIDEzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQyIgaG9yaXotYWR2LXg9IjkxMyIgZD0iTTc3MSAzMTdxNDYgLTE4IDc0IC01OS41dDI4IC05Mi41cTAgLTY4IC00OC41IC0xMTYuNXQtMTE2LjUgLTQ4LjVxLTIgMCAtNSAwLjV0LTQgMC41aC00OTRoLTFoLTJxLTY5IDEgLTExNy41IDUwdC00OC41IDExOXEwIDQ1IDIyLjUgODMuNXQ2MC41IDYwLjVxLTYgMTYgLTYgMzVxMCA0NyAzNCA4MXQ4MSAzNHEzOCAwIDcxIC0yNXEzMSA2NCA5MSAxMDN0MTMzIDM5cTEwMyAwIDE3NiAtNzIuNXQ3MyAtMTc2LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkQiIGhvcml6LWFkdi14PSI5MTciIGQ9Ik00NTkgNjk4cTE3MyAwIDI5NS41IC0xMjN0MTIyLjUgLTI5NnQtMTIyLjUgLTI5NS41dC0yOTUuNSAtMTIyLjV0LTI5NiAxMjIuNXQtMTIzIDI5NS41dDEyMyAyOTZ0Mjk2IDEyM3pNNTc0IDI1MnEtMTEgMTIgLTExIDI4dDExIDI4bDEwOSAxMDhxMTEgMTIgMTEgMjguNXQtMTEgMjcuNWwtMzEgMzFxLTEyIDExIC0yOC41IDExdC0yNy41IC0xMWwtMTA4IC0xMDlxLTEyIC0xMSAtMjguNSAtMTF0LTI3LjUgMTFsLTEwOSAxMDkgcS0xMSAxMSAtMjcuNSAxMXQtMjcuNSAtMTFsLTMxIC0zMXEtMTEgLTExIC0xMSAtMjcuNXQxMSAtMjguNWwxMDkgLTEwOHExMSAtMTIgMTEgLTI4dC0xMSAtMjhsLTEwOSAtMTA4cS0xMSAtMTIgLTExIC0yOC41dDExIC0yNy41bDMxIC0zMXExMSAtMTEgMjcuNSAtMTF0MjcuNSAxMWwxMDkgMTA5cTExIDExIDI3LjUgMTF0MjguNSAtMTFsMTA4IC0xMDlxMTEgLTExIDI3LjUgLTExdDI4LjUgMTFsMzEgMzFxMTEgMTEgMTEgMjcuNXQtMTEgMjguNXogIiAvPgo8Z2x5cGggdW5pY29kZT0iRSIgaG9yaXotYWR2LXg9Ijg5NSIgZD0iTTQ0OCA1MzFxNjMgMCAxMjkuNSAtMjMuNXQxMTUuNSAtNTd0ODkuNSAtNjd0NjEuNSAtNTcuNWwyMSAtMjN2LThsLTIyIC0yNC41dC01OS41IC01NC41dC05MiAtNjl0LTExNCAtNTQuNXQtMTMwLjUgLTI0LjV0LTEyOS41IDIzLjV0LTExNS41IDU3dC04OS41IDY3dC02MS41IDU2LjVsLTIxIDI0djlsMjIgMjQuNXQ1OS41IDU0LjV0OTIgNjguNXQxMTQgNTR0MTMwLjUgMjQuNXpNNDQ2IDE1OHE1OCAwIDk4LjUgNDAuNXQ0MC41IDk4LjUgcTAgNTcgLTQwLjUgOTcuNXQtOTguNSA0MC41cS01NyAwIC05Ny41IC00MC41dC00MC41IC05Ny41cTAgLTU4IDQwLjUgLTk4LjV0OTcuNSAtNDAuNXpNNDQ2IDM2MXEyNiAwIDQ1IC0xOXQxOSAtNDV0LTE5IC00NC41dC00NSAtMTguNXQtNDQuNSAxOC41dC0xOC41IDQ0LjV0MTguNSA0NXQ0NC41IDE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IkYiIGhvcml6LWFkdi14PSI3MDQiIGQ9Ik0yMjQgNzAwaDQyMnYtODE4aC01OTN2NjQ2bDE3MSAxNzF2MXpNNTc4IC01MHY2ODJoLTI4NXYtMTcyaC0xNzJ2LTUxMGg0NTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iRyIgZD0iTTQ2MCA2OThxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTczOCA0MDFsLTEgLTNxLTEgLTMgLTEgLTUuNXQyIC0yLjVxMCAtMiAzIC02dDMgLTh2LTExcTEgLTIgNSAtM3ExIC00IDYgLTV0NiAzcS0zIDAgLTIuNSA0LjV0LTAuNSA0LjVxMCAyIC0xIDNxLTIgMiAtMiAzaDdxMCAyIC0yIDV0LTIgNHEtMSAwIC0yLjUgLTF0LTIgLTF0LTAuNSAyIHQtNCA2bC0yIDdxMyAwIDYgMXEtMSAwIDQgMnEtMSAxIC0yIDRxLTIgNCAtNyAycS0yIDAgLTUgLTIuNXQtNSAtMi41ek03MzUgODFxNjMgOTAgNjMgMTk3cTAgMTkgLTEgMjhxLTkgMCAtMTMgMnEtNCAwIC0xNC41IDQuNXQtMTYuNSAyLjVxMCAxIC0xIDFxMiAzIC01IDExcS01IDQgLTcgMHEtMiAtMyA1IC0xMHEwIC0yIDIgLTZxMiAtMSAxIC0zdC0xIC0zcTQgMCA1IDdxMCAtMSAxIC0xcS0yIC0zIDEgLTZ2LTVxMTAgMCAxNCAxMCBxMSAwIDEgLTJ0MSAtM3EzIC0zIDIgLTV0MiAtMnEyIC0xIDIgMXYycTQgLTIgNCAtNnQtNCAtNnEwIC0xIC0xIC0zdC0xIC00cTAgLTYgLTQgLThsLTQgLTJxLTQgLTMgLTggLTUuNXQtNCAtMy41cS0xMiAwIC0xNSAtN3EtNyAwIC0xMSAtNHEtNiAwIC04LjUgNnQtNC41IDZsLTIgNXExIDAgLTEuNSA2bC01LjUgMTN0LTMgOWwtNSAxMHEtMiAxIC03IDEycS04IDQgLTEwIDEzcTEwIDAgMTAgNHEtMSAwIC0yIDFxLTIgMiAxIDJsMyA5IHEwIDEgMSA1LjV0MSA2LjVxLTIgMCAtOCAtMnEwIC0xIC0xLjUgLTAuNXQtMy41IDAuNWwtMyAxcTAgMSAtNi41IDB0LTguNSAycS0yIDIgLTQgMTRxLTEgMyAtOCAzcS0zIDEgLTMuNSAtMXQwLjUgLTVsMSAtNHEyIDAgLTIgLTdxLTEgLTEgLTEgLTJxLTQgMSAtNiA2dC00IDZxLTEgNCAtMyA0cTAgMTAgLTEgMTBsLTMgMXEtNCAyIC01IDNxLTIgMCAtNS41IDMuNXQtNi41IDUuNXQtNCAwbDMgLTZxMiAwIDUgLTQuNXQ3IC0zLjV2LTUgcTMgMSA0LjUgLTEuNXQyLjUgLTIuNXEwIC0xIC0zIDBxLTQgMiAtMyAtMXEyIC02IC00IC05cTAgMTIgLTMgMTJxLTIgMyAtNyA1dC02IDRxLTEgMCAtMy41IDMuNXQtNC41IDQuNXEtMiAtMiAtNSAtMnEtMSAtMiAtNC41IC0yLjV0LTcuNSAwLjVsLTMgMXEtNyAtMTggLTggLTIwcS0xIC0zIC0zIC01dC0zIC01cTAgLTEgLTcuNSAtMS41dC03LjUgLTEuNXEtMTEgNCAtMTEgMTN2NXQxIDl0MSA2bDIgLTJoMy41aDQuNXQzLjUgMXQxLjUgMiBxNCAwIDMgLTRxOSAtMyA5IDNxLTIgMCAtMiAycTMgNCAyIDd0LTQgNnQtMyA0bC00IDRxOSAtNiAxMSAtMXEwIDEgLTEgM3YxcTIgLTIgMy41IC0yLjV0Mi41IDEuNXEyIDEgMyAzdjZxMyAtNCA0LjUgMHQyLjUgNXEwIC0zIDMgMHEyIDIgMyAycTEgMiA1IDIuNXQ1IDMuNXEtMyAxIC0zIDEycTIgMCA0LjUgMS41dDMuNSAxLjV0MiAtMnEwIC02IDEgLTZxNCAyIDQgNXEtMiAwIC01IDEwcS0zIDAgLTUgLTJxLTMgMCAtNy41IDF0LTYuNSAxIHEtNyA3IC02IDdxLTIgNCAyIDVoMnEwIDIgMTEuNSA1dDEyLjUgOHEtNiAwIDggMTNxMTAgOCAxNCA4cTEgMCA5LjUgMmwxNC41IDMuNXQ4IC0wLjVxMjIgMCAyMiAtMnExIDAgMy41IC0xdDQgLTEuNXQzLjUgMC41cTMgMiAxMSAtMnQ4IC04cS0zIDAgLTEyIC0xdC0xNCAtMXYtMnEyIDAgNS41IC00LjV0Mi41IC02LjVxMyAwIDYgMnQ0IDJxMCAtMiAxIC0zcTMgLTIgNCAzbC0xIDRxMSAyIDQuNSAyLjV0NC41IDMuNXEtNDcgNTYgLTExNC41IDg4IHQtMTQzLjUgMzJxLTEzNCAwIC0yMzEgLTkxcTEgLTEgNSAybDIgMXEwIC02IDEgLThsMyAtN3E4IDAgOSAtMmgtNXExIC02IC0zIC00cS0zIDEgLTQgMXEwIDEgLTMgMnQtNSAwdDAgLTVxMSAwIDIgLTF0MyAtMnEyIDAgNi41IC0xdDYuNSAtMnEyIDAgNSAwLjV0NCAwLjVxMiAxIDMgMnQtMSAycTEgMiAtNCA0cTAgMSAxMSAxcTIgMiAxLjUgMy41dDAuNSAzLjV0NCAydDQgM3E0IC0yIDUgLTZxMSAwIDMgLTNxOSAtMTAgOSAtM3E2IC0xIDYgLTExIHE3IDEgNyAxMXEtMSAwIC0xIDNoNHEyIC0xIDIgMXExIDAgMSAtMmg4di0xMXEwIC0yIC0yIC0zdC0zIC0xbC0yIC0xcS0zIC00IC0xLjUgLTV0Ni41IC0zLjV0NiAtMy41bC04IDFxLTEgMCAtNC41IC0wLjV0LTYgLTF0LTQuNSAwLjVxNSAwIDcgMTFxLTggMiAtMTEgLTVxLTEgLTQgLTQgLTMuNXQtNCAtMS41bC0yIC0xcS0zIC0xIC01IC0xLjV0LTIgMC41cS03IC0yIC03IC0xN3ExMSAtOCAxMSAtMTJxNCAtMSA5LjUgLTJ0OC41IC0xIHExIC0zIDQgLTNxMCAtNCA5IC00cTAgNiA2IC00cTEgLTIgMSAtM3EtMSAwIDAgLTIuNXQzIC01LjVxLTIgMCAtMSAtMXEyIC0yIDUuNSAtMXQzLjUgM3EtMiAwIC0yIDZxLTYgNiAxIDhxMCAtNCA2IDFxMiAyIC0xIDNxMiA5IDAgMTJxLTEgMSAtMi41IDF0LTIuNSAycTQgMSAxIDE0aDVxMiAwIDUuNSAtMS41dDUuNSAtMXQzIDMuNXEzIC0yIDQuNSAtNXQ0LjUgMXEwIC0xIDQgLTUuNXQ1IC00LjVxMCAtMyAyIC0zbC0xIC0ycTcgMCA3IDEgcTYgMCA2IDhxMSAwIDIuNSAtM2wzIC02dDIuNSAtM2wyLjUgLTIuNWwzIC0zdDIuNSAtM3QxIC0yLjVxMiAtMiAyIC01cTEgMCAyIDJxMyAzIDMgLTFxMiAwIDQuNSAtMi41dDIuNSAtMy41cS0yIDAgLTEuNSAtMnQtMC41IC0ycTAgLTEgLTExIC0xcS0xIC01IC02IC02dC0xMSAwLjV0LTExIC0wLjVxLTQgLTIgLTkuNSAtOC41dC01LjUgLTEwLjVxMyAwIDcuNSAzLjV0Ni41IDQuNXEyIDAgMTAgNHEwIC0xIDEgLTF2LTFxLTYgMCAtMiAtNyBxMSAtMSAxIC0ycTMgLTUgOCAtNXEwIC0xIC0yLjUgLTF0LTIuNSAtMmwtNSAtM2gtNmwxIDFsMSAxaDN2NHEtMyAwIC02IC0xLjV0LTUgLTEuNXEtNCAtNCAtNiAtNHEtMiAtMTAgLTYgLTEybC0yIC0xbC00IC0ybC0yIC0ybC0yIC0ycS0xIC0yIC0yIC01cS0zIC03IC0zIC05cS0xIDAgLTMuNSAtNS41dC02LjUgLTUuNXEtMSAtMiAtNS41IC02dC00LjUgLTEwcTEgLTEgMS41IC00dDEuNSAtNi41dDEgLTQuNXEwIC04IC00IC04bC0yIDN0LTEgMyBxMCA0IC00IDEycTAgMiAtNC41IDEuNXQtNS41IC0wLjVxLTEgMyAtMTMgM3EwIC0xIDEgLTJ0MSAtM3EtNiAtMiAtNyAtMnEtMiAwIC00LjUgMi41dC01LjUgMS41cS0xNCAtMiAtMTQgLTE2cS0xIDAgLTEgLTguNXQxIC04LjVxMCAtMiAyIC02dDIgLTVxMiAwIDYgLTR0NSAtNHExIC00IDUgLTRsMiAxbDIgNHEtMyAxIC0xLjUgMy41dDMuNSAzLjVxMCAtMiA2IDJsNiAybDIgMnExIC0zIC0xIC00cS0yIDAgLTMgLTNsLTEgLTIgcS0xIC0yIC0yIC01dC0xIC01dDEgLTQuNXQwIC00LjVoMTN2M3EzIDAgMi41IC02LjV0MS41IC02LjVxMCAtMiAxIC02dDEgLTVxNSAtMyA0IC04cTEyIDAgMTIgM3E3IDAgNSAtN3E1IDAgNiAzdDEgNS41dDIgMi41cTAgMyAyIDFsNiAzbDMgMnEyIC0xIDIgLTJxNSAwIDkgNHEyIDAgNCAtNXQ2IC01cTEyIDAgMTMgMXEzIC0yIDMgLTNxMSAwIDIgLTFsMSAtMWgxbDQgLTRxMCAtMiAyLjUgLTN0Mi41IC0ybDEgLTFsMyAtMmw5IC0zcTEgMyA0IDAgcTEgLTEgMiAtMWwyIC0ycTEgLTEgNCAtN3EyIC0yIDQgLTExcS0xIDAgLTEgLThsNCAtMXEyIDAgMiAycTIgMCA1IC0ydDQgLTJxLTIgLTIgMSAtMy41dDMgMi41cTMgMCAzIC0xMXEyIDAgNC41IDEuNXQ0LjUgMS41cTYgMCA2IDFxOCAtMiAxMyAtOHE1IC01IDUuNSAtMTR0LTQuNSAtMTRsLTggLTEwcTAgLTEyIC0xIC0xMnEwIC0xNCAtMyAtMTRxMCAtMyAtMi41IC03dC0zLjUgLTZxLTEgLTEgLTYuNSAtNC41dC02LjUgLTUuNSBxLTEgMCAtNCAtMXQtNCAtMWwtMiAtM3EtMyAtMyAtMiAtM3EwIC0xIC0wLjUgLTcuNXQtMS41IC04LjVxLTQgLTIgLTMgLTRxLTEgMCAtMS41IC0xdC0zLjUgLTFxLTIgMCAtNSAtMi41dC0zIC01LjVxLTIgLTggLTYgLTExbC0zIC0ycS00IC0yIC00IC00di04cS02IDAgLTggLTRxLTQgMCAtMTEgLTRxMCAtNCAtMiAtNHEwIC00IC0zIC0zdC00IDBxMiAwIDIgLTZxMCAtMSAtNiAtOWwtMSAtMnEtMiAtMyAtMyAtM3EwIC0xIC0wLjUgLTQgdC0wLjUgLTV2LTNsMiAycTAgMSAyIC0xcS0xIC0yIC0zIC00dC0zIC01cS01IDAgLTUgLThxMCAtMiAxIC0ycTAgLTEgMiAtNWwtMjcgOXEwIDM3IDQgMzdxMCA5IDIgOXYxNHEtMSAyIDEuNSA2LjV0Mi41IDYuNXEzIDEgMy41IDEwdDAuNSAxN3QyIDhxMCA0IDEuNSAyMC41dC0wLjUgMjAuNWwtNyA4cS01IDAgLTkgNi41dC00IDEyLjVxLTMgOSAtMyAxMHExIDAgLTIgNC41dC02IDkuNWwtNCA1cS0zIDMgLTMgNC41dDIgNXQyIDYuNSBxLTQgMiAtMiAxMC41dDUgOC41cTAgMyAzIDRxMSAtMyAzIC0ycTMgMyAwIDV2MTNxMCAxMCAtNSAxMHEtMiAwIC00IC01cS0xIDEgLTUgMS41dC03IDJ0LTMgNC41cTIgNiAtOCAxMXExIDQgLTUuNSA4LjV0LTEwLjUgNC41cTAgMSAtMiAxLjV0LTIgMS41cS0yIDAgLTUgM3QtNiAzcS00IDAgLTEwIDIuNXQtOSAyLjVxLTEgMiAtNi41IDN0LTYuNSAzcS03IDAgLTcgMTNxMCAxOCAtOSAxOHEwIDMgLTQgNi41dC02IDMuNXEtMyA3IC01IDcgcTAgNCAtNiA5cS0zIDIgLTMgMHEtMSAtMiAyLjUgLTUuNXQzLjUgLTUuNXExIDAgOCAtMTNxNiAtMTAgMyAtMTFxLTQgLTEgLTEwIDhxLTIgNCAtMiA2cS0yIDEgLTQuNSA2LjV0LTIuNSA3LjVxLTEgMSAtMi41IDR0LTIuNSA2bC0xIDJxMCAxMCAtMTEgMTBsLTcgOXEwIDEwIC04IDEzcTAgMiAtMSA5dDAgMTBxMCAyMyAtMTAgMzFxLTMzIC02OCAtMzMgLTE0NHEwIC0xNDAgOTkuNSAtMjM5dDIzOS41IC05OXE4MiAwIDE1MyAzN3QxMTggMTAwIHEtNyAtMiAtOSA5cS0zIDE3IDIgMzJxNSAtMiA2IDBxLTQgMSAtMiA2cTEwIC03IDEwIDJsLTIgMnEwIDIgMSAzdDEuNSAwLjV0MC41IC0yLjVxMyAwIDMuNSA0LjV0MS41IDUuNXEwIC0xMSAzIC0xMnEyIC0yIC0wLjUgLTQuNXQtMi41IC0zLjVxLTIgLTEgLTIgLTZoLTNxMCAtMyAtMSAtOC41dC0xIC03LjVxLTIgMCAtMiAtMTZ6TTY2NiAzODNxMiAtMSAyIC00cTI1IDAgMjUgM3ExIC0yIDIgLTN0MiAycTEgMCA0LjUgLTN0Ny41IC0ybDcgNCBsLTIgMXEwIDYgLTUgOS41dC02IDQuNXEtMSAwIC0zLjUgMXQtNC41IDFxLTMgMiAtNiAtMXEtMyAtMiAtMyAwcS0xIDIgLTMgMnEwIDggLTkgN3EtMSAtMyAtMy41IC03dC0zLjUgLTcuNXQtMSAtNy41ek01MTggNDkxcTAgLTUgLTEgLTVxLTUgLTMgLTEwIC0zaC0xMXEtMiAwIC0xMCAycTAgMSAxIDJxMyA0IC0xIDRxNyAzIDggM3YtMXYtNHEwIC0xIDIgLTAuNXQ0LjUgMXQzLjUgMS41cTMgMCA2IDFxMSAxIDEuNSAwLjV0MC41IC0zLjV6IE01NTEgNDQ0cTAgMiAtMSA0dC0xIDRxMCAzIDMgMi41dDQgMy41cTMgLTEgMCAtM3YtNHEyIDAgNCAydDMgMnEtMiAtNyAtMSAtOHE1IC01IDQgLTZxNyAwIDUgLTExcTMgMCAzIDNxMiAtMSAyIC0yLjV0LTIgLTEuNXEtMyAtNSAtMTUgLTVxMCA2IC00IDNxLTMgLTEgLTIgNHExIDIgMSAzcS0yIDEgNSAycS0xIDggLTggOHpNNTM2IDQyOHEtMiAyIDAgOHEtMyAxIDEgMmw1IDJxLTQgMCAtMiA0aDJxMSAtMiAyIC0xaDRxMSAtMSAwIC0zIHEtMyAtMTIgLTEyIC0xMnpNNTUxIDQyMnExIDAgMSAxaDNxMCAtMiAtMS41IC0ydC0yLjUgMXpNMzkyIDQwMXExIDEgNCAzcTAgLTMgLTQgLTN6TTU5OCAzODhxMiAwIC0xIC02cS0xIDIgLTIgNXEzIDAgMyAxek01OTggMzgwcTIgMCAxLjUgLTQuNXQtNS41IC0zLjVxMCA3IDIgN2wxIC0ycTEgMSAxIDN6TTYyMCAzNjVxMCAtNCAtMSAtNC41dC00LjUgMS41dC01LjUgMmg1cTEgLTEgNiAxek03MjggMjQwcTYgMCA2IDFxMTAgMCAxNiAzIHEwIC00IC0yLjUgLTkuNXQtMS41IC05LjVxLTMgMCAtMyAtNWwtMiAtMnEtMiAtMyAtNCAtNHEwIC0yIC05IC0xMXEtMSAtMiAtNS41IC02LjV0LTUuNSAtNi41cS0xNCAtMTQgLTEwIC0xNHEwIC0yNCAyIC0yNGwxIC02cTEgLTYgMSAtMTB0LTEgLTVxMCAtMyAtMiAtNy41dC0yIC02LjVsLTIgLTFsLTMgLTNxLTIgMCAtNCAtMy41dC0zIC0zLjVxMCAtNCAtMSAtMTF0LTEgLTExbC0xIC00bC0yIC02bC0xIC00cS0xNSAtOCAtMTUgLTE3IHEtNyAtMTAgLTggLTEycS0xOSAwIC0xOSAtNGgtMTVxMCAyIC0xIDZ0LTEgN3EtMSAwIC0yIDMuNXQtMiAzLjVxMCAxIC0yLjUgNi41dC00LjUgMTF0LTEgNS41cTAgOSAtMyA5cTAgNCAtMi41IDExdC0yLjUgMTBxLTEgMCAtMiA0dC0xLjUgNy41dDAuNSA0LjVxMCA0IDQgMjJxMSA5IC0zIDIzcS00IDAgLTQgNnEtNiA0IC02IDE1cTYgNiAzIDIwcS0zIDEgLTE0IDFxLTEgMyAtNy41IDR0LTE2LjUgMGwtMTAgLTFxLTEgLTIgLTQuNSAtMS41IHQtOC41IDIuNXQtNSAzcS0zIDAgLTcuNSA0LjV0LTQuNSA4LjVxLTQgMSAtOCA5LjV0LTQgMTIuNXEtNCA0IDAgOXEwIDMgLTMgMTJxMCAyIDEuNSA0dDEuNSA0cTAgMTEgNCAxOXEwIDEgMiA0dDIgNHEyIDMgMyAzcTIgMSAzIDNxMiAxIDUgNXEyIDMgMyA0cTMgMSAwIDRxNCAwIDQgMTBxMiAzIDYgM2wxIDFxNCA1IDUgNXEyIDMgNiAzcTEgLTEgMi41IC0xdDQuNSAxbDMgMXE1IDcgMTQgN3ExIDIgNSAxLjV0MTAuNSAtMS41dDcuNSAtMXYyIHEzIC0xIDcgLTEwdDQgLTEyaDhxMCAtNCAxMCAtNHExNiAwIDE2IDZxNiAwIDYgLTZoNnQ4LjUgLTAuNXQ3LjUgLTJ0MiAtMi41cTIgMCA0IC0zdDMgLTNxMCAtMyAyLjUgLTguNXQ0LjUgLTUuNXEwIC04IDUgLTExcTYgLTE0IDEyIC0xOHEtMSAtMiAxLjUgLTZ0Mi41IC01cTEgLTYgMyAtN3EwIC00IDUgLTExLjV0OCAtNy41cTAgLTEgLTEgLTJ0MiAtMnpNMzEyIDI5NnEwIC0zIDMgMHEwIC00IC00IC0ycS0yIDAgLTEgM3ExIDAgMiAtMXogTTMyOCAyOTdxNCAtMSA3LjUgLTMuNXQ1LjUgLTIuNXEzIC0zIDMuNSAtNHQtMS41IC0ycS04IC0yIC0xMiA1cS01IDAgLTEwIDVxNiAwIDcgMnpNMzYyIDI4M2wyIC0xcTIgLTIgMyAtNGwxIC0xaC0xM3EtMSAtMSAtNC41IC0xdC00LjUgMmg3bC0yIDRxMSAwIDUgLTF0NiAtMXYzek0zMzEgMjc4cTQgMCA0IC0zcS01IDAgLTQgM3pNMzM2IDI3NWwyIDNxMSAwIDEgLTJxLTEgLTEgLTMgLTF6TTM3NiAyNzhxMyAwIDMgLTFxLTQgMiAtMyAxeiBNMzczIDI3OGwyIC0xcS0xIDAgLTEgLTAuNXQtMSAtMC41djJ6TTM1NyAyNTBxMSAxIDEgMmwxIC0xcTAgLTEgLTIgLTF6TTc0MCAxMzRxMCAyIDIgM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJIIiBob3Jpei1hZHYteD0iODY1IiBkPSJNNjg2IDI3OXYtMzc4aC0xNzd2MjM1aC0xNTJ2LTIzNWgtMTgzdjM3OGgtMTUzbDQxMiA0MTFsNDExIC00MTFoLTE1OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJJIiBob3Jpei1hZHYteD0iOTMyIiBkPSJNODg0IDIzNHYtMzE0aC04MzZ2MzE0bDE1NyA0MThoNTIyek01ODIgMjM0aDE5OGwtMTA1IDMyMmwtNDE4IDFsLTEwNCAtMzIzaDE5N2w0OSAtOTZoMTMweiIgLz4KPGdseXBoIHVuaWNvZGU9IkoiIGhvcml6LWFkdi14PSI4NjIiIGQ9Ik04NDggNTM0bC0xMjIgLTEyMmw4MiAtODJsLTM3MCAtNDJsNDMgMzY5bDgxIC04MWwxMjIgMTIyek0xMzYgMTQ4bC04MiA4MmwzNjkgNDNsLTQzIC0zNzBsLTgxIDgybC0xMjIgLTEyMmwtMTYzIDE2M3pNMTgyIDM4OGwxOTcgLTY4bC0yMjEgMTh6TTM5MyA0MTd2LTg1bC0yOCA4MHpNNjgyIDE3NGwtMTk3IDY5bDIyMSAtMTl6TTQ3MSAxNDZ2ODVsMjggLTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IksiIGhvcml6LWFkdi14PSI4NjkiIGQ9Ik01MzAgMzUxbDMxOCAtMzE4di0xNjh2MGgtMTY4aC0xdjEyOWgtMTI4djEyOGgtMTI4bC02MSA2MXEtNDAgLTE0IC04MyAtMTRxLTEwOSAwIC0xODcgNzcuNXQtNzggMTg3LjV0NzggMTg3LjV0MTg3IDc3LjV0MTg3IC03Ny41dDc4IC0xODcuNXEwIC00MyAtMTQgLTgzek0yMjQgNDAycTM3IDAgNjMgMjZ0MjYgNjN0LTI2IDYzdC02MyAyNnQtNjMuNSAtMjZ0LTI2LjUgLTYzdDI2LjUgLTYzdDYzLjUgLTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkwiIGQ9Ik00NjAgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjN0LTI5NyAxMjN0LTEyMyAyOTd0MTIzIDI5N3QyOTcgMTIzek00NjAgLTM0cTEzMCAwIDIyMi41IDkydDkyLjUgMjIzdC05Mi41IDIyM3QtMjIyLjUgOTJ0LTIyMi41IC05MnQtOTIuNSAtMjIzdDkyLjUgLTIyM3QyMjIuNSAtOTJ6TTQ2NCA1MjlxMTAzIDAgMTc2LjUgLTczLjV0NzMuNSAtMTc3LjV0LTczIC0xNzcuNXQtMTc3IC03My41IHQtMTc3LjUgNzMuNXQtNzMuNSAxNzcuNXQ3My41IDE3Ny41dDE3Ny41IDczLjV6TTM5NiAzNTlxMzMgMzMgMTAyIDcwbC0zMCA0MHEtNCAxIC0xMiAxcS02MSAwIC0xMTYuNSAtNTV0LTU1LjUgLTExNnEwIC02IDEgLTlsNDIgLTMycTM4IDcwIDY5IDEwMXpNNTQwIDE1NXExNiAwIDI4IDEydDEyIDI5dC0xMS41IDI5dC0yOC41IDEydC0yOSAtMTJ0LTEyIC0yOXQxMiAtMjl0MjkgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9Ik0iIGhvcml6LWFkdi14PSI5NTIiIGQ9Ik04OTIgMzJsLTI3MyAyNjJsMjczIDIzNHEzIC04IDMgLTE1di00NjVxMCAtOCAtMyAtMTZ6TTQ3NiAyMzhsLTcyIDU4bC0zNiAzMGwtMjc1IDIzNXExMCAyIDE0IDJoNzM4cTQgMCAxNCAtMmwtMjc1IC0yMzVsLTM2IC0zMHpNODQ1IC0yaC03MzhxLTUgMCAtMTMgMmwyNzYgMjY1bDEwNiAtODdsMTA3IDg3bDI3NSAtMjY1cS04IC0yIC0xMyAtMnpNNjAgNTI4bDI3MyAtMjM0bC0yNzMgLTI2MnEtMyA4IC0zIDE2djQ2NXEwIDcgMyAxNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJOIiBob3Jpei1hZHYteD0iOTQzIiBkPSJNODU3IDY3MHExNyAwIDIzIC02dDYgLTIzdi02NTVxMCAtMTcgLTYgLTIzdC0yMyAtNmgtMTA4aC01NDZoLTcxcS0yOCAwIC01My41IDI2LjV0LTI1LjUgNTIuNXY0ODFxMCAxNyA2IDIzdDIzIDZoOTJ2OTVxMCAxNyA2IDIzdDIzIDZoNjU0ek04MzcgN3Y2MTNoLTYxNHYtNzR2LTUwdi00NDVoLTQ5djQ0NWgtNzF2LTQ2MHEwIC03IDExIC0xOHQxOCAtMTFoNzFoNTQ2aDg4ek01MTEgNTU2di0yMjNoLTIyM3YyMjNoMjIzek03NjUgNTI1di0zNyBoLTE4NXYzN2gxODV6TTc2NSA0MTF2LTM3aC0xODV2MzdoMTg1ek03NjUgMjU5di0zN2gtNDc3djM3aDQ3N3pNNzY1IDE0NHYtMzdoLTQ3N3YzN2g0Nzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjkzMCIgZD0iTTg4MiA1MTB2LTUxMWgtNzB2NTExaDcwek02OTUgNTEwaDQ3di01MTFoLTU1NnY1MTFoNTJxNjggMTMzIDEyMiAxMzNoMjA3cTMyIDAgNjYuNSAtNDAuNXQ2MS41IC05Mi41ek01MTQgNTIycTEzIDAgMjIgOXQ5IDIydC05IDIxLjV0LTIyIDguNWgtMTA0cS0xMyAwIC0yMS41IC04LjV0LTguNSAtMjEuNXQ4LjUgLTIydDIxLjUgLTloMTA0ek00OCA1MTBoNjl2LTUxMWgtNjl2NTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IlAiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik03MTkgNDk2aDE0M3YtNDk1aC02NTl2MWwtMTc3IDQ2MWw2MTUgMjM3ek02NjAgNDk2bC01MSAxMzNsLTM0NSAtMTMzaDM5NnpNOTcgNDMybDEwNiAtMjc3djMxOHpNMjU4IDU2aDU0OXYzODVoLTU0OXYtMzg1ek02OTkgMjkybDU4IC0xOTBoLTQzMmwxMDMgMTEybDY2IC00MmwxMjMgMTc3bDM4IC03MXpNMzc5IDI3NXEtMjIgMCAtMzcgMTV0LTE1IDM3dDE1IDM3dDM3IDE1dDM3IC0xNXQxNSAtMzd0LTE1IC0zN3QtMzcgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IlEiIGhvcml6LWFkdi14PSI4NDQiIGQ9Ik02ODEgNTIxcTYxIC01NCA5NS41IC0xMjkuNXQzNC41IC0xNjAuNXEwIC0xNjEgLTExNCAtMjc1LjV0LTI3NSAtMTE0LjV0LTI3NSAxMTQuNXQtMTE0IDI3NS41cTAgODUgMzUgMTYxdDk2IDEzMHEyMCAxNyA0Ni41IDE1LjV0NDMuNSAtMjEuNXExNyAtMTkgMTUuNSAtNDUuNXQtMjEuNSAtNDMuNXEtODggLTc4IC04OCAtMTk2cTAgLTEwOSA3Ni41IC0xODZ0MTg1LjUgLTc3dDE4NS41IDc3dDc3LjUgMTg2cTAgMTE3IC04OCAxOTUgcS0yMCAxOCAtMjEuNSA0NHQxNi41IDQ2cTE3IDE5IDQzLjUgMjAuNXQ0NS41IC0xNS41ek00MjMgMTY2cS0yNiAwIC00NC41IDE5dC0xOC41IDQ1djQwN3EwIDI2IDE4LjUgNDV0NDQuNSAxOXQ0NSAtMTl0MTkgLTQ1di00MDdxMCAtMjYgLTE5IC00NXQtNDUgLTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik02NjggMTA1djg3bDEwNCA3MHYtMjYyaC03MzF2NTIzaDMyN3EtMiAtMSAtNi41IC0zdC02LjUgLTNxLTg3IC0zOSAtMTQxIC05OWgtNjl2LTMxM2g1MjN6TTg3NyA0MTdsLTMxMyAtMjExdjEzN3EtOTAgMCAtMTQxIC03cS00OSAtNiAtODkuNSAtMjF0LTYzLjUgLTMzLjV0LTM5IC0zNS41dC0yMiAtMjhsLTYgLTEycTAgNTQgMjAgMTAwdDUxLjUgNzUuNXQ3MC41IDUyLjV0NzcuNSAzNXQ3MCAyMHQ1MS41IDEwbDIwIDJ2MTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSI4NTMiIGQ9Ik04MjYgMzg5cTEwIC0xMSA4IC0yNHEwIC0xMyAtMTAgLTI4cS0zIC00IC0xNiAtMTRsLTE4NCAtMTIxcS0yIC0xIC01LjUgLTd0LTIuNSAtMTB2LTRsODEgLTIzN3E0IC0xMSA0IC0yM3EwIC0xNSAtNyAtMjVxLTExIC0xNiAtMzAgLTE2aC0xcS0xNiAxIC0zNiAxNWwtMTkwIDE1NXEtMyAzIC0xMCAzdC05IC0zbC0xODEgLTE1NHEtMTggLTE0IC0zNiAtMTVxLTIxIC0yIC0zMSAxNXEtOCAxMSAtOCAyNnEwIDcgNCAyMWw3MiAyMzZ2NCBxMSA1IC0yIDExdC02IDdsLTE4NSAxMjJxLTEwIDcgLTE2IDE0cS0xMSAxMyAtMTEgMjhxMCAxNCA4IDI0cTkgOSAxNiAxMnExMiA1IDI3IDVoMjMwcTYgMCAxMSA0cTcgNSA3IDEwbDY3IDIzOXE0IDE0IDkgMjFxMTMgMTggMzMgMTlxMjAgLTEgMzMgLTE5cTMgLTQgMTAgLTIxbDY2IC0yMzlxMCAtNSA3IC0xMHE1IC00IDExIC00aDIzMHE5IDAgMjAgLTNxMTQgLTQgMjMgLTE0eiIgLz4KPGdseXBoIHVuaWNvZGU9IlQiIGhvcml6LWFkdi14PSI4OTkiIGQ9Ik04MTcgMTg1bDYzIC02NGwtMTYyIC05MWwtOTIgLTE2M2wtNjMgNjRsMTQgMTQ4bC0xNjkgMTY5bC0yMjQgLTM3MWwtNjMgNjNsMTIwIDQ3NWwtMTc2IDE3NXEtMTkgMjAgLTE5IDQ2LjV0MTkgNDUuNXQ0NiAxOXQ0NiAtMTlsMTc2IC0xNzVsNDc1IDEyMGw2MyAtNjNsLTM3MSAtMjI1bDE2OCAtMTY4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSI4OTQiIGQ9Ik03NjAgMTU0cTQ2IC0yMCA3Mi41IC00NC41dDI5LjUgLTM4LjVsMyAtMTR2LTg2aC04MzZ2ODZxMCAyIDAuNSA2dDYgMTV0MTUuNSAyMnQzMS41IDI2dDUwLjUgMjhxMTIgNSA1NCAyOXQ4NyA0M3Q5NCAyOHEtMzMgMzQgLTcyIDEzNHEtMTEgMjggLTExIDEwMHEwIDcgLTEgMzF0LTAuNSA0MS41dDMuNSAyOS41cTMxIDExMSAxNTkgMTExcTEyNyAwIDE1OCAtMTExcTQgLTEyIDQuNSAtMjkuNXQtMSAtNDF0LTEuNSAtMzEuNSBxMCAtNzIgLTEwIC0xMDBxLTM4IC05NiAtNzIgLTEzNHE1MCAtOCA5NC41IC0yN3Q4NyAtNDMuNXQ1NC41IC0yOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IlYiIGhvcml6LWFkdi14PSI5NDkiIGQ9Ik02NTkgNDE2bDIzNSAxMTF2LTQ0OWwtMjM1IDExMXYxdi0xMDNxMCAtMTkgLTEzIC0zMnQtMzIgLTEzaC01MTBxLTE5IDAgLTMyIDEzdC0xMyAzMnY0MzNxMCAxOSAxMyAzMnQzMiAxM2g1MTBxMTkgMCAzMiAtMTN0MTMgLTMydi0xMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0iVyIgaG9yaXotYWR2LXg9Ijk1NCIgZD0iTTcwNCA1NHYxODFsOTIgOTN2LTI3NHEwIC01MSAtMzYgLTg3dC04NyAtMzZoLTQ5MnEtNTEgMCAtODcgMzZ0LTM2IDg3djQ5M3EwIDUxIDM2IDg3dDg3IDM2aDQ5MnExNyAwIDI0IC0ybC04OSAtOTBoLTQyN3EtMTMgMCAtMjIgLTl0LTkgLTIydi00OTNxMCAtMTMgOSAtMjJ0MjIgLTloNDkycTEzIDAgMjIgOXQ5IDIyek00MzEgMzE0bDM1NCAzNTRsMTMyIC0xMzJsLTM1NCAtMzU0djBsLTE5NSAtNjNsNjMgMTk1djB6TTU0NyAyMDggbC04OSA4OWwtNDMgLTEzMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iOTIxIiBkPSJNODY4IDU0MnYtNDIzaC02NnEtMTMgMjkgLTQwIDQ2LjV0LTYwIDE3LjV0LTU5LjUgLTE3LjV0LTQwLjUgLTQ2LjVoLTIyMHY0MjNoNDg2ek0yNDAgMTgzcS0zMyAwIC02MCAtMTcuNXQtNDAgLTQ2LjVoLTEwN3YxODBsMTExIDEyM2gxODR2LTI4NHEtMzMgNDUgLTg4IDQ1ek0xMDEgMjg4di01OGgxNjF2MTMyaC05OXpNMjQwIDE0NnEzMCAwIDUxLjUgLTIxdDIxLjUgLTUycTAgLTMwIC0yMS41IC01MS41dC01MS41IC0yMS41IHEtMzEgMCAtNTIgMjEuNXQtMjEgNTEuNXEwIDMxIDIxIDUydDUyIDIxek03MDIgMTQ2cTMxIDAgNTIgLTIxdDIxIC01MnEwIC0zMCAtMjEgLTUxLjV0LTUyIC0yMS41cS0zMCAwIC01MS41IDIxLjV0LTIxLjUgNTEuNXEwIDMxIDIxLjUgNTJ0NTEuNSAyMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iODYxIiBkPSJNNDI1IDQ4OGwtMTQ1IC00MDlsLTEyNiAxOTNsLTgxIC03NmwtMjIgLTIwbC00NiAzOWwxNjIgMTUxbDk2IC0xNDdsMTcxIDQ4M2wxNTcgLTYwNWwxMzEgNDEzbDExNiAtMzcxbC02MSAtMTZsLTU1IDE3OGwtMTM3IC00MzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9Ijg5NyIgZD0iTTQwMiA2MDd2LTM2OWgzNzFxMCAtMTUzIC0xMDggLTI2MXQtMjYxIC0xMDh0LTI2MSAxMDh0LTEwOCAyNjFxMCAxNTIgMTA3LjUgMjYwdDI1OS41IDEwOXpNNDk2IDcwMHExNTMgMCAyNjEuNSAtMTA4LjV0MTA4LjUgLTI2MS41aC0zNzF2MzcwaDF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWyIgaG9yaXotYWR2LXg9Ijg2MSIgZD0iTTQ0NSA2NzF2LTI3OGg0MDl2LTE4NWgtNDA5di0yNzdsLTQyNyAzNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iXCIgaG9yaXotYWR2LXg9Ijg1NCIgZD0iTTcxMCA1NzloODd2LTczOWgtNzQwdjczOWg4OXY0NnEwIDM1IDIwIDU0dDU2IDE5dDU2LjUgLTE5LjV0MjAuNSAtNTMuNXYtNDZoNTJ2NDZxMCAzNCAyMC41IDUzLjV0NTYuNSAxOS41dDU2IC0xOXQyMCAtNTR2LTQ2aDUydjQ2cTAgMzQgMjAuNSA1My41dDU2LjUgMTkuNXQ1Ni41IC0xOS41dDIwLjUgLTUzLjV2LTQ2ek01OTggNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41IHQtMjcuNSA3LjVxLTM1IDAgLTM1IC0zMnpNMzkyIDYyNXYtMTIzcTAgLTE3IDguNSAtMjQuNXQyNy41IC03LjVxMzUgMCAzNSAzMnYxMjNxMCAzMiAtMzUgMzJxLTE5IDAgLTI3LjUgLTcuNXQtOC41IC0yNC41ek0xODcgNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41dC0yNy41IDcuNXEtMzUgMCAtMzUgLTMyek03MzUgLTk5djUxNGgtNjE2di01MTRoNjE2ek00MjkgOTkgcTAgLTQ1IC0zNSAtNzB0LTkwIC0yNXEtMzYgMCAtNzMgMTRsNyA1MnEzNSAtMTQgNzMgLTE0cTI0IDAgMzggMTF0MTQgMjhxMCAyMiAtMTYuNSAzMi41dC01OS41IDEyLjV2NTJxNjMgNSA2MyAzOHEwIDI4IC00MiAyOHEtMjkgMCAtNjEgLTE1bC03IDUycTM0IDE1IDg0IDE1cTQ1IDAgNzEgLTE4dDI2IC00NnEwIC01MCAtNjUgLTcydi0xcTczIC0yMCA3MyAtNzR6TTUzNyAyMjlsLTUyIC0yMGwtNyA1Mmw5MSA0NGgzMXYtMjk2aC02M3YyMjB6ICIgLz4KPGdseXBoIHVuaWNvZGU9Il0iIGhvcml6LWFkdi14PSI4NjEiIGQ9Ik00MTUgLTY5djI3N2gtNDA4djE4NWg0MDh2Mjc4bDQyOCAtMzcweiIgLz4KPGdseXBoIHVuaWNvZGU9Il4iIGhvcml6LWFkdi14PSI3NzUiIGQ9Ik03NDkgNTcycTIyIC00NiAtMyAtMTMycS0yNCAtODUgLTUgLTIzNHEtOCAtMiAtMjEgLTR0LTQ5IC04dC02NiAtOHQtNjEgLTJ0LTQ2LjUgOXQtMTAuNSAyNnExNSA0OCAtNDggNDZxLTYxIC0yIC0xODIgLTQ4cS0zNyAtMTQgLTYzIC0zdjM5OXEyMiA2IDU4IDE1dDExMiAyNXQxMjYuNSAxNC41dDUwLjUgLTI0LjVxMCAtMyAtMiAtMTQuNXQtMy41IC0yM3QtMS41IC0yM3Q1IC0xOHQxNiAtNS41cTMwIDQgNzguNSA3dDgyLjUgNHogTTE0NSA2NTh2LTgxN2gtODV2ODE3cTAgMTcgMTIuNSAyOS41dDMwLjUgMTIuNXExNyAwIDI5LjUgLTEyLjV0MTIuNSAtMjkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJfIiBob3Jpei1hZHYteD0iODIwIiBkPSJNNTkgMTk4djE5OWg3MDJ2LTE5OWgtNzAyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImAiIGhvcml6LWFkdi14PSI5MzYiIGQ9Ik0zMDYgMzc4bC0xNTIgMTUzbC05NSAtOTZ2Mjc3aDI3N2wtOTUgLTk1bDE1MiAtMTUyek03ODMgNzVsOTUgOTV2LTI3NmgtMjc3bDk1IDk1bC0xNTIgMTUxbDg3IDg3ek02MzEgMzc4bC04NyA4N2wxNTIgMTUybC05NSA5NWgyNzZ2LTI3N2wtOTQgOTV6TTMwNiAyMjdsODcgLTg3bC0xNTIgLTE1Mmw5NSAtOTVsLTI3NyAxdjI3N2w5NSAtOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iYSIgaG9yaXotYWR2LXg9IjgxMCIgZD0iTTc0NSAxNDRxMjEgMCAzNS41IC0xNC41dDE0LjUgLTM1LjV0LTE0LjUgLTM2dC0zNS41IC0xNXEtMiAwIC02IDAuNXQtNiAwLjVxLTQyIC0zNiAtNzkgLTU5cS04MyAtNTUgLTE1NyAtNzZxLTcxIC00NCAtOTAgLTQ0cS0xNCAwIC05NSA0NXEtNzYgMjIgLTE1NiA3NXEtNDAgMjcgLTc5IDU5cS0yIDAgLTUuNSAtMC41dC01LjUgLTAuNXEtMjEgMCAtMzYgMTV0LTE1IDM2dDE1IDM1LjV0MzYgMTQuNXQzNS41IC0xNC41dDE0LjUgLTM1LjV2LTggcTkgLTggMzQgLTIydDM4IC0yM3E0NyAtMzEgMTQ0IC0zM2wzMiAxNTFxNCA5OCA3IDE5MmgtMTM2bC01MiAxMnEtMTQgLTE3IC0zMyAtMTdxLTE3IDAgLTI5IDExLjV0LTEyIDI4LjV0MTIgMjguNXQyOSAxMS41cTIyIDAgMzMgLTE4aDE5MHEyIDcyIDMgOTZxLTMyIDEwIC01MiAzNi41dC0yMCA2MC41cTAgNDIgMjkuNSA3MS41dDcwLjUgMjkuNXE0MiAwIDcxLjUgLTI5LjV0MjkuNSAtNzEuNXEwIC0zMyAtMjAgLTU5LjV0LTUxIC0zNi41IHEwIC03IDEuNSAtNDAuNWwyLjUgLTU2LjVoMTg5cTExIDE4IDMzIDE4cTE3IDAgMjkgLTExLjV0MTIgLTI4LjV0LTEyIC0yOC41dC0yOSAtMTEuNXEtMjEgMCAtMzIgMTdsLTUzIC0xMmgtMTM1bDYgLTE5MmwzMyAtMTU0cTc5IC00IDEyMCAyMXE1MCAzMCA5NiA2MnEtMSAyIC0xIDZxMCAyMSAxNSAzNS41dDM2IDE0LjV6TTM1MSA2MDFxMCAtMjIgMTUuNSAtMzcuNXQzNy41IC0xNS41cTIzIDAgMzguNSAxNS41dDE1LjUgMzcuNXQtMTYgMzcuNSB0LTM4IDE1LjV0LTM3LjUgLTE1LjV0LTE1LjUgLTM3LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjkxOSIgZD0iTTQ2MSA2OTlsNDA4IC0xMTN2LTU5MWwtNDA4IC0xMTRsLTQxMCAxMTR2NTkxek00MjYgLTM4djQzOWwtMzA2IDg2di00NDF6TTQ2MCA0NjJsMzAwIDg0bC0yOTkgODJsLTMwMCAtODJ6TTgwMSA0NnY0NDBsLTMwNyAtODV2LTQ0MHoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iOTA4IiBkPSJNNzY3IDMxOHE0NiAtMTkgNzMuNSAtNjB0MjcuNSAtOTJxMCAtNjggLTQ4IC0xMTZ0LTExNiAtNDhoLTloLTE5OHYxNjJoMzBoNzZxMTIgMCAxNSA2LjV0LTQgMTYuNWwtMTQ1IDE3M3EtOCAxMCAtMTkuNSAxMHQtMTkuNSAtMTBsLTE0NSAtMTczcS04IC0xMCAtNSAtMTYuNXQxNiAtNi41aDc2aDMwdi0xNjJoLTE5OGgtMWgtMWgtMnYxcS02OCAxIC0xMTYuNSA1MHQtNDguNSAxMTdxMCA0NiAyMiA4NHQ2MCA2MXEtNSAxOCAtNSAzNCBxMCA0NyAzMy41IDgwLjV0ODEuNSAzMy41cTM5IDAgNjkgLTI0cTMxIDY0IDkxIDEwM3QxMzMgMzlxMTAzIDAgMTc1LjUgLTcyLjV0NzIuNSAtMTc1LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSI5MTgiIGQ9Ik00NTkgNjk5cTE3NCAwIDI5Ni41IC0xMjN0MTIyLjUgLTI5NnEwIC0xNzQgLTEyMi41IC0yOTYuNXQtMjk2LjUgLTEyMi41cS0xNzMgMCAtMjk2IDEyMi41dC0xMjMgMjk2LjVxMCAxNzMgMTIzIDI5NnQyOTYgMTIzek03NzQgMjgwcTAgMTMwIC05Mi41IDIyMnQtMjIyLjUgOTJxLTEwMCAwIC0xODIgLTU4bDQzOCAtNDM4cTU5IDgxIDU5IDE4MnpNMTQ1IDI4MHEwIC0xMzAgOTIgLTIyMnQyMjIgLTkycTEwMyAwIDE4MyA1OGwtNDM4IDQzOSBxLTU5IC04MyAtNTkgLTE4M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJlIiBob3Jpei1hZHYteD0iNTU2IiBkPSJNNTUwIDY5OWwtMTkzIC0zNDJoMTU4bC01MTAgLTQ3NmwyMzkgMzg2aC0xNjB6IiAvPgo8Z2x5cGggdW5pY29kZT0iZiIgaG9yaXotYWR2LXg9IjkxMiIgZD0iTTU2IDQxNXExNDkgMCAyNzUgLTczLjV0MjAwIC0xOTkuNXQ3NSAtMjc1aC0xNjBxLTIgMTYxIC0xMTUgMjc0cS0xMTQgMTE0IC0yNzUgMTE0djE2MHpNNTYgNzAwcTE2OSAwIDMyMi41IC02NnQyNjUuNSAtMTc3LjV0MTc4IC0yNjZ0NjcgLTMyMy41aC0xNjBxLTEgMTgzIC05MS41IDMzNy41dC0yNDUgMjQ0LjV0LTMzNi41IDkwdjE2MXpNMTY3IDkwcTQ2IDAgNzguNSAtMzIuNXQzMi41IC03OC41dC0zMi41IC03OC41dC03OC41IC0zMi41IHQtNzguNSAzMi41dC0zMi41IDc4LjV0MzIuNSA3OC41dDc4LjUgMzIuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJnIiBob3Jpei1hZHYteD0iODk0IiBkPSJNODY1IDM2di0zNWgtMTUxdjQ3djFxLTQgNDMgLTU1IDczcS0xMCAxNiAtMjIgNDdxLTUgMTEgLTUgNDBxMCAzNyAxIDQxcTEzIDQ0IDY0IDQ0dDY0IC00NHYtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzkgLTI5IC01NHEyMCAtNCAzOCAtMTEuNXQzNS41IC0xN3QyMS41IC0xMS41cTE5IC04IDI5LjUgLTE4dDExLjUgLTE1ek0xODAgNDl2LTF2LTQ3aC0xNTF2MzVxMCAyIDEgNnQxMS41IDE0dDI5LjUgMThxNSAyIDIxLjUgMTJ0MzQuNSAxNy41IHQzOCAxMS41cS0xNCAxNSAtMjkgNTRxLTQgMTAgLTQgNDBxMCAzNyAxIDQxcTExIDQ0IDYzIDQ0cTUxIDAgNjQgLTQ0cTEgLTQgMSAtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzYgLTI0IC00OHEtNTMgLTMyIC01MyAtNzJ6TTYyMCAxMDJxMjUgLTExIDM5LjUgLTI0LjV0MTYuNSAtMjEuNWwyIC04di00N2gtNDYydjQ3cTAgMyAxLjUgOC41dDE2IDE5LjV0NDAuNSAyNnE2IDMgMjkgMTZ0NDggMjMuNXQ1MiAxNS41cS0xOCAyMSAtMzkgNzQgcS02IDEzIC02IDU2cTAgNTMgMSA1NnExNyA2MSA4NyA2MXQ4OCAtNjFxMSAtMyAxIC01NnEwIC00MSAtNiAtNTZxLTIxIC01NCAtNDAgLTc0cTI4IC01IDUyLjUgLTE1dDQ5IC0yNHQyOS41IC0xNnoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iOTA2IiBkPSJNODQ4IDQyNXEyNSAtNjggMjUgLTE0NHQtMjUgLTE0NHEtMTAgLTI4IC00MCAtMjhxLTYgMCAtMTAgMWwtNyAycS01NSAtMTExIC0xNjkgLTE2OWwyIC03cTQgLTE2IC0zLjUgLTMwdC0yMi41IC0yMHEtNzIgLTI1IC0xNDQgLTI1cS03MyAwIC0xNDUgMjVxLTE1IDYgLTIyLjUgMjB0LTMuNSAzMGwyIDdxLTExMiA1NSAtMTcwIDE2OWwtNyAtMnEtMyAtMSAtMTAgLTFxLTI5IDAgLTM5IDI4cS0yNiA3MCAtMjYgMTQ0dDI2IDE0NCBxMTAgMjggMzkgMjhxMyAwIDExIC0ybDYgLTFxNTggMTE1IDE3MCAxNjlsLTIgN3EtNCAxNiAzLjUgMzB0MjIuNSAyMHE3MiAyNSAxNDQgMjVxNzUgMCAxNDUgLTI2cTE1IC01IDIyLjUgLTE5dDMuNSAtMzBsLTIgLTdxMTEzIC01NiAxNzAgLTE2OWw2IDFxOCAyIDExIDJxMjkgMCAzOSAtMjh6TTgwOCAxNTFxMjMgNjMgMjMgMTMwcTAgNjYgLTIyIDEzMGwtMTY2IC00MXEyMCAtNDIgMjAgLTg5dC0yMCAtODl6TTU4MyAtNzRsLTQwIDE2NSBxLTQyIC0yMCAtODkgLTIwdC05MCAyMGwtNDAgLTE2NXE2MSAtMjMgMTMwIC0yM3E2OCAwIDEyOSAyM3pNNTYxIDEyOXExMiAtNyAxNyAtMTZxMjQgMTcgNDQgNDNxLTExIDYgLTE3IDE4cS04IDE3IDAgMzZxMTYgMzIgMTYgNzFxMCAzOCAtMTYgNzFxLTggMTggMCAzNnE3IDEyIDE3IDE4cS0xOSAyNSAtNDQgNDNxLTcgLTEyIC0xNyAtMTZxLTggLTQgLTE4IC00cS0xMSAwIC0xOCA0cS0zMyAxNiAtNzIgMTZxLTM4IDAgLTcxIC0xNiBxLTcgLTQgLTE4IC00cS0xMCAwIC0xOCA0cS0xMiA3IC0xNyAxNnEtMjUgLTE4IC00NCAtNDNxMTEgLTYgMTcgLTE4cTggLTE4IDAgLTM2cS0xNyAtMzYgLTE3IC03MXEwIC0zNiAxNiAtNzFxOSAtMTkgMCAtMzZxLTQgLTExIC0xNiAtMThxMTYgLTIyIDQ0IC00NHE1IDEwIDE3IDE3cTggNCAxOCA0cTExIDAgMTggLTRxMzMgLTE2IDcyIC0xNnEzOCAwIDcxIDE2cTcgNCAxOCA0cTEwIDAgMTggLTR6TTc1IDI4MXEwIC02NCAyMyAtMTMwbDE2NSA0MSBxLTIwIDQ1IC0yMCA4OXEwIDQ1IDIxIDg5bC0xNjYgNDFxLTIzIC02NyAtMjMgLTEzMHpNNDUzIDY1OXEtNjggMCAtMTI5IC0yM2w0MCAtMTY1cTQzIDIwIDg5IDIwcTQ3IDAgOTAgLTIwbDQwIDE2NXEtNjEgMjMgLTEzMCAyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJpIiBkPSJNNDYwIDY5OXExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzcS0xNzMgMCAtMjk2LjUgMTIzdC0xMjMuNSAyOTd0MTIzLjUgMjk3dDI5Ni41IDEyM3pNNTE0IDU2OXEtMzEgLTEgLTQ5IC0yMnQtMTggLTQ1cTAgLTI1IDEzLjUgLTQwLjV0MzYuNSAtMTUuNWgxcTI5IDAgNDguNSAyMC41dDE5LjUgNDguNXEwIDIzIC0xMyAzN3EtMTUgMTcgLTM5IDE3ek01NjUgOThsMyAzbC0yIDRsLTE4IDM4bC01IC00IHEtMTQgLTE0IC0zNC41IC0yOHQtMjQuNSAtMTV2NXEwIDcgMyAyMGw0NiAxODhxNiAyNSA2IDU3cTAgMTggLTYgMzBxLTcgMTIgLTIyIDEycS0yNSAwIC03MS41IC0yOC41dC05MS41IC03MC41bC0zIC0zbDE2IC00NWw2IDRxMzUgMzEgNTUgMzlxMCAtNiAtMyAtMjFsLTQzIC0xODJxLTYgLTMwIC02IC02MHEwIC0yNSAxMCAtMzZxOSAtMTAgMjYgLTEwcTIzIDAgNzAuNSAyOXQ4OC41IDc0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI4NzciIGQ9Ik04MzUgMjMydi0xbDEgLTF2LTFxMTkgLTM1IDE5IC03OXEwIC0xOCAtNSAtNDNxLTEyIC00NiAtNDUgLTgwbC02NCAtNjNxLTUxIC01MSAtMTIzIC01MXQtMTIyIDUxbC03NyA3NmwtNDcgNDhsLTMzIDMzcS0zNyAzNyAtNDggOTFxLTIgMjAgLTIgMzFxMCAxNyAzIDM1bDMgMTJxNCAxNSAxNCAzNHYxcTEgMSAyLjUgNGwyLjUgNWwxIDJsMSAxcTEgMSAyLjUgMy41dDIuNSAzLjV2MWwyIDJxMSAxIDMgMy41dDMgMy41djFsMiAybDQgNHQ0IDUgbDI4IDI4bDQgLTVsNTcgLTU2cTAgLTEgMiAtM3QyIC0zdDEgLTMuNXQxIC0zLjVsLTI1IC0yNXEtMSAtMSAtMyAtMy41dC00IC00LjVxMCAtMSAtMSAtMnYtMXEtMiAtMiAtNCAtNnEtMSAwIC0xIC0xdC0xIC0ydC0xLjUgLTMuNXQtMC41IC0zLjVsLTEgLTF2LTJxLTQgLTkgLTQgLTIycTAgLTE1IDcgLTMycTQgLTggMTQgLTIwbDU3IC01N2w0MCAtMzlsNjAgLTYxcTIxIC0yMSA1MiAtMjFxMzIgMCA1MiAyMWw2NCA2NHExMiAxMiAxOCAyOSBxMyAxMSAzIDIzcTAgMTAgLTMgMjFxLTUgMTkgLTE4IDMxbC05OCA5OHExIDYgMSAxN3EwIDIxIC0zIDQwcS0xMiA2OCAtNTkgMTE2cTM5IC0xMiA3MSAtNDJsMiAtMmwxNTcgLTE1N3ExOCAtMTggMjkgLTM5cTAgLTEgMSAtMXpNNTM4IDQ0MXEzOSAtMzkgNDggLTkxcTMgLTE1IDMgLTMxcTAgLTExIC00IC0zNWwtMyAtMTJxLTMgLTEyIC0xMyAtMzRsLTEgLTFxLTEgLTEgLTIuNSAtNGwtMi41IC01bC0xIC0ybC0xIC0xcS0yIC00IC01IC03IGwtMSAtMXEtMSAtMSAtMSAtMnEtMyAtMyAtNSAtN2wtMSAtMWwtMiAtMnEtMiAtMyAtOCAtOWwtMjggLTI4bC00IDVsLTU3IDU2cS0xIDEgLTIgM3QtMiAzdC0xIDMuNXQtMSAzLjVsMjUgMjVxMSAxIDMgMy41dDQgNC41cTAgMSAwLjUgMXQwLjUgMXYxcTIgMiA0IDZsMSAxcTEgMSAxIDJxMiA0IDMgN3YxcTAgMSAxIDJxMyAxMSAzIDIycTAgMTUgLTcgMzJxLTQgOCAtMTQgMjBsLTU3IDU3bC0zOSAzOWwtNjEgNjFxLTIxIDIxIC01MiAyMSB0LTUyIC0yMWwtNjQgLTY0cS0xMiAtMTIgLTE4IC0yOXEtMyAtMTEgLTMgLTIzcTAgLTEwIDMgLTIxcTUgLTE5IDE4IC0zMWw5OCAtOThxLTEgLTYgLTEgLTE3cTAgLTIzIDQgLTQwcTEwIC02NSA1OCAtMTE2cS00MCAxMiAtNzEgNDJsLTIgMmwtMTU3IDE1N3EtMTggMTggLTI5IDM5cTAgMSAtMSAxdjFsLTEgMXYxcS0xOSAzOCAtMTkgNzlxMCAxOCA1IDQzcTEyIDQ2IDQ1IDgwbDY0IDYzcTUxIDUxIDEyMyA1MXQxMjIgLTUxbDc3IC03NiBsNDcgLTQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9ImsiIGhvcml6LWFkdi14PSI4OTYiIGQ9Ik02NTcgNjEwcTg5IDAgMTQ4LjUgLTUwLjV0NTkuNSAtMTU5LjVxMCAtNDkgLTI2IC0xMDF0LTUyIC03OWwtMjYgLTI4bC0zMTMgLTMxMmwtMzEzIDMxMmwtMTEgMTF0LTI1IDMwdC0zMiA0NnQtMjUgNTYuNXQtMTEgNjQuNXEwIDEwOSA1OSAxNTkuNXQxNDggNTAuNXE5MCAwIDE5MSAtMTA3bDE5IC0yMXE0IDUgMTEuNSAxMy41dDMxIDMxdDQ3IDM5dDU2LjUgMzAuNXQ2MyAxNHoiIC8+CjxnbHlwaCB1bmljb2RlPSJsIiBob3Jpei1hZHYteD0iOTQyIiBkPSJNMjc5IDcwMGg2MDV2LTEzM2gtNjA1djEzM3pNMjc5IDI4NHYxMzNoNjA1di0xMzNoLTYwNXpNMjc5IDB2MTMzaDYwNXYtMTMzaC02MDV6TTEyMiA3MDBxMjggMCA0Ny41IC0xOS41dDE5LjUgLTQ2LjVxMCAtMjggLTE5LjUgLTQ3LjV0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ny41cTAgMjcgMTkuNSA0Ni41dDQ2LjUgMTkuNXpNMTIyIDQxOHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDcuNXEwIC0yNyAtMTkuNSAtNDYuNSB0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ni41cTAgMjggMTkuNSA0Ny41dDQ2LjUgMTkuNXpNMTIyIDEzNHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDYuNXEwIC0yOCAtMTkuNSAtNDcuNXQtNDcuNSAtMTkuNXEtMjcgMCAtNDYuNSAxOS41dC0xOS41IDQ3LjVxMCAyNyAxOS41IDQ2LjV0NDYuNSAxOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Im0iIGhvcml6LWFkdi14PSI4MDgiIGQ9Ik03NzEgNjk4di04M3YtNTE0cS0xIC01MiAtNDYuNSAtODh0LTExMC41IC0zNnQtMTExIDM3dC00NiA4OXQ0NiA4OXQxMTEgMzdxMzYgMCA3MCAtMTN2MzA4bC0zNTIgLTg0di00OTVxLTEgLTUyIC00NyAtODguNXQtMTEwIC0zNi41cS02NSAwIC0xMTEgMzd0LTQ2IDkwcTAgNTIgNDYgODl0MTExIDM3cTM1IDAgNjkgLTEzdjUxM2gybDQzOCAxMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0ibiIgaG9yaXotYWR2LXg9Ijk1NiIgZD0iTTc1OSA3MDBxNTggMCA5OSAtNDF0NDEgLTk5di01NjFxMCAtNTggLTQxIC05OXQtOTkgLTQxaC01NjFxLTU4IDAgLTk5IDQxdC00MSA5OXY1NjFxMCA1OCA0MSA5OXQ5OSA0MWg1NjF6TTc5NCA0OTBoLTUxM3YtMTE3aDUxM3YxMTd6TTI1OSAyMTdoLTk2di0xMTRoOTZ2MTE0ek0xNjMgMjM4aDk2djExNGgtOTZ2LTExNHpNMjgxIDIxN3YtMTE0aDUxM3YxMTRoLTUxM3pNMjgxIDIzOGg1MTN2MTE0aC01MTN2LTExNHpNMjU5IDQ5MGgtOTYgdi0xMTdoOTZ2MTE3ek0xNjMgLTFxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDYxdjExN2gtOTZ2LTgyek03NTkgLTM2cTE0IDAgMjQuNSAxMC41dDEwLjUgMjQuNXY4MmgtNTEzdi0xMTdoNDc4eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSI5NDEiIGQ9Ik04NjcgNTQ1cTExIDAgMTggLTcuNXQ3IC0xNy41di01MjVxMCAtMTEgLTcgLTE4dC0xOCAtN2gtNzg0cS0xMSAwIC0xOCA3dC03IDE4djUyNXEwIDEwIDcgMTcuNXQxOCA3LjVoMzhsMjkgNTlxMTEgMjIgMzYgMjJoMTU4cTI1IDAgMzYgLTIybDI4IC01OWg0NTl6IiAvPgo8Z2x5cGggdW5pY29kZT0icCIgaG9yaXotYWR2LXg9Ijg1NSIgZD0iTTU0MiA1NDlsMTUzIC0xNTNsLTQ2MCAtNDYwdjB2MGwtMjI2IC03NGw3MyAyMjd2MHYwek0xODggNjVsMzc5IDM3OWwtMjUgMjZsLTM4MCAtMzgwek02OTQgNzAxbDE1NCAtMTUzbC0xMDEgLTEwMGwtMTUzIDE1M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJxIiBob3Jpei1hZHYteD0iOTEwIiBkPSJNODY1IDE2MHEwIC00MiAtMjYgLTc1dC02NiAtNDRxMTUgLTQzIDY2IC04MnExMiAtOCAtOSAtMTRxLTQ1IC0xMSAtMTE0IDIxcS01MiAyNSAtOTcgNzFoLTI5OXEtNDIgMCAtNzcgMjdxMzAgMTggNTYgNDNoMjc2cTc0IDAgMTI2LjUgNTIuNXQ1Mi41IDEyNi41djIzNXE0NyAtNSA3OSAtNDB0MzIgLTgzdi0yMzh6TTY5OCAyODZxMCAtNTIgLTM2IC04OHQtODcgLTM2aC0yOThxLTQ5IC01MCAtMTAwIC03MnQtOTAgLTIycS0zNCAwIC0zNCAxMSBxMCAzIDMgNXE1MCAzOCA2NiA4MnEtNDAgMTEgLTY2IDQ0dC0yNiA3NnYyMzdxMCA1MSAzNiA4Ny41dDg4IDM2LjVoNDIxcTUxIDAgODcgLTM2LjV0MzYgLTg3LjV2LTIzN3oiIC8+CjxnbHlwaCB1bmljb2RlPSJyIiBob3Jpei1hZHYteD0iOTAwIiBkPSJNNzI2IDI3OGwyNCAyNGw5MSA5MXYtMjYwcTAgLTEyOCAtMTI4IC0xMjhoLTUwOXYtMTA4bC0xNzEgMTcybDE3MSAxNzJ2LTExNXYtNmg0ODRxMTYgMCAyNyAxMXQxMSAyN3YxMjB6TTE3NCAzMTlsLTI0IC0yNGwtOTEgLTkxdjI2MHEwIDEyNyAxMjggMTI3aDUwOXYxMDhsMTcxIC0xNzFsLTE3MSAtMTcydjExNXY2aC00ODRxLTE2IDAgLTI3IC0xMS41dC0xMSAtMjcuNXYtMTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSI4NjQiIGQ9Ik04MTYgNHEyMyAtMjMgMjMgLTU0cTAgLTI5IC0yMCAtNDhxLTE5IC0xOSAtNDcgLTE5cS0zMiAwIC01NSAyM2wtMjE5IDIxOXEtNzQgLTQ4IC0xNjYgLTQ4cS0xMjkgMCAtMjIwLjUgOTEuNXQtOTEuNSAyMjAuNXQ5MS41IDIyMC41dDIyMC41IDkxLjV0MjIwLjUgLTkxLjV0OTEuNSAtMjIwLjVxMCAtOTAgLTQ3IC0xNjV6TTUwNiAzODlxMCA3MiAtNTEgMTIzdC0xMjMgNTF0LTEyMyAtNTF0LTUxIC0xMjN0NTEgLTEyM3QxMjMgLTUxIHQxMjMgNTF0NTEgMTIzeiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NjAgNjk5cTE3MyAwIDI5NiAtMTIzdDEyMyAtMjk2cTAgLTE3NCAtMTIzIC0yOTd0LTI5NiAtMTIzcS0xNzQgMCAtMjk3IDEyM3QtMTIzIDI5N3EwIDE3MyAxMjMgMjk2dDI5NyAxMjN6TTQ2MCAtMzVxMTMwIDAgMjIyIDkyLjV0OTIgMjIyLjV0LTkyIDIyMnQtMjIyIDkydC0yMjIuNSAtOTJ0LTkyLjUgLTIyMnQ5Mi41IC0yMjIuNXQyMjIuNSAtOTIuNXpNNjYzIDE4NnExNCAtMTAgNSAtMjRsLTI0IC0zOXEtNSAtNiAtMTEgLThoLTQgcS01IDAgLTEwIDNsLTE5MyAxMjlxLTEgMSAtMi41IDJ0LTIuNSAxcS01IDcgLTUgMTN2MjI4cTAgNyA1IDEycTcgNSAxMyA1aDQ2cTcgMCAxMiAtNXQ1IC0xMnYtMTkzeiIgLz4KPGdseXBoIHVuaWNvZGU9InUiIGhvcml6LWFkdi14PSI5NTUiIGQ9Ik02MCA2MzFoODM1di02NzNoLTgzNXY2NzN6TTgyNSAyOHY1MzRoLTY5NXYtNTM0aDY5NXpNMjI1IDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNNzMxIDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNMjI1IDE1OXExOCAwIDMwLjUgLTEzIHQxMi41IC0zMXQtMTIuNSAtMzAuNXQtMzAuNSAtMTIuNXQtMzEgMTIuNXQtMTMgMzAuNXQxMyAzMXQzMSAxM3pNNzMxIDE1OXExOCAwIDMwLjUgLTEzdDEyLjUgLTMxdC0xMi41IC0zMC41dC0zMC41IC0xMi41dC0zMSAxMi41dC0xMyAzMC41dDEzIDMxdDMxIDEzek01OTMgNDU3di0zMjVoLTIyOHYzMjVoMjI4ek01MzMgMTgxdjExOGgtMTA5di0xMThoMTA5eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSI5NDUiIGQ9Ik04NjYgNTU3cTEwIDAgMTcuNSAtN3Q3LjUgLTE3di00NzJxMCAtMTEgLTcuNSAtMTh0LTE3LjUgLTdoLTc4NnEtMTAgMCAtMTcuNSA3dC03LjUgMTh2NDcycTAgMTAgNy41IDE3dDE3LjUgN2gxNzNxMCAxIDEgMWwyMyA0OHE0IDkgMTUgMTUuNXQyMSA2LjVoMzE5cTI1IDAgMzYgLTIybDI0IC00OHYtMWgxNzR6TTQ3MiAxMjBxNzUgMCAxMjggNTIuNXQ1MyAxMjcuNXQtNTMgMTI4dC0xMjggNTNxLTc0IDAgLTEyNyAtNTN0LTUzIC0xMjggdDUzIC0xMjcuNXQxMjcgLTUyLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjkyNyIgZD0iTTg4NSAzOTdxMTYgLTEzNyAtOTQuNSAtMjQ3dC0yODIuNSAtMTI5cS02MiAtNyAtMTIwIDBxLTkyIC05NSAtMTk3IC0xMDZxLTQ3IC01IC01NiA4cS0zIDQgMyA4cTg4IDY2IDgwIDE0NXEtNjkgMzkgLTExMiA5OHQtNTEgMTMwcS0xNiAxMzYgOTQgMjQ2LjV0MjgyIDEzMC41cTE3MiAxOSAzMDQuNSAtNjR0MTQ5LjUgLTIyMHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ4IiBob3Jpei1hZHYteD0iOTQ5IiBkPSJNNTI2IDEwMHEyIDEwIDIgMTZsOTggOThsMTM5IC0xMzlsOTQgLTY5bDEwIC0zOGwtMTA0IC0xMDRsLTM3IDEwbC03MCA5NHpNNzU1IDIycS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMS41cTAgLTE4IDEyLjUgLTMwLjV0MzAuNSAtMTIuNXExOSAwIDMxLjUgMTIuNXQxMi41IDMwLjVxMCAxOSAtMTIuNSAzMS41dC0zMS41IDEyLjV6TTQ2OSAzNzFsLTk4IC05OHEtNiAwIC0xNiAtMmwtNzEgNzBxLTMyIC0xNSAtNTYgLTE1IHEtNzQgMCAtMTMzLjUgNjB0LTYwLjUgMTM0cTAgMSAxNyAxOHE2MyAtNjMgNzEgLTY4dDQ1IC01cTI5IDAgNjUuNSAzNnQzNi41IDY2cTAgMzYgLTYgNDUuNXQtNjcgNjkuNXExNSAxOCAxOCAxOHE3NCAxIDEzNCAtNTkuNXQ2MCAtMTM0LjVxMCAtMjcgLTE2IC01N3pNNzg2IDIwMnEwIDMgMC41IDcuNXQwLjUgMTguNXQtMS41IDI4dC01LjUgMzJ0LTEwLjUgMzMuNXQtMTkgMzAuNXQtMjguNSAyNGgtM3EtMTAgMCAtMzQgLTIybC0yMTggLTIxNyBxOCAtMjkgLTggLTQ3cS0yIC0xIC03IC02bC0yMDEgLTIwMXEtNSAtNSAtNiAtN3EtMTEgLTExIC0yOSAtMTFxLTQxIDAgLTc3IDQ4dC04IDc3cTMgMiA2IDZsMjAyIDIwMnE1IDMgNiA2cTExIDExIDI4IDExcTkgMCAxOSAtM2wxOTQgMTk0bDQgNnE0IDYgNS41IDh0NSA4LjV0NC41IDExdDEuNSAxMXQtMSAxMy41dC00LjUgMTRxLTE2IDI5IC02MCAzOGgtMXEtMTYgMCAtNTUgMzdsLTYgNnEtMTkgMTkgLTIwIDI1dDE4IDI3bDcyIDczIHExNyAxNyAyNiAxN3E2IDAgMjYgLTIwbDYgLTZxMzMgLTMzIDM3IC00OXE0IC0yMCAyNCAtNDZxMyAtNCAxOCAtNHQxOSAtNGwxMTkgLTExOXE3MyAtNzMgMzAgLTI1MmwtMTUgLTUweiIgLz4KPGdseXBoIHVuaWNvZGU9InkiIGhvcml6LWFkdi14PSI4OTciIGQ9Ik04NDMgMzU5cTkgLTEgMTUuNSAtOXQ2LjUgLTE3di05N3EwIC05IC02LjUgLTE3dC0xNS41IC05bC0xMjQgLTIzcS05IC0yIC0xMiAtOHQyIC0xNGw3MiAtMTA2cTEyIC0xOSAtNCAtMzVsLTY4IC02OHEtMTYgLTE2IC0zNCAtM2wtMTA2IDcxcS03IDUgLTE0LjUgMi41dC04LjUgLTExLjVsLTIzIC0xMjVxLTEgLTkgLTkgLTE1LjV0LTE3IC02LjVoLTk3cS05IDAgLTE3IDYuNXQtOSAxNS41bC0yMyAxMjVxLTEgOSAtOC41IDExLjUgdC0xNC41IC0yLjVsLTEwNSAtNzFxLTIwIC0xMiAtMzUgM2wtNjggNjhxLTE2IDE2IC00IDM1bDcyIDEwNnE1IDggMiAxNHQtMTIgOGwtMTI0IDIzcS05IDEgLTE1LjUgOXQtNi41IDE3djk3cTAgOSA2LjUgMTd0MTUuNSA5bDEyNCAyM3EyMiA2IDEwIDIzbC03MiAxMDZxLTExIDE5IDQgMzRsNjggNjhxMTYgMTYgMzUgNGwxMDUgLTcycTcgLTUgMTQuNSAtMnQ4LjUgMTJsMjMgMTI0cTEgOSA5IDE1LjV0MTcgNi41aDk3cTkgMCAxNyAtNi41IHQ5IC0xNS41bDIzIC0xMjRxMSAtOSA4LjUgLTEydDE0LjUgMmwxMDYgNzJxMTggMTIgMzQgLTRsNjggLTY4cTE1IC0xNSA0IC0zNGwtNzIgLTEwNnEtMTIgLTE3IDEwIC0yM3pNNDQ4IDEzNHE2MyAwIDEwNyA0NHQ0NCAxMDZ0LTQ0IDEwNi41dC0xMDcgNDQuNXEtNjIgMCAtMTA2IC00NC41dC00NCAtMTA2LjV0NDQgLTEwNnQxMDYgLTQ0eiIgLz4KPGdseXBoIHVuaWNvZGU9InoiIGhvcml6LWFkdi14PSI3MzYiIGQ9Ik00MzMgLTMzcTM0IDAgNTUgMjNsMTc2IDE3NmwzOSAtMzlxMTUgLTE1IDAgLTMxbC0yNTQgLTI1NHEtMTUgLTE2IC0zMSAwbC0zNTAgMzUwcS0xNSAxNSAtMTcgMzZsLTggOTdsMzM1IC0zMzVxMjMgLTIzIDU1IC0yM3pNMzUzIDY2NGwzNTAgLTM0OXExNiAtMTYgMCAtMzFsLTI1NCAtMjU1cS03IC02IC0xNiAtNnQtMTUgNmwtMzUwIDM1MHEtMTUgMTcgLTE3IDM3bC0xNyAxOTBxLTIgMjIgMTQgMzZsNDMgNDRxMTUgMTMgMzQgMTNoMyBsMTg5IC0xN3EyMiAtMiAzNiAtMTh6TTExNSA2MTdxLTE0IC0xMyAtMTQgLTMzdDE0IC0zM3ExMyAtMTMgMzMgLTEzdDMzIDEzdDEzIDMzdC0xMyAzM3EtMTQgMTQgLTMzIDE0dC0zMyAtMTR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieyIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTc1MSAyOTloLTI3OHYtNDA4aC0xODV2NDA4aC0yNzdsMzcwIDQyOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ8IiBob3Jpei1hZHYteD0iOTE1IiBkPSJNMTgyIDI4MHEtMyAtMTYgLTMgLTM1di02OXEtNTggMCAtOTguNSA0MC41dC00MC41IDk4LjV2MjQ0cTAgNTggNDAuNSA5OC41dDk4LjUgNDAuNWgzNDhxNTggMCA5OC41IC00MC41dDQwLjUgLTk4LjV2LTEwNWgtMTA0djEwNXEwIDE0IC0xMC41IDI0LjV0LTI0LjUgMTAuNWgtMzQ4cS0xNCAwIC0yNC41IC0xMC41dC0xMC41IC0yNC41di0yNDRxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDN6TTczNiAzODVxNTcgMCA5OCAtNDEgdDQxIC05OXYtMjQzcTAgLTU4IC00MSAtOTl0LTk4IC00MWgtMzQ4cS01OCAwIC05OC41IDQxdC00MC41IDk5djI0M3EwIDU4IDQwLjUgOTl0OTguNSA0MWgzNDh6TTc3MCAydjI0M3EwIDE1IC0xMCAyNXQtMjQgMTBoLTM0OHEtMTQgMCAtMjQuNSAtMTB0LTEwLjUgLTI1di0yNDNxMCAtMTUgMTAuNSAtMjV0MjQuNSAtMTBoMzQ4cTE0IDAgMjQgMTB0MTAgMjV6IiAvPgo8Z2x5cGggdW5pY29kZT0ifSIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTExIDMwMWgyNzd2NDA5aDE4NXYtNDA5aDI3OGwtMzcwIC00Mjd6IiAvPgo8Z2x5cGggdW5pY29kZT0ifiIgZD0iTTQ2MCA2OTlxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTYyOCAzNHYyMzJoLTE2NmwxNDUgMTY3aC0xMTJ2MTM1aC03NXYtMTM1aC0xMTJsMTQ0IC0xNjdoLTE2MnYtMjMyaDE0NWwtMzkgLTM5aDEyNmwtMzkgMzloMTQ1ek0zMzMgNzZ2MTQ4aDI1M3YtMTQ4aC0yNTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZmY7IiBob3Jpei1hZHYteD0iODMzIiAvPgo8Z2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+IA==') format('svg')}.x-tab .x-button-icon:before,.x-button .x-button-icon:before{font-family:"Pictos"}.x-img.x-img-image{text-align:center}.x-img.x-img-image img{width:auto;height:100%}.x-img.x-img-background{background-repeat:no-repeat;background-position:center;background-size:auto 100%}.x-map{background-color:#edeae2}.x-map *{-webkit-box-sizing:content-box;box-sizing:content-box}.x-mask-map{background:transparent !important}.x-map-container{position:absolute !important;top:0;left:0;right:0;bottom:0}.x-mask{min-width:8.5em;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;z-index:10;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0,0,0,0.3) center center no-repeat}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask.x-mask-transparent{background-color:transparent}.x-mask .x-mask-inner{position:relative;background:rgba(0,0,0,0.25);color:#fff;text-align:center;padding:.4em;font-size:.95em;font-weight:bold}.x-mask .x-loading-spinner-outer{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;min-width:8em;height:8em}.x-mask.x-indicator-hidden .x-mask-inner{padding-bottom:0 !important}.x-mask.x-indicator-hidden .x-loading-spinner-outer{display:none}.x-mask.x-indicator-hidden .x-mask-message{position:relative;bottom:.25em}.x-mask .x-mask-message{position:absolute;bottom:5px;color:#333;left:0;right:0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-mask.x-has-message .x-mask-inner{padding-bottom:2em}.x-mask.x-has-message .x-loading-spinner-outer{height:168px}.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el{visibility:collapse}.x-video{height:100%;width:100%;background-color:#000}.x-video>*{height:100%;width:100%;position:absolute}.x-video-ghost{-webkit-background-size:100% auto;background:#000 url() center center no-repeat}audio{width:100%}.x-msgbox{min-width:15em;max-width:20em;max-height:90%;margin:6px;border:1px solid #ccc}.x-msgbox .x-docking-vertical{overflow:hidden}.x-msgbox .x-toolbar.x-docked-top{border-bottom:0}.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-msgbox-text{text-align:center}.x-msgbox-buttons .x-button{min-width:4.5em}.x-progressindicator{width:50%;height:1.3em}.x-progressindicator .x-progressindicator-inner{background:#222222;padding:10px;height:100%;border-radius:20px;box-shadow:0px 5px 17px rgba(40,40,40,0.5);box-sizing:content-box;position:relative}.x-progressindicator .x-progressindicator-text{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;position:absolute;top:0px;left:0px;color:white;text-shadow:1px 1px 2px black}.x-progressindicator .x-progressindicator-bar{height:100%;width:0%;border-radius:10px}.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill{height:100%;width:100%;background-color:gray;border-radius:10px;-webkit-animation-name:progressIndicator;-moz-animation-name:progressIndicator;-ms-animation-name:progressIndicator;-o-animation-name:progressIndicator;animation-name:progressIndicator;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background-repeat:repeat-x;background-size:30px 30px;background-image:-webkit-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-moz-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-o-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-ms-linear-gradient(-45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}@-webkit-keyframes progressIndicator{to{background-position:30px}}@-moz-keyframes progressIndicator{to{background-position:30px}}@keyframes progressIndicator{to{background-position:30px}}.x-panel,.x-msgbox{position:relative}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{padding:6px;background-color:#ccc}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{z-index:1;background-color:#fff}.x-panel.x-floating>.x-dock,.x-msgbox>.x-dock,.x-form.x-floating>.x-dock{z-index:1}.x-panel.x-floating>.x-dock.x-sized,.x-msgbox>.x-dock.x-sized,.x-form.x-floating>.x-dock.x-sized{margin:6px}.x-sheet,.x-sheet-action{height:auto}.x-toolbar{position:relative;background-color:#eee;min-height:2.6em;overflow:hidden}.x-toolbar.x-docked-top{border-bottom:1px solid}.x-toolbar.x-docked-bottom{border-top:1px solid}.x-toolbar.x-docked-left{width:50px;height:auto;border-right:1px solid}.x-toolbar.x-docked-right{width:50px;height:auto;border-left:1px solid}.x-title{font-size:1.2em;text-align:center;font-weight:bold;max-width:100%}.x-title.x-title-align-left{padding-left:10px}.x-title.x-title-align-right{padding-right:10px}.x-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-navigation-bar .x-container{overflow:visible}.x-toolbar-inner .x-field .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-ie .x-toolbar-inner{height:100% !important}.x-toast{min-width:15em;max-width:20em;max-height:90%;margin:6px}.x-toast .x-toast-text{text-align:center}.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-menu{background:#eee}.x-carousel-inner{position:relative;overflow:hidden}.x-carousel-item,.x-carousel-item>*{position:absolute !important;width:100%;height:100%}.x-carousel-indicator{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-carousel-indicator span{display:block;width:10px;height:10px;margin:3px;background-color:#eee}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#ccc}.x-carousel-indicator-horizontal{width:100%}.x-carousel-indicator-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.x-android-3 .x-surface-wrap,.x-android-3 .x-surface-wrap>*{-webkit-perspective:1}.x-draw-component{position:relative}.x-draw-component .x-inner{overflow:hidden}.x-surface{position:absolute}.x-chart-watermark{opacity:0.5;z-index:9;right:0;bottom:0;background:rgba(0,0,0,0.5);color:white;padding:4px 6px;font-family:"Helvetica";font-size:12px;position:absolute;border-top-left-radius:4px;white-space:nowrap;-webkit-border-top-left-radius:4px}.x-legend .x-legend-inner .x-legend-container{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #ccc;background:#fff}.x-legend .x-legend-inner .x-legend-container .x-legend-item{padding:0.8em 1em 0.8em 1.8em;color:#333;background:rgba(255,255,255,0);max-width:20em;min-width:0;font-size:14px;line-height:14px;font-weight:bold;white-space:nowrap;position:relative}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);opacity:.3}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker{position:absolute;width:.8em;height:.8em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;-webkit-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;left:.7em;top:1em}.x-legend.x-docked-top .x-legend-item,.x-legend.x-docked-bottom .x-legend-item{border-right:1px solid rgba(204,204,204,0.5)}.x-legend.x-docked-top .x-legend-item:last-child,.x-legend.x-docked-bottom .x-legend-item:last-child{border-right:0}.x-legend.x-docked-left .x-legend-inner,.x-legend.x-docked-right .x-legend-inner{display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center}.x-chart-toolbar{position:absolute;z-index:9;display:-webkit-box;display:-moz-box;display:-ms-box;display:box;padding:.6em}.x-chart-toolbar .x-button{margin:.2em}.x-chart-toolbar[data-side=left],.x-chart-toolbar[data-side=right]{top:0;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}.x-chart-toolbar[data-side=left]{left:0}.x-chart-toolbar[data-side=right]{right:0}.x-chart-toolbar[data-side=top],.x-chart-toolbar[data-side=bottom]{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal;right:0}.x-chart-toolbar[data-side=top]{top:0}.x-chart-toolbar[data-side=bottom]{bottom:0;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}.x-tab .x-button-icon.list:before,.x-button .x-button-icon.list:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"l"}.x-tab .x-button-icon.expand:before,.x-button .x-button-icon.expand:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"`"}.x-dataview-inlineblock .x-dataview-item,.x-dataview-inlineblock .x-data-item{display:inline-block !important}.x-dataview-nowrap .x-dataview-container{white-space:nowrap !important}.x-dataview-nowrap .x-container.x-dataview{white-space:nowrap !important}.x-list{overflow:hidden}.x-list .x-scroll-scroller{max-width:100%}.x-list .x-list-inner{width:100% !important}.x-list.x-list-indexed .x-list-disclosure{margin-right:50px}.x-list .x-item-selected .x-list-disclosure{background-color:#fff}.x-list .x-list-scrolldock-hidden{display:none}.x-list .x-list-item{position:absolute !important;left:0;top:0;width:100%}.x-list .x-list-item>.x-dock{height:auto}.x-list .x-list-item .x-dock-horizontal{border-top:1px solid #ccc}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-color:#ccc}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background-color:#ddd}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:5px}.x-list .x-list-item.x-list-item-relative{position:relative !important}.x-list .x-list-header{background-color:#eee;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-weight:bold}.x-list .x-list-header.x-list-item-relative{position:relative !important}.x-list .x-list-disclosure{margin:5px 15px 5px 0;overflow:visible;width:20px;height:20px;border:1px solid #ccc;background-color:#eee}.x-list .x-list-item-tpl .x-list-disclosure{position:absolute;right:0px;top:0px}.x-list .x-list-emptytext{text-align:center;pointer-events:none;font-color:#333333;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-list.x-list-indexed .x-list-disclosure{margin-right:35px}.x-list .x-list-scrolldockitem{position:absolute !important;left:0;top:0;width:100%}.x-ie .x-list-grouped .x-translatable-container .x-list-item:before,.x-ie .x-list-grouped .x-translatable-container .x-list-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-list-header{position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-list-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,.x-list-grouped .x-list-item-tpl.x-list-header-wrap{border-top:0}.x-list-inlineblock .x-list-item{display:inline-block !important}.x-list-nowrap .x-list-inner{width:auto}.x-list-nowrap .x-list-container{white-space:nowrap !important}.x-list-item-dragging{border-bottom:1px solid #ccc;background:#fff !important;z-index:1}.x-indexbar-wrapper{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;pointer-events:none}.x-indexbar{pointer-events:auto;z-index:2;min-height:0 !important;height:auto !important;-webkit-box-flex:0 !important;-ms-flex:0 0 auto !important;flex:0 0 auto !important}.x-indexbar>div{font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-indexbar-vertical{width:15px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px}.x-indexbar-horizontal{height:15px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-phone.x-landscape .x-indexbar>div{font-size:0.38em;line-height:1em}.x-indexbar-pressed{background-color:#ccc}.x-form-label{display:none !important}.x-form-label span{font-weight:bold}.x-form-label-nowrap .x-form-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-field{display:flex;display:-webkit-box;display:-ms-flexbox}.x-field .x-field-input{position:relative;min-width:3.7em}.x-field .x-field-input,.x-field .x-input-el{width:100%}.x-field.x-field-labeled .x-form-label{display:block !important}.x-field .x-component-outer{position:relative}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-label-align-left .x-component-outer,.x-label-align-right .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-label-align-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-label-align-bottom{-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.x-input-el{display:block}.x-field-mask{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-ie .x-field.x-field-text .x-field-mask,.x-ie .x-field.x-field-textarea .x-field-mask,.x-ie .x-field.x-field-search .x-field-mask{z-index:-1}.x-field-required .x-form-label:after{content:"*";display:inline}.x-spinner .x-component-outer{display:flex;display:-webkit-box;display:-ms-flexbox}.x-spinner .x-component-outer>*{width:auto}.x-spinner .x-field-input{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-spinner .x-field-input .x-input-el{width:100%;text-align:center}.x-spinner .x-field-input input::-webkit-outer-spin-button,.x-spinner .x-field-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-spinner .x-spinner-button{text-align:center;border:1px solid #ccc !important;background-color:#eee}.x-spinner.x-field-grouped-buttons .x-input-el{text-align:left}.x-select-overlay .x-list-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.x-field-number input::-webkit-outer-spin-button,.x-field-number input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-field-input .x-clear-icon,.x-field-input .x-reveal-icon{display:none;width:10px;height:10px;background-color:#ccc;position:absolute;top:50%;right:0}.x-field-clearable .x-clear-icon{display:block}.x-field-clearable .x-field-input{padding-right:10px}.x-field-revealable .x-reveal-icon{display:block}.x-field-revealable .x-field-input{padding-right:10px}.x-field-clearable.x-field-revealable .x-reveal-icon{right:20px}.x-android .x-input-el{-webkit-text-fill-color:#000}.x-android .x-empty .x-input-el{-webkit-text-fill-color:#A9A9A9}.x-android .x-item-disabled .x-input-el{-webkit-text-fill-color:#b3b3b3}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ccc;overflow:hidden}.x-form-fieldset .x-dock .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-form-fieldset-title{font-weight:bold}.x-form-fieldset-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-form-fieldset-instructions{text-align:center}.x-ie .x-field-select .x-field-mask{z-index:3}.x-sheet.x-picker{padding:0}.x-sheet.x-picker .x-sheet-inner{background-color:#fff;overflow:hidden}.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body{border-left:1px solid #999999;border-right:1px solid #ACACAC}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body{border-left:0}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body{border-left:0;border-right:0}.x-picker-slot .x-scroll-view{z-index:2;position:relative}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none}.x-picker-slot-title{position:relative;z-index:2}.x-picker-slot-title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold}.x-picker-slot .x-dataview-inner{width:100% !important}.x-picker-slot .x-dataview-item{vertical-align:middle;height:30px;line-height:30px}.x-picker-slot .x-dataview-item.x-item-selected{font-weight:bold}.x-picker-slot .x-picker-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-ie .x-picker-item{cursor:default}.x-ie .x-picker-item::before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;clear:both}.x-list-paging.x-loading .x-loading-spinner{display:block}.x-list-paging.x-loading .x-list-paging-msg{display:none}.x-list-pullrefresh{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;top:-5em;left:0;width:100%;height:4.5em}.x-list-pullrefresh .x-loading-spinner{display:none}.x-list-pullrefresh-arrow{width:2.5em;height:4.5em;background-color:#bbb}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;text-align:center}.x-list-pullrefresh-updated{text-align:center}.x-list-pullrefresh-loading *.x-loading-spinner{display:block}.x-list-pullrefresh-loading .x-list-pullrefresh-arrow{display:none}.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner{display:none}.x-slider,.x-toggle{position:relative;height:16px;min-height:0;min-width:0}.x-slider>*,.x-toggle>*{position:absolute;width:100%;height:100%}.x-thumb{position:absolute;height:16px;width:10px;border:1px solid #ccc;background-color:#ddd}.x-slider:before{content:'';position:absolute;width:auto;height:8px;top:4px;left:0;right:0;margin:0 5px;background-color:#eee}.x-toggle{border:1px solid #ccc;width:30px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-toggle-on{background-color:#eee}.x-tab{z-index:1;overflow:visible !important;background-color:#eee;border:1px solid #ccc}.x-tabbar{border-color:#ccc;border-style:solid;border-width:0;background-color:#eee}.x-tabbar.x-docked-top{border-bottom-width:1px}.x-tabbar.x-docked-top .x-tab .x-button-icon{position:relative}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown{display:inline-block}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden{display:none}.x-tabbar.x-docked-bottom{border-top-width:1px}.x-tabbar.x-docked-bottom .x-tab .x-button-icon{display:block;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown{visibility:visible}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden{visibility:hidden}.x-tab{position:relative;min-width:3.3em}.x-table-inner{display:table !important;width:100% !important;height:100% !important}.x-table-inner.x-fixed-layout{table-layout:fixed !important}.x-table-row{display:table-row !important}.x-table-cell{display:table-cell !important;vertical-align:middle}.x-orientation-inspector{display:none;content:"landscape"}@media (orientation: portrait){.x-orientation-inspector{content:"portrait"}}.x-grid .x-grid-header-container{border-width:0 1px 1px 0;border-style:solid;height:65px;font-weight:bold;overflow:hidden}.x-grid .x-grid-header-container .x-grid-column{display:inline-block}.x-grid .x-grid-header-container .x-grid-header-container-inner{width:100000px;position:absolute;top:0;left:0}.x-grid .x-grid-column{height:64px;border-width:1px 1px 0 1px;border-style:solid;line-height:64px;vertical-align:middle;padding:0 8px}.x-grid .x-grid-column .x-innerhtml{display:inline-block;width:auto;position:relative}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{position:absolute;width:12px;line-height:64px;top:0;height:64px;font-family:'Pictos';font-size:12px}.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after,.x-grid .x-grid-column.x-column-align-center .x-innerhtml:after{right:-16px}.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after{left:-16px}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after{content:"{"}.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{content:"}"}.x-grid .x-grid-headergroup{display:inline-block;position:relative;vertical-align:bottom;height:64px;padding-top:32px}.x-grid .x-grid-headergroup .x-inner>.x-innerhtml{height:32px;line-height:28px;vertical-align:middle;display:block;position:absolute;width:100%;top:0;left:0;text-align:center;border-style:solid;border-width:1px;overflow:hidden;text-overflow:ellipsis}.x-grid .x-grid-headergroup .x-grid-column{height:32px !important;line-height:27px !important;font-size:0.7em}.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after{line-height:27px;height:27px}.x-grid .x-grid-row{position:absolute;left:0;top:0;border-width:0 0 1px 0;border-style:solid}.x-grid .x-grid-cell{display:inline-block;vertical-align:middle;line-height:60px;padding:0 8px;height:60px;overflow:hidden;border-width:0 1px 0 0}.x-grid .x-grid-cell-align-center,.x-grid .x-grid-column-align-center{text-align:center}.x-grid .x-grid-cell-align-right,.x-grid .x-grid-column-align-right{text-align:right}.x-grid .x-grid-viewoptions{border-width:0 0 0 1px;border-style:solid}.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml{padding:0px !important}.x-grid .x-grid-viewoptions .x-column-options-header{height:32px;line-height:28px;vertical-align:middle;border-style:solid;border-width:1px;overflow:hidden;padding-left:10px}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,.x-grid .x-grid-viewoptions .x-column-options-groupindicator,.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:40px;height:48px;position:absolute;bottom:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{position:absolute;top:0;left:0;height:100%;width:100%;text-align:center;font-size:24px;font-family:'Pictos';line-height:48px;content:"l";vertical-align:middle}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle{left:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after{line-height:54px}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator{right:0}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after{font-size:30px;line-height:54px;content:"E"}.x-grid .x-grid-viewoptions .x-column-options-groupindicator{right:40px}.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after{font-size:30px;line-height:54px;content:"g"}.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:30px;left:40px}.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{line-height:52px;content:"o"}.x-grid .x-grid-viewoptions .x-column-options-leaf:after{content:"F"}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl{background:transparent}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml{background:transparent}.x-grid .x-grid-viewoptions .x-column-options-text{display:block;height:30px;margin:10px 50px 5px 80px;position:relative;vertical-align:middle;line-height:28px}.x-grid .x-grid-columnoptions{border-width:0 0 1px}.x-grid .x-grid-multiselection-column{position:relative;padding:0}.x-grid .x-grid-multiselection-column:after{position:absolute;top:0;left:0;width:60px;height:64px;line-height:64px;font-family:'Pictos';font-size:26px;text-align:center;content:"2"}.x-grid .x-grid-multiselection-cell{position:relative;padding:0}.x-grid .x-grid-multiselection-cell:after{position:absolute;top:0;left:0;width:60px;height:60px;line-height:60px;font-family:'Pictos';font-size:20px;text-align:center;content:"_"}.x-grid .x-item-selected .x-grid-multiselection-cell:after{content:"3"}.x-grid .x-grid-pagingtoolbar>.x-body{padding:0 30px 0 50px}.x-grid .x-grid-pagingtoolbar-currentpage{position:relative;height:22px}.x-grid .x-grid-pagingtoolbar-currentpage span{position:absolute;right:0;top:0;line-height:22px;height:22px}.x-grid .x-grid-summaryrow{height:32px;font-size:0.8em;position:relative}.x-grid .x-grid-summaryrow .x-grid-cell{height:32px;line-height:30px;border-width:0 0 1px;border-style:solid}.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after{content:''}.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before,.x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-grid-header{line-height:44px;font-weight:bold;position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-grid-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap{border-top:0}.x-scroll-view{position:relative;display:block;overflow:hidden}.x-scroll-container{position:absolute;width:100%;height:100%}.x-scroll-scroller{position:absolute;min-width:100%;min-height:100%;height:auto !important;width:auto !important}.x-scroll-stretcher{position:absolute;visibility:hidden}.x-scroll-bar-grid-wrapper{position:absolute;width:100%;height:100%}.x-scroll-bar-grid{display:table;width:100%;height:100%}.x-scroll-bar-grid>*{display:table-row}.x-scroll-bar-grid>*>*{display:table-cell}.x-scroll-bar-grid>:first-child>:first-child{width:100%;height:100%}.x-scroll-bar-grid>:first-child>:nth-child(2){padding:3px 3px 0 0}.x-scroll-bar-grid>:nth-child(2)>:first-child{padding:0 0 3px 3px}.x-scroll-bar{position:relative;overflow:hidden}.x-scroll-bar-stretcher{position:absolute;visibility:hidden;width:100%;height:100%}.x-scroll-bar-x{width:100%}.x-scroll-bar-x>.x-scroll-bar-stretcher{width:300%}.x-scroll-bar-x.active{height:6px}.x-scroll-bar-y{height:100%}.x-scroll-bar-y>.x-scroll-bar-stretcher{height:300%}.x-scroll-bar-y.active{width:6px}.x-scroll-indicator{background:#333;position:absolute;z-index:3}.x-scroll-indicator-x{height:100%}.x-scroll-indicator-y{width:100%}.x-scroll-indicator.rounded{background:none}.x-scroll-indicator.rounded>*{position:absolute;background-color:#333}.x-scroll-indicator.rounded>:nth-child(2){-webkit-transform-origin:0% 0%;background:none;content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-light>*{background-color:#eee}.x-scroll-indicator.rounded.x-scroll-indicator-light>:nth-child(2){content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-y>*{width:100%}.x-scroll-indicator.rounded.x-scroll-indicator-y>:first-child{height:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:nth-child(2){height:1px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:last-child{height:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>*{height:100%}.x-scroll-indicator.rounded.x-scroll-indicator-x>:first-child{width:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:nth-child(2){width:1px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:last-child{width:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-list-light .x-scroll-indicator,.x-dataview-light .x-scroll-indicator{background:#fff}.x-ios .x-scroll-scroller{-webkit-transform:translate3d(0, 0, 0)}.x-ie .x-scroll-bar-y{position:absolute;margin-left:-5px}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:.5em .5em;transform-origin:.5em .5em}.x-loading-spinner>span,.x-loading-spinner>span:before,.x-loading-spinner>span:after{display:block;position:absolute;width:.1em;height:.25em;top:0;-webkit-transform-origin:.05em .5em;transform-origin:.05em .5em;content:" "}.x-loading-spinner>span{left:50%;margin-left:-0.05em}.x-loading-spinner>span.x-loading-top{background-color:rgba(170,170,170,0.99)}.x-loading-spinner>span.x-loading-top::after{background-color:rgba(170,170,170,0.9)}.x-loading-spinner>span.x-loading-left::before{background-color:rgba(170,170,170,0.8)}.x-loading-spinner>span.x-loading-left{background-color:rgba(170,170,170,0.7)}.x-loading-spinner>span.x-loading-left::after{background-color:rgba(170,170,170,0.6)}.x-loading-spinner>span.x-loading-bottom::before{background-color:rgba(170,170,170,0.5)}.x-loading-spinner>span.x-loading-bottom{background-color:rgba(170,170,170,0.4)}.x-loading-spinner>span.x-loading-bottom::after{background-color:rgba(170,170,170,0.35)}.x-loading-spinner>span.x-loading-right::before{background-color:rgba(170,170,170,0.3)}.x-loading-spinner>span.x-loading-right{background-color:rgba(170,170,170,0.25)}.x-loading-spinner>span.x-loading-right::after{background-color:rgba(170,170,170,0.2)}.x-loading-spinner>span.x-loading-top::before{background-color:rgba(170,170,170,0.15)}.x-loading-spinner>span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg)}.x-loading-spinner>span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg)}.x-loading-spinner>span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg)}.x-loading-spinner>span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg)}.x-loading-spinner>span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg)}.x-loading-spinner>span::after{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);-ms-transform:rotate(-30deg)}.x-loading-spinner{-webkit-animation-name:x-loading-spinner-rotate;-webkit-animation-duration:.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-name:x-loading-spinner-rotate;animation-duration:.5s;animation-timing-function:linear;animation-iteration-count:infinite}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-button{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;min-height:1.8em;padding:.3em .6em}.x-button,.x-toolbar .x-button{border:1px solid #999;border-top-color:#a6a6a6;background-color:#ccc;color:#000}.x-button.x-button-back:before,.x-button.x-button-forward:before,.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#999}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after,.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:none;background-color:#ccc;background-image:-webkit-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-moz-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-o-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-ms-linear-gradient(to bottom, #f2f2f2,#d9d9d9 3%,#bfbfbf)}.x-button.x-button-pressing,.x-button.x-button-pressing:after,.x-button.x-button-pressed,.x-button.x-button-pressed:after,.x-button.x-button-active,.x-button.x-button-active:after,.x-toolbar .x-button.x-button-pressing,.x-toolbar .x-button.x-button-pressing:after,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-pressed:after,.x-toolbar .x-button.x-button-active,.x-toolbar .x-button.x-button-active:after{background-image:none;background-color:#c4c4c4;background-image:-webkit-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-moz-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-o-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-ms-linear-gradient(to bottom, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6)}.x-button .x-button-icon{width:1.5em;height:1.5em}.x-button .x-button-icon:before{font-size:1.6em;line-height:1em}.x-button.x-item-disabled .x-button-label,.x-button.x-item-disabled .x-badge,.x-button.x-item-disabled .x-button-icon{opacity:.5}.x-button-round{-moz-border-radius:.9em;-webkit-border-radius:.9em;border-radius:.9em}.x-ie .x-button{height:0px}.x-ie .x-button .x-button-label,.x-ie .x-button .x-badge{overflow:visible}.x-iconalign-left .x-button-label,.x-iconalign-left .x-badge{margin-left:.6em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-badge{margin-right:.6em}.x-iconalign-top,.x-iconalign-bottom{padding-top:.2em !important;padding-bottom:.2em !important}.x-button-label,.x-badge,.x-hasbadge .x-badge{font-weight:bold;line-height:1.2em;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;font-size:1em}.x-toolbar .x-button{margin:6px .2em;padding:0 .6em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge{font-size:.7em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge,.x-toolbar .x-button .x-hasbadge .x-badge{line-height:1.6em}.x-toolbar .x-button .x-button-icon:before{font-size:1.3em;line-height:1.3em}.x-ie .x-toolbar .x-button .x-button-icon::before{font-size:.6em;line-height:1em}.x-button-small,.x-toolbar .x-button-small{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button-small .x-badge{font-size:.6em}.x-button-small .x-button-icon,.x-toolbar .x-button-small .x-button-icon{width:.75em;height:.75em}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.7em;z-index:1}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-button-back:before,.x-webkit .x-button-back:after{content:'';position:absolute;width:15px;height:auto;top:-2px;left:auto;bottom:-2px;z-index:2;-webkit-mask:4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:15px 100%;overflow:hidden}.x-webkit .x-button-back,.x-webkit .x-toolbar .x-button-back{margin-left:.77217em;padding-left:.4em}.x-webkit .x-button-back:before,.x-webkit .x-toolbar .x-button-back:before{left:-15px}.x-webkit .x-button-back:after,.x-webkit .x-toolbar .x-button-back:after{left:-14px}.x-webkit .x-button-forward,.x-webkit .x-toolbar .x-button-forward{margin-right:.78217em;padding-right:.4em}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:after{-webkit-mask:-4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:15px 100%}.x-webkit .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:before{right:-15px}.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:after{right:-14px}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;min-height:0;text-shadow:none;line-height:auto;height:1.9em;padding:0 0.5em;-moz-border-radius:none;-webkit-border-radius:none;border-radius:none}.x-button.x-button-plain>*,.x-toolbar .x-button.x-button-plain>*{overflow:visible}.x-button.x-button-plain.x-button-pressing,.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressing,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;background-image:-webkit-radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px);background-image:-moz-radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px);background-image:radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px);background-image:-ms-radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px)}.x-segmentedbutton .x-button{margin:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-segmentedbutton .x-button.x-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-segmentedbutton .x-button.x-last{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-segmentedbutton .x-button:not(.x-first){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{border-color:#900;min-width:2em;line-height:1.2em;top:-.2em;padding:.1em .3em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;color:#fcc;background-image:none;background-color:#c00;background-image:-webkit-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-moz-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-o-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-ms-linear-gradient(to bottom, #ff1a1a,#e60000 3%,#b30000);-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;-webkit-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;background-image:none;background-color:#656565}.x-panel.x-floating.x-floating-light,.x-msgbox.x-floating-light,.x-form.x-floating.x-floating-light{background-image:none;background-color:#cbcbcb}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-webkit .x-anchor{position:absolute;overflow:hidden}.x-webkit .x-anchor.x-anchor-top{margin-top:-.68em;margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-bottom{margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-left{margin-left:-.6655em;margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-webkit .x-anchor.x-anchor-right{margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-floating.x-panel-light:after{background-color:#cbcbcb}.x-sheet,.x-picker,.x-sheet-action{padding:.7em;border-top:1px solid #7f7f7f;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-sheet-inner>.x-button,.x-sheet-action-inner>.x-button{margin-bottom:.5em}.x-sheet-inner>.x-button:last-child,.x-sheet-action-inner>.x-button:last-child{margin-bottom:0}.x-msgbox{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-msgbox .x-icon{margin:0 0.8em 0 0.5em;background:#fff;-webkit-mask-size:100%}.x-msgbox .x-msgbox-info{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-warning{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-question{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-error{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC')}.x-msgbox .x-title{font-size:.9em;line-height:1.4em}.x-msgbox .x-body{background:transparent !important}.x-msgbox .x-toolbar{background:transparent none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-msgbox .x-toolbar.x-docked-top{height:1.3em}.x-msgbox .x-field{min-height:2em;background:#fff;-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em}.x-msgbox .x-form-field{min-height:1.5em;padding-right:0 !important;-webkit-appearance:none}.x-msgbox .x-field-input{padding-right:2.2em}.x-msgbox-text{padding:6px 0;line-height:1.4em}.x-msgbox-buttons{padding:0.4em 0;height:auto}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-toolbar{padding:0 .2em}.x-toolbar.x-docked-left{width:7em;padding:.2em}.x-toolbar.x-docked-right{width:7em;padding:.2em}.x-title{line-height:2.1em;font-size:1.2em;margin:0 0.3em;padding:0 .3em}.x-spinner .x-input-el,.x-field-select .x-input-el{-webkit-text-fill-color:#000;-webkit-opacity:1}.x-spinner.x-item-disabled .x-input-el,.x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:currentcolor}.x-toolbar .x-field-select .x-input-el{-webkit-text-fill-color:#fff}.x-toolbar .x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:rgba(255,255,255,0.6)}.x-toolbar .x-form-field-container{padding:0 .3em}.x-toolbar .x-slider-field .x-component-outer,.x-toolbar .x-toggle-field .x-component-outer{padding:0em .3em}.x-toolbar .x-field{width:13em;padding:.5em;min-height:0;border-bottom:0;background:transparent}.x-toolbar .x-field .x-clear-icon{background-size:50% 50%;right:-0.8em;margin-top:-1.06em}.x-toolbar .x-field-input{padding-right:1.6em !important}.x-toolbar .x-field-textarea .x-component-outer,.x-toolbar .x-field-text .x-component-outer,.x-toolbar .x-field-number .x-component-outer,.x-toolbar .x-field-search .x-component-outer{background-color:#fff;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset}.x-toolbar .x-form-label{background:transparent;border:0;padding:0;line-height:1.4em}.x-toolbar .x-form-field{height:1.6em;color:#6e6e6e;background:transparent;min-height:0;-webkit-appearance:none;padding:0em .3em;margin:0}.x-toolbar .x-form-field:focus{color:#000}.x-toolbar .x-field-select .x-component-outer,.x-toolbar .x-field-search .x-component-outer{-moz-border-radius:.8em;-webkit-border-radius:.8em;border-radius:.8em}.x-toolbar .x-field-search .x-field-input{background-position:.5em 50%}.x-toolbar .x-field-select{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-form-field{height:1.4em}.x-toolbar .x-field-select{background:transparent}.x-toolbar .x-field-select .x-component-outer:after{right:.4em}.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after{opacity:.6}.x-toolbar .x-field-select .x-component-outer:before{width:3em;border-left:none;-moz-border-radius-topright:.8em;-webkit-border-top-right-radius:.8em;border-top-right-radius:.8em;-moz-border-radius-bottomright:.8em;-webkit-border-bottom-right-radius:.8em;border-bottom-right-radius:.8em;-webkit-mask:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');-webkit-mask-position:right top;-webkit-mask-repeat:repeat-y;-webkit-mask-size:3em 0.05em}.x-toolbar .x-field-select .x-input-text{color:#fff}.x-android .x-field-search .x-field-input{padding-left:.2em !important;padding-right:2.2em !important}.x-toast{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-toast .x-toast-text{padding:6px 0;line-height:1.4em}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-menu{padding:.7em;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9))}.x-menu .x-button{margin-bottom:.7em}.x-menu .x-button:last-child{margin-bottom:0}.x-form .x-scroll-container{background-color:#eee}.x-form .x-toolbar .x-scroll-container{background-color:transparent}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;padding:.6em;background-color:#f7f7f7;color:#080808}.x-form-label span{font-size:.8em}.x-form-fieldset{margin:.5em .5em 1.5em}.x-form-fieldset .x-form-label{border-top:1px solid #fff}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ddd;background:#fff;padding:0;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-form-fieldset .x-field{border-bottom:1px solid #ddd;background:transparent}.x-form-fieldset .x-field:first-child{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-form-fieldset .x-field:last-child{border-bottom:0;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#333;margin:1em .7em 0.3em;color:#333}.x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#333;color:gray;margin:1em .7em 0.3em;font-size:.8em}.x-label-align-left:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em}.x-label-align-left:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-label-align-right:first-child .x-form-label{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-right:last-child{border-bottom:0}.x-label-align-right:last-child .x-form-label{-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-label-align-top:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-bottom:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-field{min-height:2.5em;background:#fff}.x-field:last-child{border-bottom:0}.x-field-label{background-color:#f7f7f7;color:#080808}.x-field-input .x-clear-icon{background:url('data:image/png;base64,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') no-repeat;background-position:center center;background-size:55% 55%;width:2.2em;height:2.2em;margin:.5em;margin-top:-1.1em;right:-.5em}.x-field-clearable .x-field-input{padding-right:2.2em}.x-input-el{padding:.4em;min-height:2.5em;border-width:0;-webkit-appearance:none}.x-ie .x-input-el{background:transparent}.x-item-disabled .x-form-label,.x-item-disabled input,.x-item-disabled .x-input-el,.x-item-disabled .x-spinner-body,.x-item-disabled select,.x-item-disabled textarea,.x-item-disabled .x-field-clear-container{color:#b3b3b3;pointer-events:none}.x-item-disabled .x-form-label{color:#aaa}.x-item-disabled .x-form-label:after{color:#666 !important}.x-checkmark-base,.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after,.x-select-overlay .x-item-selected.x-list-item::after{position:absolute;top:0;right:10px;bottom:0;content:'3';font-family:'Pictos';font-size:1.6em;text-align:right;line-height:1.6em}.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after{color:#ddd}.x-input-checkbox,.x-input-radio{visibility:hidden}.x-input-el:checked+.x-field-mask::after{color:#798d45}.x-item-disabled.x-field-checkbox .x-input-checkbox:checked+.x-field-mask::after{color:#b5bda0}.x-field-radio .x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0}.x-field-radio .x-field-mask::after{content:'';position:absolute;width:16px;height:16px;top:16px;left:auto;right:16px;background-color:#d0d0d0;-moz-border-radius:16px;-webkit-border-radius:16px;border-radius:16px}.x-field-radio .x-field-mask::before{content:'';position:absolute;width:26px;height:26px;top:11px;left:auto;right:11px;background-color:#ddd;-moz-border-radius:26px;-webkit-border-radius:26px;border-radius:26px}.x-input-radio:checked+.x-field-mask::after{background:#798d45}.x-item-disabled.x-field-radio .x-input-radio:checked+.x-field-mask::after{background:#b5bda0}.x-field-search .x-field-input{position:relative}.x-field-search .x-field-input:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"s"}.x-field-search .x-field-input:before{color:#ccc;top:.7em;left:.5em;font-size:1.1em;right:auto}.x-toolbar .x-field-search .x-field-input:before{top:.3em}.x-field-search .x-field-input .x-form-field{margin-left:1em}.x-webkit .x-selectmark-base,.x-webkit .x-field-select .x-component-outer:after,.x-field-select .x-webkit .x-component-outer:after{content:'';position:absolute;width:1em;height:1em;top:50%;left:auto;right:.7em;-webkit-mask-size:1em;-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');margin-top:-.5em}.x-field-select{position:relative;z-index:1}.x-field-select .x-component-outer:after{z-index:2;background-color:#ddd}.x-field-select .x-component-outer:before,.x-field-select .x-component-outer:after{pointer-events:none;position:absolute;display:block}.x-select-overlay .x-list-item-label{height:2.6em}.x-select-overlay .x-item-selected .x-list-label{margin-right:2.6em}.x-select-overlay .x-item-selected.x-list-item::after{color:#ddd}.x-list{background-color:#f7f7f7}.x-list .x-list-disclosure{position:relative;overflow:visible;border:0;-moz-border-radius:32px;-webkit-border-radius:32px;border-radius:32px;background-image:none;background-color:#7e983b;background-image:-webkit-linear-gradient(top, #a5c15e,#8daa42 3%,#6e8533);background-image:-moz-linear-gradient(top, #a5c15e,#8daa42 3%,#6e8533);background-image:-o-linear-gradient(top, #a5c15e,#8daa42 3%,#6e8533);background-image:-ms-linear-gradient(to bottom, #a5c15e,#8daa42 3%,#6e8533);width:32px;height:32px;margin:7px 7px 0 0}.x-list .x-list-disclosure:before{position:absolute;top:0;right:0;bottom:0;left:0;content:']';font-family:'Pictos';color:#fff;font-size:24px;text-align:center;line-height:35px;text-shadow:0 0 0}.x-list.x-list-indexed .x-list-disclosure{margin-right:1.8em}.x-list .x-item-selected .x-list-disclosure{background:#fff none}.x-list .x-item-selected .x-list-disclosure:before{color:#798d45}.x-list .x-list-item{color:#000}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-image:none;background-color:#798d45;background-image:-webkit-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-moz-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-o-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-ms-linear-gradient(to bottom, #a0b669,#889e4d 3%,#6a7c3d);color:#fff}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background:#ecf0e1 none}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:12px 15px}.x-list-normal .x-list-header{background-image:none;background-color:#fefefe;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#f3f0f0);color:#b9aaaa;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;border-top:1px solid #fefefe;border-bottom:1px solid #d0c6c6;font-weight:bold;font-size:0.8em;padding:0.2em 1.02em}.x-list-normal .x-list-item.x-list-item-tpl,.x-list-normal .x-list-item .x-dock-horizontal{border-top:1px solid #dedede}.x-list-normal .x-list-item.x-list-item-tpl.x-list-footer-wrap,.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal{border-bottom:1px solid #dedede}.x-list-normal .x-list-item.x-item-pressed.x-list-item-tpl,.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal{border-top-color:#ecf0e1;background-color:#ecf0e1}.x-list-normal .x-list-item.x-item-selected.x-list-item-tpl,.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal{border-top-color:#798d45}.x-list-round .x-scroll-view{background-color:#eee}.x-list-round .x-list-header-swap{padding-right:13px}.x-list-round .x-list-inner .x-scroll-container{top:13px;left:13px;bottom:13px;right:13px;width:auto !important;height:auto !important}.x-list-round .x-list-header{color:#777;font-size:1em;font-weight:bold;padding-left:26px;line-height:1.7em;background-image:-webkit-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-moz-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-o-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-ms-linear-gradient(to bottom, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4))}.x-list-round .x-list-container{padding:13px 13px 0 13px}.x-list-round .x-list-container .x-list-header{padding-left:13px;background-image:none}.x-list-round.x-list-ungrouped .x-list-item-tpl,.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal,.x-list-round.x-list-grouped .x-list-item-tpl,.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #dedede;border-width:1px 1px 0 1px;background:#f7f7f7}.x-list-round.x-list-ungrouped .x-list-item-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-ungrouped .x-list-item-last{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;border-width:1px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-header-wrap.x-list-header{border:1px solid #dedede;border-width:1px 1px 0 1px;-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap{background:transparent}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-dock-body,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #dedede;background:#f7f7f7;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-dock-body{background:#ecf0e1 none}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-dock-body{background-image:none;background-color:#798d45;background-image:-webkit-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-moz-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-o-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-ms-linear-gradient(to bottom, #a0b669,#889e4d 3%,#6a7c3d);color:#fff}.x-list-round .x-indexbar-vertical{margin-right:20px}.x-list-round .x-list-footer-wrap.x-list-item-last.x-list-item-odd.x-list-item.x-list-item-tpl{background-color:transparent !important}.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-innerhtml,.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-dock-body{background-color:#eaeaea !important}.x-list .x-list-item-odd.x-list-item-tpl,.x-list .x-list-item-odd .x-dock-horizontal{background-color:#eaeaea !important;border-bottom:1px solid #eaeaea}.x-toggle{width:4.4em;border:1px solid #b7b7b7;background-image:none;background-color:#ddd;background-image:-webkit-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-moz-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-o-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-ms-linear-gradient(to bottom, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);-moz-border-radius:1.1em;-webkit-border-radius:1.1em;border-radius:1.1em}.x-toggle .x-thumb.x-dragging{opacity:1}.x-toggle .x-thumb:before{top:.175em}.x-toggle-on{background-image:none;background-color:#92cf00;background-image:-webkit-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-moz-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-o-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-ms-linear-gradient(to bottom, #6e9c00,#80b600 10%,#92cf00 65%,#94d200)}.x-button.border-radius-10{-moz-border-radius:10px !important;-webkit-border-radius:10px;border-radius:10px !important}.x-dataview.color .x-dataview-inner.x-scroll-scroller{width:auto !important;height:auto !important;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container{margin-top:12px;margin-left:12px}.x-dataview.color .x-dataview-item{display:inline-block}.x-dataview.color .x-dataview-item.x-item-selected .item-inner{-moz-box-shadow:#c9d200 0 0 0 4px;-webkit-box-shadow:#c9d200 0 0 0 4px;box-shadow:#c9d200 0 0 0 4px}.x-dataview.color .x-dataview-item .item-inner{display:inline-block;width:50px;height:50px;border:1px solid #d8d8d8;margin:6px}.x-list.settings{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round .x-scroll-view{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{padding-top:0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header{display:none}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal{padding-bottom:0}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #bcbcbc;border-width:1px 1px 0 1px;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal{background-image:-webkit-linear-gradient(top, #889e4d,#5c6b34);background-image:-moz-linear-gradient(top, #889e4d,#5c6b34);background-image:-o-linear-gradient(top, #889e4d,#5c6b34);background-image:-ms-linear-gradient(to bottom, #889e4d,#5c6b34);color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure{background-position:-24px 0}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal{color:inherit}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body{padding-right:1.2em}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after{content:"";width:24px;height:24px;position:absolute;top:11px;right:11px;background-image:url("../img/icons/list-normal.png");background-size:72px 48px;background-position:0 -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal{color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after{background-position:-24px -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon{width:24px;height:24px;position:absolute}.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset{margin-left:30px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure{right:12px;background-image:url("../img/icons/list-normal.png");background-size:72px 48px;background-position:0 0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body{-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13.8px}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #bcbcbc;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal{background:transparent}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal>.x-dock-body{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;background-image:-webkit-linear-gradient(top, #889e4d,#5c6b34);background-image:-moz-linear-gradient(top, #889e4d,#5c6b34);background-image:-o-linear-gradient(top, #889e4d,#5c6b34);background-image:-ms-linear-gradient(to bottom, #889e4d,#5c6b34);color:#fff}.x-msgbox{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-moz-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-o-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-ms-linear-gradient(to bottom, #989898,#656565 10%,#656565)}.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label,.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge{font-size:.9em;line-height:2em}.x-msgbox .x-title{font-size:1em;line-height:1.4em;color:#ffffff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-panel.x-panel-settings{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ececec,#cbcbcb);background-image:-moz-linear-gradient(top, #ececec,#cbcbcb);background-image:-o-linear-gradient(top, #ececec,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ececec,#cbcbcb);-moz-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;-webkit-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;border:1px solid #797979}.x-panel.x-panel-settings .x-anchor-top{background-color:#797979;margin-top:-.62em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-top:after{content:'';position:absolute;width:1.631em;height:.7em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #f1f1f1,#ececec);background-image:-moz-linear-gradient(top, #f1f1f1,#ececec);background-image:-o-linear-gradient(top, #f1f1f1,#ececec);background-image:-ms-linear-gradient(to bottom, #f1f1f1,#ececec);top:1px !important}.x-panel.x-panel-settings .x-anchor-bottom{height:.8em;background-color:#797979;margin-top:-0.15em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-bottom:after{content:'';position:absolute;width:1.631em;height:.8em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#bebebe);background-image:-moz-linear-gradient(top, #cbcbcb,#bebebe);background-image:-o-linear-gradient(top, #cbcbcb,#bebebe);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#bebebe);top:-1px !important}.x-panel.x-panel-settings .x-panel-inner{background:transparent}.x-panel.x-panel-settings .x-navigation-bar{border-bottom:none;margin-top:-6px;background:transparent;overflow:hidden}.x-panel.x-panel-settings .x-navigation-bar .x-title{color:#323232;text-shadow:#fff 0 0.08em 0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner{background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after{content:none}.x-panel.x-panel-settings .x-navigationview-inner{background-color:#efefef;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-panel.x-panel-settings .x-navigationview-inner:after{content:'';position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:inset 0 1px 2px 2px #c8c8c8;-webkit-box-shadow:inset 0 1px 2px 2px #c8c8c8;box-shadow:inset 0 1px 2px 2px #c8c8c8;border:1px solid #797979}.x-label.info .x-innerhtml{color:#7f7f7f;text-shadow:0 1px 0 #fff;text-align:center}.btn-input-image input[type="file"]{opacity:0;position:absolute;left:0;top:0}.x-mask.transparent{background:transparent}.round{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-spinner.planar-spinner.x-field-grouped-buttons{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons.x-field{min-height:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span{font-size:inherit}.x-spinner.planar-spinner.x-field-grouped-buttons .x-button{margin-top:9px;margin-bottom:9px;padding:0 8px !important}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{padding:0.16em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input{-moz-box-shadow:#b2b2b2 0 3px 4px -2px inset;-webkit-box-shadow:#b2b2b2 0 3px 4px -2px inset;box-shadow:#b2b2b2 0 3px 4px -2px inset;background:#fff;min-width:2.3em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el{text-align:center;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;padding:3px 0 4px;min-height:0;border-top:1px solid #898989;border-bottom:1px solid #898989}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button{width:auto;border:1px solid #939393 !important;margin:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down{margin-right:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.x-toolbar-edit{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb);border-color:#4c4c4c}.x-toolbar-edit .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-edit.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-edit .x-button.x-button-back:before,.x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-button.x-button-back:before,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-edit .x-button,.x-toolbar-edit .x-button.x-button-back:after,.x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button.x-button-back:after,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-edit .x-button.x-button-pressing,.x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar-edit .x-button.x-button-pressed,.x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar-edit .x-button.x-button-active,.x-toolbar-edit .x-button.x-button-active:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-button.x-button-active,.x-toolbar .x-toolbar-edit .x-button.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-edit .x-label,.x-toolbar-edit .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-toolbar-search{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-moz-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-o-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#e7e7e7 20%,#e7e7e7);border-color:#4c4c4c}.x-toolbar-search .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-search.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-search .x-button.x-button-back:before,.x-toolbar-search .x-button.x-button-forward:before,.x-toolbar .x-toolbar-search .x-button.x-button-back:before,.x-toolbar .x-toolbar-search .x-button.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-search .x-button,.x-toolbar-search .x-button.x-button-back:after,.x-toolbar-search .x-button.x-button-forward:after,.x-toolbar .x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button.x-button-back:after,.x-toolbar .x-toolbar-search .x-button.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-search .x-button.x-button-pressing,.x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar-search .x-button.x-button-pressed,.x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar-search .x-button.x-button-active,.x-toolbar-search .x-button.x-button-active:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressing,.x-toolbar .x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressed,.x-toolbar .x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-button.x-button-active,.x-toolbar .x-toolbar-search .x-button.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-search .x-label,.x-toolbar-search .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-button-icon.share,.list-icon.share{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -48px;background-size:72px 624px}.x-button-pressing .x-button-icon.share,.x-button-pressing .list-icon.share,.x-button-pressed .x-button-icon.share,.x-button-pressed .list-icon.share,.x-button-active .x-button-icon.share,.x-button-active .list-icon.share,.x-item-pressed .x-button-icon.share,.x-item-pressed .list-icon.share{background-position:-24px -48px}.x-button-icon.pages,.list-icon.pages{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -288px;background-size:72px 624px}.x-button-pressing .x-button-icon.pages,.x-button-pressing .list-icon.pages,.x-button-pressed .x-button-icon.pages,.x-button-pressed .list-icon.pages,.x-button-active .x-button-icon.pages,.x-button-active .list-icon.pages,.x-item-pressed .x-button-icon.pages,.x-item-pressed .list-icon.pages{background-position:-24px -288px}.x-button-icon.search-prev,.list-icon.search-prev{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -312px;background-size:72px 624px}.x-button-pressing .x-button-icon.search-prev,.x-button-pressing .list-icon.search-prev,.x-button-pressed .x-button-icon.search-prev,.x-button-pressed .list-icon.search-prev,.x-button-active .x-button-icon.search-prev,.x-button-active .list-icon.search-prev,.x-item-pressed .x-button-icon.search-prev,.x-item-pressed .list-icon.search-prev{background-position:-24px -312px}.x-button-icon.search-next,.list-icon.search-next{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -336px;background-size:72px 624px}.x-button-pressing .x-button-icon.search-next,.x-button-pressing .list-icon.search-next,.x-button-pressed .x-button-icon.search-next,.x-button-pressed .list-icon.search-next,.x-button-active .x-button-icon.search-next,.x-button-active .list-icon.search-next,.x-item-pressed .x-button-icon.search-next,.x-item-pressed .list-icon.search-next{background-position:-24px -336px}.x-button-icon.search,.list-icon.search{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -384px;background-size:72px 624px}.x-button-pressing .x-button-icon.search,.x-button-pressing .list-icon.search,.x-button-pressed .x-button-icon.search,.x-button-pressed .list-icon.search,.x-button-active .x-button-icon.search,.x-button-active .list-icon.search,.x-item-pressed .x-button-icon.search,.x-item-pressed .list-icon.search{background-position:-24px -384px}.x-button-icon.fullscreen,.list-icon.fullscreen{background-image:url("../img/icons/icons-normal.png");background-color:transparent;background-position:0 -408px;background-size:72px 624px}.x-button-pressing .x-button-icon.fullscreen,.x-button-pressing .list-icon.fullscreen,.x-button-pressed .x-button-icon.fullscreen,.x-button-pressed .list-icon.fullscreen,.x-button-active .x-button-icon.fullscreen,.x-button-active .list-icon.fullscreen,.x-item-pressed .x-button-icon.fullscreen,.x-item-pressed .list-icon.fullscreen{background-position:-24px -408px}.x-button.x-button-base{padding:.3em 8px}.x-button.x-button-base,.x-toolbar .x-button.x-button-base{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-base .x-button-icon,.x-toolbar .x-button.x-button-base .x-button-icon{width:24px;height:24px}.x-button.x-button-base.x-button-forward:before,.x-button.x-button-base.x-button-forward:after,.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base .x-button-label,.x-button.x-button-base .x-badge,.x-toolbar .x-button.x-button-base .x-button-label,.x-toolbar .x-button.x-button-base .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-forward:before{background:#989898}.x-button.x-button-base,.x-button.x-button-base.x-button-back:after,.x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base,.x-toolbar .x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-base.x-button-pressing,.x-button.x-button-base.x-button-pressing:after,.x-button.x-button-base.x-button-pressed,.x-button.x-button-base.x-button-pressed:after,.x-button.x-button-base.x-button-active,.x-button.x-button-base.x-button-active:after,.x-toolbar .x-button.x-button-base.x-button-pressing,.x-toolbar .x-button.x-button-base.x-button-pressing:after,.x-toolbar .x-button.x-button-base.x-button-pressed,.x-toolbar .x-button.x-button-base.x-button-pressed:after,.x-toolbar .x-button.x-button-base.x-button-active,.x-toolbar .x-button.x-button-base.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-base.x-button-pressing .x-button-label,.x-button.x-button-base.x-button-pressing .x-badge,.x-button.x-button-base.x-button-pressed .x-button-label,.x-button.x-button-base.x-button-pressed .x-badge,.x-button.x-button-base.x-button-active .x-button-label,.x-button.x-button-base.x-button-active .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-base:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-light{padding:.3em 8px}.x-button.x-button-light,.x-toolbar .x-button.x-button-light{border:1px solid #c7c7c7;border-top-color:#d9d9d9;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#262626}.x-button.x-button-light .x-button-icon,.x-toolbar .x-button.x-button-light .x-button-icon{width:24px;height:24px}.x-button.x-button-light.x-button-forward:before,.x-button.x-button-light.x-button-forward:after,.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-light .x-button-label,.x-button.x-button-light .x-badge,.x-toolbar .x-button.x-button-light .x-button-label,.x-toolbar .x-button.x-button-light .x-badge{color:#666;text-shadow:#fff 0 0.09em 0}.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-forward:before{background:#ccc}.x-button.x-button-light,.x-button.x-button-light.x-button-back:after,.x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light,.x-toolbar .x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:after{background-image:none;background-color:#fff;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#ffffff)}.x-button.x-button-light.x-button-pressing,.x-button.x-button-light.x-button-pressing:after,.x-button.x-button-light.x-button-pressed,.x-button.x-button-light.x-button-pressed:after,.x-button.x-button-light.x-button-active,.x-button.x-button-light.x-button-active:after,.x-toolbar .x-button.x-button-light.x-button-pressing,.x-toolbar .x-button.x-button-light.x-button-pressing:after,.x-toolbar .x-button.x-button-light.x-button-pressed,.x-toolbar .x-button.x-button-light.x-button-pressed:after,.x-toolbar .x-button.x-button-light.x-button-active,.x-toolbar .x-button.x-button-light.x-button-active:after{background-image:none;background-color:#999;background-image:-webkit-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-moz-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-o-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-ms-linear-gradient(to bottom, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a)}.x-button.x-button-light.x-button-pressing .x-button-label,.x-button.x-button-light.x-button-pressing .x-badge,.x-button.x-button-light.x-button-pressed .x-button-label,.x-button.x-button-light.x-button-pressed .x-badge,.x-button.x-button-light.x-button-active .x-button-label,.x-button.x-button-light.x-button-active .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-light.x-button-active .x-button-label,.x-toolbar .x-button.x-button-light.x-button-active .x-badge{color:#fff;text-shadow:gray 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-light{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-light:not(.x-first){border-left:1px solid #c7c7c7}.x-segmentedbutton-base.divided .x-button-light:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-light.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-light.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-base-blue{padding:.3em 8px}.x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue{border:1px solid #384220;border-top-color:#4d5a2c;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#fff}.x-button.x-button-base-blue .x-button-icon,.x-toolbar .x-button.x-button-base-blue .x-button-icon{width:24px;height:24px}.x-button.x-button-base-blue.x-button-forward:before,.x-button.x-button-base-blue.x-button-forward:after,.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base-blue .x-button-label,.x-button.x-button-base-blue .x-badge,.x-toolbar .x-button.x-button-base-blue .x-button-label,.x-toolbar .x-button.x-button-base-blue .x-badge{color:#fff;text-shadow:#384220 0 -0.09em 0}.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before{background:#3e4923}.x-button.x-button-base-blue,.x-button.x-button-base-blue.x-button-back:after,.x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after{background-image:none;background-color:#798d45;background-image:-webkit-linear-gradient(top, #ffffff,#9cb262 3%,#798d45);background-image:-moz-linear-gradient(top, #ffffff,#9cb262 3%,#798d45);background-image:-o-linear-gradient(top, #ffffff,#9cb262 3%,#798d45);background-image:-ms-linear-gradient(to bottom, #ffffff,#9cb262 3%,#798d45)}.x-button.x-button-base-blue.x-button-pressing,.x-button.x-button-base-blue.x-button-pressing:after,.x-button.x-button-base-blue.x-button-pressed,.x-button.x-button-base-blue.x-button-pressed:after,.x-button.x-button-base-blue.x-button-active,.x-button.x-button-base-blue.x-button-active:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressing,.x-toolbar .x-button.x-button-base-blue.x-button-pressing:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressed,.x-toolbar .x-button.x-button-base-blue.x-button-pressed:after,.x-toolbar .x-button.x-button-base-blue.x-button-active,.x-toolbar .x-button.x-button-base-blue.x-button-active:after{background-image:none;background-color:#5c6b34;background-image:-webkit-linear-gradient(top, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35);background-image:-moz-linear-gradient(top, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35);background-image:-o-linear-gradient(top, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35);background-image:-ms-linear-gradient(to bottom, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35)}.x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-button.x-button-base-blue.x-button-pressing .x-badge,.x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-button.x-button-base-blue.x-button-pressed .x-badge,.x-button.x-button-base-blue.x-button-active .x-button-label,.x-button.x-button-base-blue.x-button-active .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge{text-shadow:#384220 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base-blue{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first){border-left:1px solid #384220}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base-blue.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base-blue.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-back{padding:.3em 8px}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-back .x-button-icon,.x-toolbar .x-button.x-button-back .x-button-icon{width:24px;height:24px}.x-button.x-button-back.x-button-forward:before,.x-button.x-button-back.x-button-forward:after,.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-back .x-button-label,.x-button.x-button-back .x-badge,.x-toolbar .x-button.x-button-back .x-button-label,.x-toolbar .x-button.x-button-back .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-forward:before{background:#989898}.x-button.x-button-back,.x-button.x-button-back.x-button-back:after,.x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back,.x-toolbar .x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-back.x-button-pressing,.x-button.x-button-back.x-button-pressing:after,.x-button.x-button-back.x-button-pressed,.x-button.x-button-back.x-button-pressed:after,.x-button.x-button-back.x-button-active,.x-button.x-button-back.x-button-active:after,.x-toolbar .x-button.x-button-back.x-button-pressing,.x-toolbar .x-button.x-button-back.x-button-pressing:after,.x-toolbar .x-button.x-button-back.x-button-pressed,.x-toolbar .x-button.x-button-back.x-button-pressed:after,.x-toolbar .x-button.x-button-back.x-button-active,.x-toolbar .x-button.x-button-back.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-back.x-button-pressing .x-button-label,.x-button.x-button-back.x-button-pressing .x-badge,.x-button.x-button-back.x-button-pressed .x-button-label,.x-button.x-button-back.x-button-pressed .x-badge,.x-button.x-button-back.x-button-active .x-button-label,.x-button.x-button-back.x-button-active .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-back.x-button-active .x-button-label,.x-toolbar .x-button.x-button-back.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-back{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-back:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-back:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-back.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-back.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.unsuported-view{position:absolute;left:0;top:0;right:0;bottom:0;background:url(../img/ios-only.png) no-repeat center #efefef;background-attachment:fixed;z-index:90000}.x-button.text-offset-12{padding-left:12px;padding-right:12px}.x-button.text-offset-30{padding-left:30px;padding-right:30px} diff --git a/apps/spreadsheeteditor/mobile/resources/css/application-retina.css b/apps/spreadsheeteditor/mobile/resources/css/application-retina.css index 3212de976..4b3b5a3f4 100644 --- a/apps/spreadsheeteditor/mobile/resources/css/application-retina.css +++ b/apps/spreadsheeteditor/mobile/resources/css/application-retina.css @@ -1,11286 +1 @@ -/* line 3, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, -h4, h5, h6, pre, code, form, fieldset, legend, -input, textarea, p, blockquote, th, td { - margin: 0; - padding: 0; -} - -/* line 8, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -table { - border-collapse: collapse; - border-spacing: 0; -} - -/* line 13, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -fieldset, img { - border: 0; -} - -/* line 18, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -address, caption, cite, code, -dfn, em, strong, th, var { - font-style: normal; - font-weight: normal; -} - -/* line 23, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -li { - list-style: none; -} - -/* line 27, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -caption, th { - text-align: left; -} - -/* line 31, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -h1, h2, h3, h4, h5, h6 { - font-size: 100%; - font-weight: normal; -} - -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -q:before, -q:after { - content: ""; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -abbr, acronym { - border: 0; - font-variant: normal; -} - -/* line 46, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sup { - vertical-align: text-top; -} - -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -sub { - vertical-align: text-bottom; -} - -/* line 54, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -input, textarea, select { - font-family: inherit; - font-size: inherit; - font-weight: inherit; -} - -/* line 60, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss */ -*:focus { - outline: none; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 10, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -html, body { - font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif; - font-weight: normal; - position: relative; - -webkit-text-size-adjust: none; -} - -/* line 17, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - overflow: hidden; -} - -/* line 21, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -*, *:after, *:before { - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); - -webkit-user-select: none; - -webkit-touch-callout: none; - -webkit-user-drag: none; -} - -/* line 29, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-ios.x-tablet .x-landscape * { - -webkit-text-stroke: 1px transparent; -} - -/* line 33, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body { - font-size: 104%; -} - -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone { - font-size: 116%; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-android.x-phone.x-silk { - font-size: 130%; -} - -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-ios.x-phone { - font-size: 114%; -} - -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -body.x-desktop { - font-size: 114%; -} - -/* line 53, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -input, textarea { - -webkit-user-select: text; -} - -/* line 57, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-visibility { - visibility: hidden !important; -} - -/* line 61, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-display, .x-field-hidden { - display: none !important; -} - -/* line 65, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-hidden-offsets { - position: absolute !important; - left: -10000em; - top: -10000em; - visibility: hidden; -} - -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-fullscreen { - position: absolute !important; -} - -/* line 79, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-desktop .x-body-stretcher { - margin-bottom: 0px; -} - -/* line 83, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: 100%; - z-index: 10; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - background: rgba(0, 0, 0, 0.3) center center no-repeat; -} -/* line 100, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-gray { - background-color: rgba(0, 0, 0, 0.5); -} -/* line 104, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-mask-transparent { - background-color: transparent; -} -/* line 108, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-inner { - position: relative; - background: rgba(0, 0, 0, 0.25); - color: #fff; - text-align: center; - padding: .4em; - font-size: .95em; - font-weight: bold; - -webkit-border-radius: 0.5em; - border-radius: 0.5em; -} -/* line 119, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-loading-spinner-outer { - display: -webkit-box; - display: box; - -webkit-box-orient: vertical; - box-orient: vertical; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; - width: 100%; - min-width: 8.5em; - height: 8.5em; -} -/* line 130, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-inner { - padding-bottom: 0 !important; -} -/* line 133, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-loading-spinner-outer { - display: none; -} -/* line 136, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-indicator-hidden .x-mask-message { - position: relative; - bottom: .25em; -} -/* line 142, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask .x-mask-message { - position: absolute; - bottom: 1.7em; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-flex: 0 !important; - max-width: 13em; - min-width: 8.5em; -} -/* line 152, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-mask-inner { - padding-bottom: 2em; -} -/* line 156, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-mask.x-has-message .x-loading-spinner-outer { - height: 7.5em; -} - -/* line 162, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-draggable { - z-index: 1; -} - -/* line 166, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-dragging { - opacity: 0.7; -} - -/* line 170, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-panel-list { - background-color: white; -} - -/* line 175, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html { - -webkit-user-select: auto; - -webkit-touch-callout: inherit; - line-height: 1.5; - color: #333; - font-size: .8em; - padding: 1.2em; -} -/* line 33, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html body { - line-height: 1.5; - font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; - color: #333333; - font-size: 75%; -} -/* line 51, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1, .x-html h2, .x-html h3, .x-html h4, .x-html h5, .x-html h6 { - font-weight: normal; - color: #222222; -} -/* line 52, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 img, .x-html h2 img, .x-html h3 img, .x-html h4 img, .x-html h5 img, .x-html h6 img { - margin: 0; -} -/* line 53, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h1 { - font-size: 3em; - line-height: 1; - margin-bottom: 0.50em; -} -/* line 54, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h2 { - font-size: 2em; - margin-bottom: 0.75em; -} -/* line 55, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h3 { - font-size: 1.5em; - line-height: 1; - margin-bottom: 1.00em; -} -/* line 56, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h4 { - font-size: 1.2em; - line-height: 1.25; - margin-bottom: 1.25em; -} -/* line 57, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h5 { - font-size: 1em; - font-weight: bold; - margin-bottom: 1.50em; -} -/* line 58, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html h6 { - font-size: 1em; - font-weight: bold; -} -/* line 59, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p { - margin: 0 0 1.5em; -} -/* line 60, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .left { - display: inline; - float: left; - margin: 1.5em 1.5em 1.5em 0; - padding: 0; -} -/* line 61, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html p .right { - display: inline; - float: right; - margin: 1.5em 0 1.5em 1.5em; - padding: 0; -} -/* line 62, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html a { - text-decoration: underline; - color: #0066cc; -} -/* line 18, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:visited { - color: #004c99; -} -/* line 21, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:focus { - color: #0099ff; -} -/* line 24, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:hover { - color: #0099ff; -} -/* line 27, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ -.x-html a:active { - color: #bf00ff; -} -/* line 63, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html blockquote { - margin: 1.5em; - color: #666666; - font-style: italic; -} -/* line 64, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html strong, .x-html dfn { - font-weight: bold; -} -/* line 65, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html em, .x-html dfn { - font-style: italic; -} -/* line 66, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html sup, .x-html sub { - line-height: 0; -} -/* line 67, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html abbr, .x-html acronym { - border-bottom: 1px dotted #666666; -} -/* line 68, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html address { - margin: 0 0 1.5em; - font-style: italic; -} -/* line 69, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html del { - color: #666666; -} -/* line 70, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre { - margin: 1.5em 0; - white-space: pre; -} -/* line 71, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html pre, .x-html code, .x-html tt { - font: 1em "andale mono", "lucida console", monospace; - line-height: 1.5; -} -/* line 72, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html li ul, .x-html li ol { - margin: 0; -} -/* line 73, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul, .x-html ol { - margin: 0 1.5em 1.5em 0; - padding-left: 1.5em; -} -/* line 74, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ul { - list-style-type: disc; -} -/* line 75, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html ol { - list-style-type: decimal; -} -/* line 76, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl { - margin: 0 0 1.5em 0; -} -/* line 77, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dl dt { - font-weight: bold; -} -/* line 78, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html dd { - margin-left: 1.5em; -} -/* line 79, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table { - margin-bottom: 1.4em; - width: 100%; -} -/* line 80, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th { - font-weight: bold; -} -/* line 81, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html thead th { - background: #c3d9ff; -} -/* line 82, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html th, .x-html td, .x-html caption { - padding: 4px 10px 4px 5px; -} -/* line 85, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html table.striped tr:nth-child(even) td, -.x-html table tr.even td { - background: #e5ecf9; -} -/* line 86, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html tfoot { - font-style: italic; -} -/* line 87, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html caption { - background: #eeeeee; -} -/* line 88, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .quiet { - color: #666666; -} -/* line 89, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */ -.x-html .loud { - color: #111111; -} -/* line 185, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ul li { - list-style-type: circle; -} -/* line 188, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-html ol li { - list-style-type: decimal; -} - -/* line 194, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-video { - background-color: #000; -} - -/* line 198, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-sortable .x-dragging { - opacity: 1; - z-index: 5; -} - -/* line 203, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss */ -.x-layout-card-item { - background: #eeeeee; -} - -/* line 1, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map { - background-color: #edeae2; -} -/* line 3, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map * { - -webkit-box-sizing: content-box; - box-sizing: content-box; -} - -/* line 9, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-mask-map { - background: transparent !important; -} - -/* line 13, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss */ -.x-map-container { - position: absolute !important; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Toolbar - */ -/** - * @var {color} $toolbar-base-color - * The primary color variable from which toolbars derive their light and dark UIs. - */ -/** - * @var {measurement} $toolbar-spacing - * Space between items in a toolbar (like buttons and fields) - */ -/** - * @var {string} $toolbar-gradient - * Background gradient style for toolbars. - */ -/** - * @var {boolean} $include-toolbar-uis - * Optionally disable separate toolbar UIs (light and dark). - */ -/** - * Includes default toolbar styles. - */ -/** - * Creates a theme UI for toolbars. - * - * // SCSS - * @include sencha-toolbar-ui('sub', #58710D, 'glossy'); - * - * // JS - * var myTb = new Ext.Toolbar({title: 'My Green Glossy Toolbar', ui: 'sub'}) - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient: $toolbar-gradien Background gradient style for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Button - */ -/** - * @var {measurement} $button-height Default height for buttons. - */ -/** - * @var {measurement} $button-radius Default border-radius for buttons. - */ -/** - * @var {measurement} $button-stroke-weight Default border width for buttons. - */ -/** - * @var {string} $button-gradient Default gradient for buttons. - */ -/** - * @var {string} $toolbar-icon-size Default size (width and height) for toolbar icons. - */ -/** - * @var {boolean} $include-button-uis Optionally disable separate button UIs, including action, confirm, and decline. - */ -/** - * @var {boolean} $include-button-highlights Optionally disable special CSS3 effects on buttons including gradients, text-shadows, and box-shadows. - */ -/** - * Includes default button styles. - */ -/** - * Creates a theme UI for buttons. - * Also automatically generates UIs for {ui-label}-round and {ui-label}-small. - * - * // SCSS - * @include sencha-button-ui('secondary', #99A4AE, 'glossy'); - * - * // JS - * var cancelBtn = new Ext.Button({text: 'Cancel', ui: 'secondary'}); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.tab.Bar - */ -/** - * @var {boolean} $include-tabbar-uis Optionally disable separate tabbar UIs (light and dark). - */ -/** - * @var {boolean} $include-top-tabs - * Optionally exclude top tab styles by setting to false. - */ -/** - * @var {boolean} $include-bottom-tabs - * Optionally exclude bottom tab styles by setting to false. - */ -/** - * @var {color} $tabs-light - * Base color for "light" UI tabs. - */ -/** - * @var {color} $tabs-light-active - * Active color for "light" UI tabs. - */ -/** - * @var {color} $tabs-dark - * Base color for "dark" UI tabs. - */ -/** - * @var {color} $tabs-dark-active - * Active color for "dark" UI tabs. - */ -/** - * @var {string} $tabs-bar-gradient - * Background gradient style for tab bars. - */ -/** - * @class Ext.tab.Tab - */ -/** - * @var {string} $tabs-bottom-radius - * Border-radius for bottom tabs. - */ -/** - * @var {string} $tabs-bottom-icon-size - * Icon size for bottom tabs - */ -/** - * @var {string} $tabs-bottom-active-gradient - * Background gradient style for active bottom tabs. - */ -/** - * @var {boolean} $include-tab-highlights - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * Includes default tab styles. - * - * @member Ext.tab.Bar - */ -/** - * Creates a theme UI for tabbar/tab components. - * - * // SCSS - * @include sencha-button-ui('pink', #333, 'matte', #AE537A); - * - * // JS - * var tabs = new Ext.tab.Panel({ - * tabBar: { - * ui: 'pink', - * dock: 'bottom', - * layout: { pack: 'center' } - * }, - * ... - * }); - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $bar-color Base color for the tab bar. - * @param {string} $bar-gradient Background gradient style for the tab bar. - * @param {color} $tab-active-color Background-color for active tab icons. - * - * @member Ext.tab.Bar - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.carousel.Indicator - */ -/** - * @var {measurement} $carousel-indicator-size Size (width/height) of carousel indicator dots. - */ -/** - * @var {measurement} $carousel-indicator-spacing - * Amount of space between carousel indicator dots. - */ -/** - * @var {measurement} $carousel-track-size Size of the track the carousel indicator dots are in. - */ -/** - * Creates a theme UI for carousel indicator components. - * - * @param {string} $ui-label The name of the UI being created. - * Can not included spaces or special punctuation (used in class names) - * @param {color} $color Base color for the UI. - * @param {string} $gradient Default gradient for the UI. - * @param {color} $active-color Active color for the UI. - * @param {string} $active-gradient Active gradient for the UI. - */ -/** - * @class Ext.carousel.Carousel - */ -/** - * Includes basic carousel formatting. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.IndexBar - */ -/** - * @var {measurement} $index-bar-width - * Width of the index bar. - */ -/** - * @var {color} $index-bar-bg-color - * Background-color of the index bar. - */ -/** - * @var {color} $index-bar-color - * Text color of the index bar. - */ -/** - * Includes default index bar styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.dataview.List - */ -/** - * @var {color} $list-color - * Text color for list rows. - */ -/** - * @var {color} $list-bg-color - * Background-color for list rows. - */ -/** - * @var {color} $include-list-highlights - * Optionally disable all list gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $list-zebrastripe - * Optionally zebra-stripe the list (alternating background colors). - */ -/** - * @var {color} $list-pressed-color - * Background-color for pressed list rows. - */ -/** - * @var {color} $list-active-color - * Background-color for selected list rows. - */ -/** - * @var {string} $list-active-gradient - * Gradient style for selected list rows. - */ -/** - * @var {color} $list-header-bg-color - * Background-color for list header rows (in grouped lists). - */ -/** - * @var {string} $list-header-gradient - * Gradient style for list header rows (in grouped lists). - */ -/** - * @var {measurement} $list-disclosure-size - * Default size (width/height) for disclosure icons. - */ -/** - * @var {measurement} $list-disclosure-round-size - * Default size (width/height) for disclosure icons in a list with a `round` ui. - */ -/** - * @var {measurement} $list-round-padding - * Default padding for lists with a `round` ui. - */ -/** - * Includes default list styles. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * Includes default form slider styles. - * - * @member Ext.field.Slider - */ -/** - * @var {color} $form-bg-color - * Default background-color for forms. - * - * @member Ext.form.Panel - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $form-field-bg-color - * Default background-color for form fields. - */ -/** - * @var {color} $form-light - * Light color for form fields, mostly used on field borders. - */ -/** - * @var {color} $form-dark - * Dark color for form fields, mostly used on labels/text. - */ -/** - * @var {measurement} $form-label-width - * Default width for form labels. - */ -/** - * @var {color} $form-label-background-color - * The default background color for labels - */ -/** - * @var {measurement} $form-field-height - * Default height for form fields. - */ -/** - * @var {measurement} $form-spacing - * Default spacing for form fields, used for padding, etc. - */ -/** - * @var {measurement} $form-textarea-height - * Default height for form textareas. - * - * @member Ext.field.TextArea - */ -/** - * @var {measurement} $form-thumb-size - * Default size of "thumbs" for form sliders/toggles. - * - * @member Ext.field.Slider - */ -/** - * @var {measurement} $form-toggle-size - * Thumb size minus padding for inset thumbs like in a Toggle element. - * - * @member Ext.field.Toggle - */ -/** - * @var {measurement} $form-fieldset-radius - * Default border-radius for form fieldsets. - * - * @member Ext.form.FieldSet - */ -/** - * @var {measurement} $form-slider-size - * Height of the slider "track." - * - * @member Ext.field.Slider - */ -/** - * Includes default form styles. - * - * @member Ext.form.Panel - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.Sheet - */ -/** - * @var {color} $sheet-bg-color - * Background-color for action sheets and message boxes. - */ -/** - * @var {color} $sheet-bg-gradient - * Background gradient style for action sheets and message boxes. - */ -/** - * @var {measurement} $sheet-button-spacing - * Vertical spacing between sheet buttons. - */ -/** - * @var {measurement} $sheet-padding - * Overall padding in a sheet. - */ -/** - * Includes default sheet styles (also required for message box). - */ -/** - * Includes default message box styles. - * - * @member Ext.MessageBox - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Ext.field.Field - */ -/** - * @var {color} $toolbar-input-bg - * Background-color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-color - * Text color for toolbar form fields. - */ -/** - * @var {measurement} $toolbar-input-height - * Text color for toolbar form fields. - */ -/** - * @var {color} $toolbar-input-border-color - * Border color for toolbar form fields. - */ -/** - * Includes default toolbar form field styles. - * - * @member Ext.tab.Bar - */ -/** - * @class Ext.LoadMask - */ -/** - * @var {color} $loading-spinner-color - * Background-color for the bars in the loading spinner. - */ -/** - * Includes default loading spinner styles (for dataviews). - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 4, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image { - text-align: center; -} -/* line 7, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-image img { - width: auto; - height: 100%; -} -/* line 13, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss */ -.x-img.x-img-background { - background-repeat: no-repeat; - background-position: center; - background-size: auto 100%; -} - -/** - * @class Global_CSS - * - * Global CSS variables and mixins of Sencha Touch. - */ -/** - * @var {boolean} $include-html-style - * Optionally remove included HTML styles/typography (for components with styleHtmlContent: true). - * Styles are scoped to .x-html. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-default-icons - * Optionally remove the default icon set which includes the following toolbar and tab bar icons: action, - * add, arrow_down, arrow_left, arrow_right, arrow_up, bookmarks, compose, delete, download, favorites, - * home, info, locate, maps, more, organize, refresh, reply, search, settings, star, team, time, trash, - * and user. Set to false to reduce CSS weight. - */ -/** - * @var {boolean} $include-form-sliders - * Decides if default HTML styles are included (for components with styleHtmlContent: true). Class is applied to .x-html. - */ -/** - * @var {boolean} $include-floating-panels - * Decides whether or not to include floating panels (useful to disable for iPhone applications which do not typically have floating menus). - */ -/** - * @var {boolean} $include-default-uis - * Decides whether or not to include the default UIs for all components. - */ -/** - * @var {boolean} $include-highlights=true - * Optionally disable all gradients, text-shadows, and box-shadows. Useful for CSS debugging, - * non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $include-border-radius - * Optionally disable all border-radius. Useful for CSS debugging, non-performant browsers, or minimalist designs. - */ -/** - * @var {boolean} $basic-slider - * Optionally remove CSS3 effects from the slider component for improved performance. - */ -/** - * @var {color} $base-color - * The primary color variable from which most elements derive their color scheme. - */ -/** - * @var {string} $base-gradient - * The primary gradient variable from which most elements derive their color scheme. - * @see background-gradient - */ -/** - * @var {font-family} $font-family - * The font-family to be used throughout the theme. - * @see background-gradient - */ -/** - * @var {color} $alert-color - * Color used for elements like badges, errors, and "decline" UIs (eg. on buttons). - */ -/** - * @var {color} $confirm-color - * Color used for elements like success messages, and "confirm" UIs (eg. on buttons). - */ -/** - * @var {color} $active-color - * Color used for elements like selected rows, "action" UIs (eg. on buttons) and certain overlays like the picker mask. - */ -/** - * @var {color} $neutral-color - * Color used for the neautral `ui` for Toolbars and Tabbars. - */ -/** - * @var {color} $page-bg-color - * Background color for fullscreen components. - */ -/** - * @var {measurement} $global-row-height - * The minimum row height for items like toolbars. - */ -/** - * @var {measurement} $global-list-height - * The minimum row height for items like toolbars. - */ -/** - * Background noise recipe - * - * This recipe use a sass function to generate a .png file - * - * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp - * @link https://github.com/DanielRapp/Noisy - * - * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch - * @link https://gist.github.com/1021332 - * - * Ported to a sass gem by Antti Salonen @antsa - * @link https://github.com/antsa/sassy_noise - * - * Mixin: background-noise - * Function: background_noise - * - * @author Daniel Rapp @DanielRapp - * @author Aaron Russell @aaronrussell - * @author Philipp Bosch @philippbosch - * @author Antti Salonen @antsa - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx - */ -/** - * - * @class Gradients - * @author David Kaneda http://www.davidkaneda.com/ - * - */ -/** - * Adds a background gradient into a specified selector. - * - * @include background-gradient(#444, 'glossy'); - * - * You can also use color-stops if you want full control of the gradient: - * - * @include background-gradient(#444, color-stops(#333, #222, #111)); - * - * @param {color} $bg-color - * The base color of the gradient. - * - * @param {string/list} $type - * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear: - * - * @include background-gradient(red, 'glossy'); - * - * It can also accept a list of color-stop values:; - * - * @include background-gradient(black, color-stops(#333, #111, #000)); - * - * @param {string} $direction - * The direction of the gradient. - */ -/** - * Blueprint grid background pattern - * - * @link http://lea.verou.me/css3patterns/#blueprint-grid - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Background overlay inspired by Google Chrome modal overlay - * - * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com - */ -/** - * Striped background pattern - * - * @link http://lea.verou.me/css3patterns/ - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin - */ -/** - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#tartan - * - * @author Marta Armada http://swwweet.com/ for the original pattern - * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin - */ -/** - * Carbon Fiber background pattern - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin - * - * @link http://lea.verou.me/css3patterns/ - * - */ -/** - * Striped background patterns - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#horizontal-stripes - * @link http://lea.verou.me/css3patterns/#vertical-stripes - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Cicada background pattern - * - * @link http://lea.verou.me/css3patterns/#cicada-stripes - * - * @author Randy Merril http://forthedeveloper.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Tablecloth background pattern - * - * @link http://lea.verou.me/css3patterns/#tablecloth - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Lined paper background pattern - * - * @link http://lea.verou.me/css3patterns/#lined-paper - * - * @author Sarah Backhouse http://www.jadu.net/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Madras background pattern - * - * Before compass 0.11.5, you need to add - * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms") - * To your configuration (config.rb) - * @see https://github.com/chriseppstein/compass/issues/401 - * - * @link http://lea.verou.me/css3patterns/#madras - * - * @author Divya Manian http://nimbupani.com/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * Checkerboard background pattern - * - * @link http://lea.verou.me/css3patterns/#checkerboard - * @link http://lea.verou.me/css3patterns/#diagonal-checkerboard - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Houndstooth background pattern - * - * @link http://lea.verou.me/css3patterns/#houndstooth - * - * @author Antoine Bernier http://abernier.name for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * Polkadot background pattern - * - * @link http://lea.verou.me/css3patterns/#polka-dot - * - * @author Lea Verou http://lea.verou.me/ for the original pattern - * @author Mason Wendell mason@canarypromo.com @canarymason for the sass mixin - */ -/** - * - * @class Color - * @author David Kaneda - http://www.davidkaneda.com - * - */ -/** - * Returns the brightness (out of 100) of a specified color. - * @todo explain why this is useful - * @param {color} $color The color you want the brightness value of - * @return {measurement} - */ -/** - * Returns the luminosity for a specified color - * @param {color} The color to check - * @return {measurement} - */ -/** - * Returns the contrast ratio between two colors - * @param {color1} The color to check - * @return {measurement} - */ -/** - * Colors the text of an element based on lightness of its background. - * - * .my-element { - * @include color-by-background(#fff); // Colors text black. - * } - * - * .my-element { - * @include color-by-background(#fff, 40%); // Colors text gray. - * } - * - * @param {color} $bg-color Background color of element. - * @param {percent} $contrast Contrast of text color to its background. - * - */ -/** - * @class Global_CSS - */ -/** - * Includes a base64-encoded icon for use within tab bars and buttons (With the component parameter iconMask: true). - * - * @include pictos-iconmask('attachment'); - * - * @param {string} $name The name of the icon to be included. This is to match the name of the icon file (located at resources/themes/images/default/pictos) without its extention (.png). - */ -/** - * Includes the default styles for toolbar buttons, mostly used as a helper function. - * - * @param {color} $bg-color Base color to be used for the button. - * @param {color} $type Gradient style for the button, will automatically use "recessed" when pressed. - */ -/** - * Adds a small text shadow (or highlight) to give the impression of beveled text. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds a small box shadow (or highlight) to give the impression of being beveled. - * - * @param {string} $type Either shadow or highlight, decides whether to apply a light shadow or dark. - */ -/** - * Adds basic styles to :before or :after pseudo-elements. - * - * .my-element:after { - * @include insertion(50px, 50px); - * } - * - * @param {measurement} $width Height of pseudo-element. - * @param {measurement} $height Height of pseudo-element. - * @param {measurement} $top Top positioning of pseudo-element. - * @param {measurement} $left Left positioning of pseudo-element. - * - */ -/** - * Makes an element stretch to its parent's bounds. - */ -/** - * Bevels the text based on its background. - * - * @param {color} $bg-color Background color of element. - * @see bevel-text - * - */ -/** - * Creates a background gradient for masked elements, based on the lightness of their background. - * - * @param {color} $bg-color Background color of element. - * @param {percent} $percent Contrast of the new gradient to its background. - * @param {percent} $style Gradient style of the gradient. - * @see background-gradient - * - */ -/** - * Makes the element text overflow to use ellipsis. - */ -/* line 3, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video { - height: 100%; - width: 100%; -} - -/* line 8, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video > * { - height: 100%; - width: 100%; - position: absolute; -} - -/* line 14, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -.x-video-ghost { - -webkit-background-size: 100% auto; - background: black url() center center no-repeat; -} - -/* line 19, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss */ -audio { - width: 100%; -} - -/* line 8, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel, -.x-msgbox, -.x-panel-body { - position: relative; -} - -/* line 15, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating, -.x-msgbox, -.x-form.x-floating { - padding: 6px; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em; - background-image: none; - background-color: #656565; -} -/* line 21, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating.x-floating-light, -.x-msgbox.x-floating-light, -.x-form.x-floating.x-floating-light { - background-image: none; - background-color: #cbcbcb; -} -/* line 26, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating .x-panel-inner, -.x-panel.x-floating > .x-body, -.x-msgbox .x-panel-inner, -.x-msgbox > .x-body, -.x-form.x-floating .x-panel-inner, -.x-form.x-floating > .x-body { - z-index: 1; - background-color: #fff; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 35, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock, -.x-msgbox > .x-dock, -.x-form.x-floating > .x-dock { - z-index: 1; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-panel.x-floating > .x-dock.x-sized, -.x-msgbox > .x-dock.x-sized, -.x-form.x-floating > .x-dock.x-sized { - margin: 6px; -} - -/* line 48, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor { - position: absolute; - overflow: hidden; -} -/* line 53, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-top { - margin-top: -0.68em; - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-bottom { - margin-left: -0.8155em; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-color: #656565; -} -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-left { - margin-left: -0.6655em; - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} -/* line 82, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-anchor.x-anchor-right { - margin-top: -0.35em; - height: 1.631em; - width: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAjCAYAAABLuFAHAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAb5JREFUSA2dlb1OwzAQx+/y4VIJqRMTK2vXbkgVG0srdWJl7AMgwc6AxMjAExQxMVSgssADdEXiDTqxUAmRxkl8nNMGuW2aOImU+Gzf7/5nnxVDKJMwiKITIoKqL4QyJg7wHYbUrgo7kD7UAlRPPwAHy77ddwVrZzoSUfLMRtMOBTDgFOlImTyy5doE2IQBEHpSqut6sKaQLsNIDcsCoN7tfCdMSFG/0XBf8udZYzesEZwDOcdCwEdegO01r3lRi0BNggAO14ZXnRKYtZEOXU9N2H9/M0ApvASozSUcsb1WQkuYMS4hV+DOVLeHU56GYawusgAlu525mW1awgGXcFwD1oEwQEi6NWHmCV4rrdlMPtUvPmGb7ll/mXYN5XTDznzfn1aGCeFK77TOoRJMgPcNz7n9T956zQRjIdwBg0lVeCp8t8tQkIG6LU2bCGdJnCqugRYwzhGc02YTZqZiZhcoo1SoBrv+IsXKROd7nveeqeS1Xt4gEN4I4TzkzpmDulQb78j2zlpddMsACxm/MShsYSNt/Gz4jj4E0sysyE5hPnZfoJw+O86LnLfm+G7+lVJ2bFM1/WCxiHvmQBX7D24MnWFZVIC2AAAAAElFTkSuQmCC') no-repeat; - -webkit-mask-size: 0.7em 1.631em; - background-color: #656565; -} - -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss */ -.x-floating.x-panel-light:after { - background-color: #cbcbcb; -} - -/* line 52, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - display: -webkit-box; - display: box; - -webkit-box-align: center; - box-align: center; - min-height: 1.8em; - padding: 0.3em 0.6em; - position: relative; - overflow: hidden; - -webkit-user-select: none; - z-index: 1; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-toolbar .x-button { - border: 1px solid #999999; - border-top-color: #a6a6a6; - color: black; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-back:before, .x-button.x-button-forward:before, .x-toolbar .x-button.x-button-back:before, .x-toolbar .x-button.x-button-forward:before { - background: #999999; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button, .x-button.x-button-back:after, .x-button.x-button-forward:after, .x-toolbar .x-button, .x-toolbar .x-button.x-button-back:after, .x-toolbar .x-button.x-button-forward:after { - background-image: none; - background-color: #cccccc; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f2f2f2), color-stop(3%, #d9d9d9), color-stop(100%, #bfbfbf)); - background-image: -webkit-linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); - background-image: linear-gradient(top, #f2f2f2, #d9d9d9 3%, #bfbfbf); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button .x-button-icon.x-icon-mask, .x-toolbar .x-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-button.x-button-pressing, .x-button.x-button-pressing:after, .x-button.x-button-pressed, .x-button.x-button-pressed:after, .x-button.x-button-active, .x-button.x-button-active:after, .x-toolbar .x-button.x-button-pressing, .x-toolbar .x-button.x-button-pressing:after, .x-toolbar .x-button.x-button-pressed, .x-toolbar .x-button.x-button-pressed:after, .x-toolbar .x-button.x-button-active, .x-toolbar .x-button.x-button-active:after { - background-image: none; - background-color: #c4c4c4; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ababab), color-stop(10%, #b8b8b8), color-stop(65%, #c4c4c4), color-stop(100%, #c6c6c6)); - background-image: -webkit-linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); - background-image: linear-gradient(top, #ababab, #b8b8b8 10%, #c4c4c4 65%, #c6c6c6); -} -/* line 66, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon { - width: 2.1em; - height: 2.1em; - background-repeat: no-repeat; - background-position: center; - display: block; -} -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button .x-button-icon.x-icon-mask { - width: 1.1em; - height: 1.1em; - -webkit-mask-size: 1.1em; -} -/* line 80, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-item-disabled .x-button-label, .x-button.x-item-disabled .x-hasbadge .x-badge, .x-hasbadge .x-button.x-item-disabled .x-badge, .x-button.x-item-disabled .x-button-icon { - opacity: .5; -} - -/* line 86, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-round { - -webkit-border-radius: 0.9em; - border-radius: 0.9em; -} - -/* line 92, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left, .x-icon-align-right { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} - -/* line 95, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top, .x-iconalign-bottom { - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 98, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom, .x-iconalign-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} - -/* line 101, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-center { - -webkit-box-pack: center; - box-pack: center; -} - -/* line 104, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-left .x-button-label, .x-iconalign-left .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-left .x-badge { - margin-left: 0.3em; -} - -/* line 107, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-right .x-button-label, .x-iconalign-right .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-right .x-badge { - margin-right: 0.3em; -} - -/* line 110, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-top .x-button-label, .x-iconalign-top .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-top .x-badge { - margin-top: 0.3em; -} - -/* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-iconalign-bottom .x-button-label, .x-iconalign-bottom .x-hasbadge .x-badge, .x-hasbadge .x-iconalign-bottom .x-badge { - margin-bottom: 0.3em; -} - -/* line 118, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-label, .x-hasbadge .x-badge { - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-align: center; - box-align: center; - white-space: nowrap; - text-overflow: ellipsis; - text-align: center; - font-weight: bold; - line-height: 1.2em; - display: block; - overflow: hidden; -} - -/* line 131, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button { - margin: 0 0.2em; - padding: 0.3em 0.6em; -} -/* line 135, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge { - font-size: .7em; -} -/* line 139, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-toolbar .x-button .x-button-label, .x-toolbar .x-button .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button .x-badge, .x-toolbar .x-button .x-hasbadge .x-badge { - line-height: 1.6em; -} - -/* line 144, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small, .x-toolbar .x-button-small { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - padding: 0.2em 0.4em; - min-height: 0; -} -/* line 149, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-label, .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-button-small .x-badge, .x-toolbar .x-button-small .x-button-label, .x-toolbar .x-button-small .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button-small .x-badge { - font-size: .6em; -} -/* line 153, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon, .x-toolbar .x-button-small .x-button-icon { - width: .75em; - height: .75em; -} -/* line 157, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-small .x-button-icon.x-icon-mask, .x-toolbar .x-button-small .x-button-icon.x-icon-mask { - -webkit-mask-size: .75em; -} - -/* line 175, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, .x-button-back { - position: relative; - overflow: visible; - height: 1.7em; - z-index: 1; -} -/* line 180, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, .x-button-back:before, .x-button-back:after { - content: ""; - position: absolute; - width: 0.80717em; - height: 1.8em; - top: -0.1em; - left: auto; - z-index: 2; - -webkit-mask: 0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat; - -webkit-mask-size: 0.80717em 1.8em; - overflow: hidden; -} - -/* line 190, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back, -.x-toolbar .x-button-back { - margin-left: 0.87217em; - padding-left: .4em; -} -/* line 193, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:before, -.x-toolbar .x-button-back:before { - left: -0.72717em; -} -/* line 196, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-back:after, -.x-toolbar .x-button-back:after { - left: -0.68217em; -} - -/* line 202, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward, -.x-toolbar .x-button-forward { - margin-right: 0.88217em; - padding-right: .4em; -} -/* line 205, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, .x-button-forward:after, -.x-toolbar .x-button-forward:before, -.x-toolbar .x-button-forward:after { - -webkit-mask: -0.125em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat; -} -/* line 208, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:before, -.x-toolbar .x-button-forward:before { - right: -0.72717em; -} -/* line 211, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button-forward:after, -.x-toolbar .x-button-forward:after { - right: -0.68217em; -} - -/* line 219, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain, -.x-toolbar .x-button.x-button-plain { - background: none; - border: 0 none; - -webkit-border-radius: none; - border-radius: none; - min-height: 0; - text-shadow: none; - line-height: auto; - height: 1.9em; - padding: 0em 0.5em; -} -/* line 229, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain > *, -.x-toolbar .x-button.x-button-plain > * { - overflow: visible; -} -/* line 233, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain .x-button-icon, -.x-toolbar .x-button.x-button-plain .x-button-icon { - -webkit-mask-size: 1em; - width: 1em; - height: 1em; -} -/* line 239, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing, .x-button.x-button-plain.x-button-pressed, -.x-toolbar .x-button.x-button-plain.x-button-pressing, -.x-toolbar .x-button.x-button-plain.x-button-pressed { - background: none; - background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 24, color-stop(0%, rgba(236, 240, 225, 0.7)), color-stop(100%, rgba(236, 240, 225, 0))); - background-image: -webkit-radial-gradient(rgba(236, 240, 225, 0.7), rgba(236, 240, 225, 0) 24px); - background-image: radial-gradient(rgba(236, 240, 225, 0.7), rgba(236, 240, 225, 0) 24px); -} -/* line 244, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressing .x-button-icon.x-button-mask, -.x-toolbar .x-button.x-button-plain.x-button-pressed .x-button-icon.x-button-mask { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(10%, #f2f2f2), color-stop(65%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); - background-image: linear-gradient(top, #e6e6e6, #f2f2f2 10%, #ffffff 65%, #ffffff); -} - -/* line 251, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button { - margin: 0; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 257, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-first { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} -/* line 260, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button.x-last { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} -/* line 265, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-segmentedbutton .x-button:not(.x-first) { - border-left: 0; -} - -/* line 276, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge { - overflow: visible; -} -/* line 278, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss */ -.x-hasbadge .x-badge { - -webkit-background-clip: padding; - background-clip: padding-box; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; - padding: 0.1em 0.3em; - z-index: 2; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0.1em; - overflow: hidden; - color: #ffcccc; - border: 1px solid #990000; - position: absolute; - width: auto; - min-width: 2em; - line-height: 1.2em; - font-size: .6em; - right: 0px; - top: -.2em; - max-width: 95%; - background-image: none; - background-color: #cc0000; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(3%, #e60000), color-stop(100%, #b30000)); - background-image: -webkit-linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - background-image: linear-gradient(top, #ff1a1a, #e60000 3%, #b30000); - display: inline-block; -} - -/* line 36, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar { - padding: 0 0.2em; - position: relative; -} -/* line 46, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-top { - border-bottom: 0.1em solid; -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-bottom { - border-top: 0.1em solid; -} -/* line 54, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-left { - width: 7em; - height: auto; - padding: 0.2em; - border-right: 0.1em solid; -} -/* line 61, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-toolbar.x-docked-right { - width: 7em; - height: auto; - padding: 0.2em; - border-left: 0.1em solid; -} - -/* line 69, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title { - line-height: 2.1em; - font-size: 1.2em; - text-align: center; - font-weight: bold; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: 0 0.3em; - padding: 0 0.3em; - max-width: 100%; -} -/* line 81, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 103, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss */ -.x-navigation-bar .x-container { - overflow: visible; -} - -/* line 43, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner .x-input-el, -.x-field-select .x-input-el { - -webkit-text-fill-color: #000; - -webkit-opacity: 1; -} - -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-spinner.x-item-disabled .x-input-el, -.x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: currentcolor; -} - -/* line 54, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-el { - -webkit-text-fill-color: #fff; -} - -/* line 58, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-input-el { - -webkit-text-fill-color: rgba(255, 255, 255, 0.6); -} - -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field-container { - padding: 0 0.3em; -} -/* line 67, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field { - width: 13em; - margin: .5em; - min-height: 0; - border-bottom: 0; - background: transparent; -} -/* line 74, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field .x-clear-icon { - background-size: 50% 50%; - right: -0.8em; - margin-top: -1.06em; -} -/* line 81, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-input { - padding-right: 1.6em !important; -} -/* line 89, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-textarea .x-component-outer, -.x-toolbar .x-field-text .x-component-outer, -.x-toolbar .x-field-number .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - background-color: white; - -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; - box-shadow: rgba(0, 0, 0, 0.5) 0 0.1em 0 inset, rgba(0, 0, 0, 0.5) 0 -0.1em 0 inset, rgba(0, 0, 0, 0.5) 0.1em 0 0 inset, rgba(0, 0, 0, 0.5) -0.1em 0 0 inset, rgba(0, 0, 0, 0.5) 0 0.15em 0.4em inset; -} -/* line 99, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-label { - background: transparent; - border: 0; - padding: 0; - line-height: 1.4em; -} -/* line 106, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field { - height: 1.6em; - color: #6e6e6e; - background: transparent; - min-height: 0; - -webkit-appearance: none; - padding: 0em 0.3em; - margin: 0; -} -/* line 115, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-form-field:focus { - color: black; -} -/* line 122, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer, -.x-toolbar .x-field-search .x-component-outer { - -webkit-border-radius: 0.8em; - border-radius: 0.8em; -} -/* line 128, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-search .x-field-input { - background-position: 0.5em 50%; -} -/* line 133, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - -webkit-box-shadow: none; -} -/* line 136, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-form-field { - height: 1.4em; -} -/* line 141, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select { - background: transparent; -} -/* line 145, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:after { - right: .4em; -} -/* line 151, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after { - opacity: .6; -} -/* line 157, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-component-outer:before { - width: 3em; - border-left: none; - -webkit-border-top-right-radius: 0.8em; - border-top-right-radius: 0.8em; - -webkit-border-bottom-right-radius: 0.8em; - border-bottom-right-radius: 0.8em; - -webkit-mask: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC'); - -webkit-mask-position: right top; - -webkit-mask-repeat: repeat-y; - -webkit-mask-size: 3em 0.05em; -} -/* line 172, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-toolbar .x-field-select .x-input-text { - color: #fff; -} - -/* line 178, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss */ -.x-android .x-field-search .x-field-input { - padding-left: 0.2em !important; - padding-right: 2.2em !important; -} - -/* line 29, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-wrapper { - -webkit-box-pack: end !important; - box-pack: end !important; - pointer-events: none; -} - -/* line 35, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-vertical { - width: 1.1em; - -webkit-box-orient: vertical; - box-orient: vertical; - margin-right: 8px; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-horizontal { - height: 1.1em; - -webkit-box-orient: horizontal; - box-orient: horizontal; - margin-bottom: 8px; -} - -/* line 47, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar { - pointer-events: auto; - z-index: 2; - padding: 0.3em 0; - min-height: 0 !important; - height: auto !important; - -webkit-box-flex: 0 !important; -} -/* line 55, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar > div { - color: #a5a5a5; - font-size: 0.6em; - text-align: center; - line-height: 1.1em; - font-weight: bold; - display: block; -} - -/* line 66, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-phone.x-landscape .x-indexbar > div { - font-size: 0.38em; - line-height: 1em; -} - -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss */ -.x-indexbar-pressed { - -webkit-border-radius: 0.55em; - border-radius: 0.55em; - background-color: rgba(163, 143, 143, 0.8); -} - -/* line 84, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list { - position: relative; - background-color: #f7f7f7; - overflow: hidden; -} -/* line 89, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-inner { - width: 100% !important; -} -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-disclosure { - overflow: visible; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNkNCM0JGNTZFMjI2ODExQkNGQjkwMzk3MDc3MkZFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3M0MzQUU1QUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3M0MzQUU1OUFDQkQxMURGOEQ2MUVDMjM0MzY2NTBDQSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU3Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU2Q0IzQkY1NkUyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIi8+IDwvcmRmOkRlc2NyaXB0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') no-repeat; - -webkit-mask-size: 1.7em; - background-image: none; - background-color: #7e983a; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a5c15e), color-stop(3%, #8daa42), color-stop(100%, #6e8533)); - background-image: -webkit-linear-gradient(top, #a5c15e, #8daa42 3%, #6e8533); - background-image: linear-gradient(top, #a5c15e, #8daa42 3%, #6e8533); - width: 1.7em; - height: 1.7em; - margin: 0.5em 0.5em 0 0; -} -/* line 103, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list.x-list-indexed .x-list-disclosure { - margin-right: 1.8em; -} -/* line 107, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-item-selected .x-list-disclosure { - background: white none; -} -/* line 111, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-scrolldock-hidden { - display: none; -} -/* line 115, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item { - position: absolute !important; - left: 0; - top: 0; - color: black; - width: 100%; -} -/* line 123, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-pressed .x-dock-horizontal { - background: #ecf0e1 none; -} -/* line 128, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item.x-item-selected .x-dock-horizontal { - background-image: none; - background-color: #798d45; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a0b669), color-stop(3%, #889e4d), color-stop(100%, #6a7c3d)); - background-image: -webkit-linear-gradient(top, #a0b669, #889e4d 3%, #6a7c3d); - background-image: linear-gradient(top, #a0b669, #889e4d 3%, #6a7c3d); - color: white; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 134, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list .x-list-item > .x-dock { - height: auto; -} - -/* line 140, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item-body { - min-height: 46px; - padding: 0.65em 0.8em; -} - -/* line 145, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-header-swap { - position: absolute; - left: 0; - width: 100%; - z-index: 2 !important; -} - -/* line 152, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-ios .x-list-header-swap { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -/* line 156, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-item .x-list-header { - display: none; -} - -/* line 160, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-grouped .x-list-header-wrap .x-list-header { - position: absolute; - top: 0; - left: 0; - width: 100%; - display: block; -} - -/* line 169, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 26px; -} -/* line 174, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-header-wrap .x-item-header, -.x-list-normal .x-list-header { - background-image: none; - background-color: #fefefe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #f3f0f0)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #f3f0f0); - color: #b9aaaa; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - border-top: 1px solid #fefefe; - border-bottom: 1px solid #d0c6c6; - font-weight: bold; - font-size: 0.8em; - padding: 0.2em 1.02em; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 202, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item .x-dock-horizontal { - border-top: 1px solid #dedede; -} -/* line 206, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal { - border-bottom: 1px solid #dedede; -} -/* line 214, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal { - border-top-color: #ecf0e1; - background-color: #ecf0e1; -} -/* line 219, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal { - border-top-color: #798d45; - border-bottom: 1px solid #4d5a2c; -} - -/* line 227, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-normal.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal { - border-top: 0; -} - -/* line 232, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 31px; -} -/* line 236, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-scroll-view { - background-color: #eeeeee !important; -} -/* line 241, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header-swap { - padding-right: 13px; -} -/* line 245, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-inner .x-scroll-container { - top: 13px; - left: 13px; - bottom: 13px; - right: 13px; - width: auto !important; - height: auto !important; -} -/* line 254, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-disclosure { - overflow: hidden; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.5em; - background-image: none; - background-color: #e5e5e5; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f1f1f1), color-stop(100%, #d8d8d8)); - background-image: -webkit-linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - background-image: linear-gradient(top, #ffffff, #f1f1f1 3%, #d8d8d8); - width: 1.5em; - height: 1.5em; - margin: 0.5em 0.5em 0 0; -} -/* line 264, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-header { - color: #777; - font-size: 1em; - font-weight: bold; - padding-left: 26px; - line-height: 1.7em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(30%, rgba(238, 238, 238, 0.9)), color-stop(100%, rgba(238, 238, 238, 0.4))); - background-image: -webkit-linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); - background-image: linear-gradient(top, #eeeeee, rgba(238, 238, 238, 0.9) 30%, rgba(238, 238, 238, 0.4)); -} -/* line 274, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container { - padding: 13px 13px 0 13px; -} -/* line 277, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round .x-list-container .x-list-header { - padding-left: 13px; - background-image: none; -} -/* line 285, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal, .x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - background: #f7f7f7; -} -/* line 295, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 299, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-ungrouped .x-list-item:last-child { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - border-width: 1px; - margin-bottom: 13px; -} -/* line 310, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 314, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - border: 1px solid #dedede; - border-width: 1px 1px 0 1px; - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 321, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap { - background: transparent; -} -/* line 324, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13px; -} -/* line 329, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #dedede; - background: #f7f7f7; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 340, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-inlineblock .x-dataview-item, .x-dataview-inlineblock .x-data-item { - display: inline-block !important; -} - -/* line 346, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-dataview-nowrap .x-dataview-container { - white-space: nowrap !important; -} - -/* line 352, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-inlineblock .x-list-item { - display: inline-block !important; -} - -/* line 358, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-inner { - width: auto; -} -/* line 361, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss */ -.x-list-nowrap .x-list-container { - white-space: nowrap !important; -} - -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -html, body { - width: 100%; - height: 100%; -} - -@-webkit-keyframes x-paint-monitor-helper { - /* line 47, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - from { - zoom: 1; - } - - /* line 48, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ - to { - zoom: 1; - } -} - -/* line 51, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitored { - position: relative; -} - -/* line 55, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor { - width: 0 !important; - height: 0 !important; - visibility: hidden; -} -/* line 59, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.cssanimation { - -webkit-animation-duration: 0.0001ms; - -webkit-animation-name: x-paint-monitor-helper; -} -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange { - overflow: hidden; -} -/* line 65, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-paint-monitor.overflowchange::after { - content: ""; - display: block; - width: 1px !important; - height: 1px !important; -} - -/* line 74, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitored { - position: relative; -} - -/* line 78, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - visibility: hidden; - z-index: -9999; - overflow: hidden; -} -/* line 87, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors > * { - width: 100%; - height: 100%; - overflow: hidden; -} -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.shrink::after { - content: ""; - display: block; - width: 200%; - height: 200%; - min-width: 1px; - min-height: 1px; -} -/* line 101, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.scroll > *.expand::after { - content: ""; - display: block; - width: 100000px; - height: 100000px; -} -/* line 110, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.shrink > * { - width: 100%; - height: 100%; -} -/* line 116, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-monitors.overflowchanged > *.expand > * { - width: 200%; - height: 200%; -} - -/* line 130, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-body { - position: relative; - z-index: 0; -} - -/* line 135, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-inner, .x-body { - width: 100%; - height: 100%; -} - -/* line 140, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock, .x-dock-body { - height: 100%; -} - -/* line 144, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-sized { - position: relative; -} - -/* line 148, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container { - display: -webkit-box; - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 151, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-stretched.x-container > .x-inner, .x-stretched.x-container > .x-body, .x-stretched.x-container > .x-body > .x-inner { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; - -webkit-box-orient: vertical; - box-orient: vertical; -} - -/* line 158, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-innerhtml { - width: 100%; -} - -/* line 162, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card { - position: relative; - overflow: hidden; -} - -/* line 167, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item-container { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 171, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-card-item { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 175, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item, .x-layout-newcard-item > * { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 179, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-newcard-item:not(.active) { - display: none; -} - -/* line 183, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit.x-stretched > .x-layout-fit-item { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 188, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit { - position: relative; -} - -/* line 193, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-sized { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 196, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-fit-item.x-unsized { - width: 100%; - height: 100%; -} - -/* line 202, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center, .x-centered { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: -webkit-box; - -webkit-box-align: center; - box-align: center; - -webkit-box-pack: center; - box-pack: center; -} -/* line 207, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > *, .x-centered > * { - position: relative; -} -/* line 210, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-center > .x-floating, .x-centered > .x-floating { - position: relative !important; -} - -/* line 215, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-floating { - position: absolute; -} - -/* line 219, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock { - display: -webkit-box; -} -/* line 222, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized, .x-dock.x-sized > .x-dock-body > *, .x-dock.x-sized > .x-dock-body > .x-body > .x-inner { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 225, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock .x-dock-body { - display: -webkit-box; - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 229, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-sized > .x-dock-body { - position: relative; -} -/* line 233, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body, .x-dock.x-stretched > .x-dock-body { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 235, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-unsized > .x-dock-body > *, .x-dock.x-stretched > .x-dock-body > * { - -webkit-box-flex: 1; - box-flex: 1; -} -/* line 240, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 243, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal { - -webkit-box-orient: horizontal; - box-orient: horizontal; -} -/* line 245, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item { - display: -webkit-box; -} -/* line 248, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-inner, .x-dock.x-dock-horizontal > .x-dock-item.x-sized > .x-body { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 252, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 254, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-dock.x-dock-horizontal > .x-dock-item.x-unsized > * { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 301, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box { - display: -webkit-box; -} -/* line 303, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal { - -webkit-box-orient: horizontal !important; -} -/* line 305, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-horizontal > .x-layout-box-item.x-flexed { - width: 0 !important; -} -/* line 309, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical { - -webkit-box-orient: vertical; - box-orient: vertical; -} -/* line 311, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-vertical > .x-layout-box-item.x-flexed { - height: 0 !important; -} -/* line 315, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box > .x-layout-box-item { - display: -webkit-box !important; -} -/* line 318, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-start { - -webkit-box-align: start; - box-align: start; -} -/* line 321, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-center { - -webkit-box-align: center; - box-align: center; -} -/* line 324, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-end { - -webkit-box-align: end; - box-align: end; -} -/* line 327, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-align-stretch { - -webkit-box-align: stretch; - box-align: stretch; -} -/* line 330, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-start { - -webkit-box-pack: start; - box-pack: start; -} -/* line 333, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-center { - -webkit-box-pack: center; - box-pack: center; -} -/* line 336, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-end { - -webkit-box-pack: end; - box-pack: end; -} -/* line 339, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box.x-pack-justify { - -webkit-box-pack: justify; - box-pack: justify; -} - -/* line 345, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-box-item.x-sized > .x-inner, .x-layout-box-item.x-sized > .x-body, .x-layout-box-item.x-sized > .x-dock-outer { - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 350, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float { - overflow: hidden; -} -/* line 352, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float > .x-layout-float-item { - float: left; -} -/* line 356, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-layout-float.x-direction-right > .x-layout-float-item { - float: right; -} - -/* line 362, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner { - display: table !important; - width: 100% !important; - height: 100% !important; -} -/* line 367, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-inner.x-fixed-layout { - table-layout: fixed !important; -} - -/* line 372, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-row { - display: table-row !important; -} - -/* line 376, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-table-cell { - display: table-cell !important; - vertical-align: middle; -} - -/* line 381, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable { - position: absolute; - top: 100% !important; - left: 100% !important; - overflow: visible !important; - z-index: 1; -} -/* line 387, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable::before { - content: ""; - display: block; - position: absolute; - top: 100%; - left: 100%; - width: 100%; - height: 100%; - visibility: hidden; -} - -/* line 399, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container { - overflow: hidden; - width: auto; - height: auto; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -/* line 402, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-translatable-container::before { - content: ""; - display: block; - width: 300%; - height: 300%; - visibility: hidden; -} - -/* line 411, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector { - visibility: hidden; - position: absolute; - left: 0; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - overflow: hidden; -} - -/* line 422, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector > * { - visibility: hidden; -} - -/* line 426, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-shrink > * { - width: 200%; - height: 200%; -} - -/* line 431, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-size-change-detector-expand > * { - width: 100000px; - height: 100000px; -} - -/* line 436, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-view { - position: relative; - display: block; - overflow: hidden; -} - -/* line 442, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-container { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 448, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-scroller { - position: absolute; - min-width: 100%; - min-height: 100%; - width: auto !important; - height: auto !important; -} - -/* line 456, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-ios .x-scroll-scroller { - -webkit-transform: translate3d(0, 0, 0); -} - -/* line 460, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-stretcher { - position: absolute; - visibility: hidden; -} - -/* line 465, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid-wrapper { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 471, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid { - display: table; - width: 100%; - height: 100%; -} -/* line 476, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * { - display: table-row; -} -/* line 480, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > * > * { - display: table-cell; -} -/* line 484, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :first-child { - width: 100%; - height: 100%; -} -/* line 489, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :first-child > :nth-child(2) { - padding: 3px 3px 0 0; -} -/* line 493, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-grid > :nth-child(2) > :first-child { - padding: 0 0 3px 3px; -} - -/* line 498, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar { - position: relative; - overflow: hidden; -} - -/* line 503, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-stretcher { - position: absolute; - visibility: hidden; - width: 100%; - height: 100%; -} - -/* line 510, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x { - width: 100%; -} -/* line 513, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x > .x-scroll-bar-stretcher { - width: 300%; -} -/* line 517, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-x.active { - height: 6px; -} - -/* line 522, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y { - height: 100%; -} -/* line 525, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y > .x-scroll-bar-stretcher { - height: 300%; -} -/* line 529, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-bar-y.active { - width: 6px; -} - -/* line 534, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator { - background: #333; - position: absolute; - z-index: 3; - opacity: 0.5; -} - -/* line 541, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-android-4 .x-scroll-indicator { - opacity: 1; -} - -/* line 545, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.default { - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 552, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-list-light .x-scroll-indicator, -.x-dataview-light .x-scroll-indicator { - background: #fff; - opacity: 1; -} - -/* line 558, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-x { - height: 100%; -} - -/* line 562, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator-y { - width: 100%; -} - -/* line 566, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform { - background: none; -} -/* line 569, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > * { - position: absolute; - background-color: #333; -} -/* line 574, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform > :nth-child(2) { - -webkit-transform-origin: 0% 0%; - background: none; - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA); -} -/* line 581, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > * { - background-color: #eee; -} -/* line 585, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-light > :nth-child(2) { - content: url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA); -} -/* line 591, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > * { - width: 100%; -} -/* line 595, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :first-child { - height: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; -} -/* line 600, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :nth-child(2) { - height: 1px; -} -/* line 604, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-y > :last-child { - height: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} -/* line 611, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > * { - height: 100%; -} -/* line 615, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :first-child { - width: 3px; - -webkit-border-top-left-radius: 3px; - border-top-left-radius: 3px; - -webkit-border-bottom-left-radius: 3px; - border-bottom-left-radius: 3px; -} -/* line 620, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :nth-child(2) { - width: 1px; -} -/* line 623, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss */ -.x-scroll-indicator.csstransform.x-scroll-indicator-x > :last-child { - width: 3px; - -webkit-border-top-right-radius: 3px; - border-top-right-radius: 3px; - -webkit-border-bottom-right-radius: 3px; - border-bottom-right-radius: 3px; -} - -/* line 134, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container { - background-color: #eeeeee; -} -/* line 137, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form .x-scroll-container > .x-inner { - padding: 1em; -} - -/* line 144, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label { - text-shadow: white 0 1px 1px; - color: #333333; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; - padding: 0.6em; - display: none !important; - background-color: #f7f7f7; -} -/* line 151, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label span { - font-size: .8em; - font-weight: bold; -} -/* line 156, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-label-nowrap .x-form-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 162, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field { - display: -webkit-box; - display: box; - min-height: 2.5em; - background: #fff; -} -/* line 167, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input { - position: relative; - min-width: 3.7em; -} -/* line 173, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field .x-field-input, -.x-field .x-input-el { - width: 100%; -} -/* line 178, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field.x-field-labeled .x-form-label { - display: block !important; -} -/* line 183, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field:last-child { - border-bottom: 0; -} - -/* line 190, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left .x-component-outer, -.x-label-align-right .x-component-outer { - -webkit-box-flex: 1; - box-flex: 1; -} - -/* line 197, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; -} -/* line 203, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; -} - -/* line 213, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 217, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:first-child .x-form-label { - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 222, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child { - border-bottom: 0; -} -/* line 225, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-right:last-child .x-form-label { - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 235, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-left, -.x-label-align-right { - -webkit-box-orient: horizontal !important; - box-orient: horizontal !important; -} - -/* line 240, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top, -.x-label-align-bottom { - -webkit-box-orient: vertical !important; - box-orient: vertical !important; -} - -/* line 249, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top:first-child .x-form-label { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 255, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-top .x-component-outer { - position: relative; -} - -/* line 260, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom { - -webkit-box-direction: reverse; - box-direction: reverse; -} -/* line 264, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-label-align-bottom:last-child .x-form-label { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 270, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-input-el { - padding: .4em; - min-height: 2.5em; - display: block; - border-width: 0; - background: transparent; - -webkit-appearance: none; -} - -/* line 279, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-mask { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -/* line 286, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-required label:after, -.x-field-required .x-form-label:after { - content: "*"; - display: inline; -} - -/* line 294, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled label:after, -.x-item-disabled .x-form-label:after { - color: #666666 !important; -} - -/* line 301, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-textarea textarea { - min-height: 6em; - padding-top: .5em; -} - -/* line 313, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-checkmark-base, .x-field-checkbox .x-input-el:after, .x-field-checkbox .x-input-el:checked:after, .x-select-overlay .x-item-selected .x-list-item-inner:before, .x-select-overlay .x-item-selected .x-list-item-inner:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAE+klEQVRoBe2aS28URxRGsY0h2FmwCQuEWLHjvUNgZAQ4PMwrEkIRIGEgySKwB8QvYIvEP+ANO0CwsJAA88wGBEKBZJUVQkJCQrwJ5nxN31Z5pnpc7e4ZT9vT0peqqanquqfurVvlIW3Dw8NTJtPTPplgxdoCnugeb3m45eEJtgJTJwJPGw8cP8V6TfmC4/Z/H9uEAAZsIdqHZiMBn2UNbvigSw8M2AIAD6PtqBPpmYe+8t1NoL9GLfYf3bTKKhiWo9PoA9KV0dUgn/tRh8tXWg/Hnj0KUB8yz1JNnjXUuhFd264A/f0O7dKXpQ7EIiTPfkKuVyvrSlx3US+KPF26cMbwxeg8Gg3W4LWHFd6rUUepQprQnI/Rh9A25AtjmqseHVkK7w59UxpgYFdg7wH0CwqFpWvyrKI23GZ7OWluwgqwOnqOobVoWh4Tm97DwCpBHUFp2TiUX3v5QVMnLQzMmqAsUVWWyta3UX/TAmOcwjjk6KmE830W7GbU0ZTAGKYEJdj3yAcQ2qYw1jmsG9e0KF8122UDw/SHwFX0EYWC+fpZGG/hPcn1sqk8jGHas+dQ6KXCB6o2g91IPfKsObZpgDGsqAT1hXdpz25A7QZqZU1gBsxFSh5zbEA9yniOU5R5PSvvCnYTSsLYtdkLTGf9uKdD/gS6gI6jPndgUXXe24OKSFAK4zsoSVA+G6uAGaC758/oBrIs+Zb6rbg9up35Xpa1jffpUqEEldezysbJ0VPLjhHADOpEfUiw2gtuUtAKDiGtYNXeqDWJ7zveYQnqM3V3nqx1s2s97xmRoLzzWqMgkLLaTVQJa0ZoJe+hXjRmaMYKVlslr2dlp5wgu4PsiTyszmg5qgVr0CqvoZW2WFlKxhV5gxJsdIMKtYH+Eew6yksoNLy0soJeFzqR+vEI9gx6h9wFzFoPSlA+25g3SlChnnUNU3grkWmxRg0n+ihBnUR5w9j2bCbPGjzzR3sgbc+6gL66TV4zkTHHEqSfZSzr+94V0mbzKUF1GkSWknG5QktGyoj7qBdVeZo2S1Ch2yUNXOMVUcEJyrcQjOeP4vzQCu9BpBtOck5T70HybN4w1iJcR7ouem9QPjhfG+On7EBPUNrKhrYLWp7+FS1FCjtdKvJ6VvM/Q9o2uWC1AHq60QB6hELh0voJ+im6iHReF+FZwe5HP/g8lrXNzuEfeeFu9C9Kg8nSrr9lBZ9ljK/v37xjL5qRFSytf3K15KXy9EH0D/JN3ui2Qj1rC5AAq4FnJvoDPUSNBnTnUy4YQF1maFHlCOAYuouJFN6PkWtEo+ryrH5sL2TPVi5UFXAMrfDegxrtae3ZfWh6paFFffYCx9BKZLtQo/a0YLXIhSUo3yKlAsfQ8vSBBkALtrCjxwdqbTWBY2glst9REee0Lw/ULUEZpFuOChxD1yuRybNbUV0SlAtq9SDgGFp7ushEJlhdKuqWoAzSLYOBHeidGPkc+cIztE2wA6iuCcoFtXom4Bha4f0nGmv2FqyOnoaFscFG9rsfQusYq0T2G8qayASrbdEdOlfR/TJ72AzAaHla5/QD9BnVCucvfK/fjZXtx8WzZneu/+WBf53XOb0G6XetHjQXyfv2vKLyH7qLLqMhJn5DOW5PLmBZDfRUilloGUoD/ovvXgIrT4/rkxt4XK0fw+TtYxhT6iEt4FK7L8D4locDFqnUXSadh78Bx5bEl2CLG+8AAAAASUVORK5CYII='); - margin-top: -.7em; -} - -/* line 322, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-radiomark-base, .x-field-radio .x-input-el:before, .x-field-radio .x-input-el:after { - content: ""; - position: absolute; - width: 1.4em; - height: 1.4em; - top: 50%; - left: auto; - right: 1.1em; - margin-top: -0.7em; - -webkit-mask-size: 1.4em; - -webkit-mask-image: url('data:image/png;base64,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'); -} - -/* line 330, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el { - position: relative; -} -/* line 332, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:after { - background-color: #dddddd; -} -/* line 335, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-checkbox .x-input-el:checked:after { - background-color: #798d45; -} - -/* line 340, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el { - position: relative; -} -/* line 342, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:before { - background-color: #d0d0d0; -} -/* line 345, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:after { - background-color: #dddddd; - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 349, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-radio .x-input-el:checked:before { - background-color: #798d45; -} - -/* line 356, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:checked:before { - background: #b5bda0; -} -/* line 360, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-radio .x-input-el:after { - background: #eee; -} -/* line 367, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled.x-field-checkbox .x-input-el:checked:after { - background: #b5bda0; -} - -/* line 376, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer { - display: -webkit-box; - display: box; -} -/* line 379, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-component-outer > * { - width: auto; -} -/* line 384, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input { - -webkit-box-flex: 1; -} -/* line 387, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input .x-input-el { - -webkit-text-fill-color: #000; - width: 100%; - text-align: center; -} -/* line 395, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-field-input input::-webkit-outer-spin-button, -.x-spinner .x-field-input input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} -/* line 402, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-input-el { - -webkit-text-fill-color: #B3B3B3; -} -/* line 406, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-item-disabled .x-spinner-button { - color: #aaaaaa !important; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button { - border: 1px solid #c4c4c4; - border-top-color: #d0d0d0; - color: #1e1e1e; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:before { - background: #c4c4c4; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button, .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #f7f7f7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #eaeaea)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #eaeaea); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active, .x-toolbar .x-spinner.x-item-disabled .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #efefef; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d5d5d5), color-stop(10%, #e2e2e2), color-stop(65%, #efefef), color-stop(100%, #f0f0f0)); - background-image: -webkit-linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); - background-image: linear-gradient(top, #d5d5d5, #e2e2e2 10%, #efefef 65%, #f0f0f0); -} -/* line 412, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button { - margin-top: .25em; - margin-bottom: .25em; - width: 2em; - padding: 0.23em 0 0.27em; - font-weight: bold; - text-align: center; - border: 1px solid #dddddd !important; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button { - border: 1px solid #b7b7b7; - border-top-color: #c4c4c4; - color: #111111; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-back:before, .x-spinner .x-spinner-button.x-button-forward:before, .x-toolbar .x-spinner .x-spinner-button.x-button-back:before, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:before { - background: #b7b7b7; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button, .x-spinner .x-spinner-button.x-button-back:after, .x-spinner .x-spinner-button.x-button-forward:after, .x-toolbar .x-spinner .x-spinner-button, .x-toolbar .x-spinner .x-spinner-button.x-button-back:after, .x-toolbar .x-spinner .x-spinner-button.x-button-forward:after { - background-image: none; - background-color: #eaeaea; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #f7f7f7), color-stop(100%, #dddddd)); - background-image: -webkit-linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); - background-image: linear-gradient(top, #ffffff, #f7f7f7 3%, #dddddd); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button .x-button-icon.x-icon-mask, .x-toolbar .x-spinner .x-spinner-button .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-spinner .x-spinner-button.x-button-pressing, .x-spinner .x-spinner-button.x-button-pressing:after, .x-spinner .x-spinner-button.x-button-pressed, .x-spinner .x-spinner-button.x-button-pressed:after, .x-spinner .x-spinner-button.x-button-active, .x-spinner .x-spinner-button.x-button-active:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing, .x-toolbar .x-spinner .x-spinner-button.x-button-pressing:after, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed, .x-toolbar .x-spinner .x-spinner-button.x-button-pressed:after, .x-toolbar .x-spinner .x-spinner-button.x-button-active, .x-toolbar .x-spinner .x-spinner-button.x-button-active:after { - background-image: none; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9c9c9), color-stop(10%, #d5d5d5), color-stop(65%, #e2e2e2), color-stop(100%, #e3e3e3)); - background-image: -webkit-linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); - background-image: linear-gradient(top, #c9c9c9, #d5d5d5 10%, #e2e2e2 65%, #e3e3e3); -} -/* line 424, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-down { - margin-left: .25em; -} -/* line 427, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner .x-spinner-button-up { - margin-right: .25em; -} -/* line 432, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-input-el { - text-align: left; -} -/* line 436, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: .5em; -} - -/* line 443, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-spinner-button { - padding: 0.4em 0 0.11em !important; -} - -/* line 450, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-item-label { - height: 2.6em; -} -/* line 454, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-list-label { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - display: block; -} -/* line 460, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-label { - margin-right: 2.6em; -} -/* line 465, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:before { - background-color: rgba(0, 0, 0, 0.3); - margin-top: -.8em; -} -/* line 470, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-select-overlay .x-item-selected .x-list-item-inner:after { - background-color: #dddddd; -} - -/* line 11, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider-field .x-component-outer, .x-toggle-field .x-component-outer { - padding: 0.6em; -} - -/* line 17, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider, -.x-toggle { - position: relative; - height: 2.2em; - min-height: 0; - min-width: 0; -} -/* line 23, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider > *, -.x-toggle > * { - position: absolute; - width: 100%; - height: 100%; -} - -/* line 30, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider.x-item-disabled { - opacity: .6; -} - -/* line 57, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb { - position: absolute; - height: 2.2em; - width: 2.2em; -} -/* line 63, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb:after { - content: ""; - position: absolute; - width: 1.85em; - height: 1.85em; - top: 0.175em; - left: 0.175em; - border: 1px solid #919191; - -webkit-border-radius: 0.925em; - border-radius: 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #eaeaea), color-stop(100%, #d0d0d0)); - background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - background-image: linear-gradient(top, #ffffff, #eaeaea 3%, #d0d0d0); - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging { - opacity: 1; -} -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-thumb.x-dragging:after { - background-image: none; - background-color: #d0d0d0; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(3%, #dddddd), color-stop(100%, #c4c4c4)); - background-image: -webkit-linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); - background-image: linear-gradient(top, #f7f7f7, #dddddd 3%, #c4c4c4); -} - -/* line 81, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-slider:after { - content: ""; - position: absolute; - width: auto; - height: 0.8em; - top: 0.7375em; - left: 0; - right: 0; - margin: 0 0.925em; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - border: 0.1em solid rgba(0, 0, 0, 0.1); - border-bottom: 0; - -webkit-box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - box-shadow: rgba(255, 255, 255, 0.7) 0 0.1em 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} - -/* line 93, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle { - width: 4.4em; - -webkit-border-radius: 1.1em; - border-radius: 1.1em; - overflow: hidden; - border: 1px solid #b7b7b7; - background-image: none; - background-color: #dddddd; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c4c4c4), color-stop(10%, #d0d0d0), color-stop(65%, #dddddd), color-stop(100%, #dedede)); - background-image: -webkit-linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - background-image: linear-gradient(top, #c4c4c4, #d0d0d0 10%, #dddddd 65%, #dedede); - -webkit-box-flex: 0; -} -/* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb.x-dragging { - opacity: 1; -} -/* line 117, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle .x-thumb:before { - top: 0.175em; -} - -/* line 146, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss */ -.x-toggle-on { - background-image: none; - background-color: #92cf00; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6e9c00), color-stop(10%, #80b500), color-stop(65%, #92cf00), color-stop(100%, #94d200)); - background-image: -webkit-linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); - background-image: linear-gradient(top, #6e9c00, #80b500 10%, #92cf00 65%, #94d200); -} - -/* line 482, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/* line 488, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-number input::-webkit-outer-spin-button, -.x-field-number input::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -/* line 495, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input { - position: relative; -} -/* line 498, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input:before { - content: ""; - position: absolute; - width: 0.86em; - height: 0.86em; - top: 50%; - left: 0.5em; - -webkit-mask-image: url('data:image/png;base64,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'); - -webkit-mask-size: .86em; - background-color: #ccc; - -webkit-mask-repeat: no-repeat; - margin-top: -0.43em; -} -/* line 506, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-search .x-field-input .x-form-field { - margin-left: 1.0em; -} - -/* line 516, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-input .x-clear-icon { - display: none; - background: url('data:image/png;base64,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') no-repeat; - background-position: center center; - background-size: 55% 55%; - width: 2.2em; - height: 2.2em; - margin: .5em; - margin-top: -1.1em; - position: absolute; - top: 50%; - right: -.5em; -} - -/* line 532, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-clear-icon { - display: block; -} -/* line 536, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-clearable .x-field-input { - padding-right: 2.2em; -} - -/* line 541, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-input-el { - -webkit-text-fill-color: #000; -} - -/* line 545, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-android .x-empty .x-input-el { - -webkit-text-fill-color: #A9A9A9; -} - -/* line 556, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-item-disabled .x-form-label span, -.x-item-disabled input, -.x-item-disabled .x-input-el, -.x-item-disabled .x-spinner-body, -.x-item-disabled select, -.x-item-disabled textarea, -.x-item-disabled .x-field-clear-container { - color: #b3b3b3; - -webkit-text-fill-color: #b3b3b3; - pointer-events: none; -} - -/* line 563, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset { - margin: 0 0 1.5em; -} -/* line 566, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-label { - border-top: 1px solid white; -} -/* line 570, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-form-fieldset-inner { - border: 1px solid #dddddd; - background: #fff; - padding: 0; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - overflow: hidden; -} -/* line 579, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field { - border-bottom: 1px solid #dddddd; - background: transparent; -} -/* line 583, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:first-child { - -webkit-border-top-left-radius: 0.4em; - border-top-left-radius: 0.4em; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; -} -/* line 589, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset .x-field:last-child { - border-bottom: 0; - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; -} - -/* line 599, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title { - text-shadow: white 0 1px 1px; - color: #333333; - margin: 1em 0.7em 0.3em; - color: #333333; - font-weight: bold; -} -/* line 605, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-title .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/* line 610, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-form-fieldset-instructions { - text-shadow: white 0 1px 1px; - color: #333333; - color: gray; - margin: 1em 0.7em 0.3em; - font-size: .8em; - text-align: center; -} - -/* line 619, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-selectmark-base, .x-field-select .x-component-outer:after { - content: ""; - position: absolute; - width: 1em; - height: 1em; - top: 50%; - left: auto; - right: 0.7em; - -webkit-mask-size: 1em; - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC'); - margin-top: -.5em; -} - -/* line 629, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select { - position: relative; - z-index: 1; -} -/* line 634, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:after { - background-color: #dddddd; -} -/* line 639, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before, .x-field-select .x-component-outer:after { - pointer-events: none; - position: absolute; - display: block; -} -/* line 645, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss */ -.x-field-select .x-component-outer:before { - content: ""; - position: absolute; - width: 4em; - height: auto; - top: 0; - left: auto; - right: 0; - bottom: 0; - -webkit-border-top-right-radius: 0.4em; - border-top-right-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255, 255, 255, 0)), color-stop(0.5, white)); -} - -/* line 7, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox { - min-width: 15em; - max-width: 20em; - max-height: 90%; - margin: .5em; - -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - box-shadow: rgba(0, 0, 0, 0.4) 0 0.1em 0.5em; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - border: 0.15em solid #cbcbcb; -} -/* line 17, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-docking-vertical { - overflow: hidden; -} -/* line 22, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-icon { - margin: 0 0.8em 0 0.5em; - background: #fff; - -webkit-mask-size: 100%; -} -/* line 28, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-info { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-warning { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 36, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-question { - -webkit-mask-image: url('data:image/png;base64,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'); -} -/* line 40, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-msgbox-error { - -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC'); -} -/* line 44, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-title { - font-size: .9em; - line-height: 1.4em; -} -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-body { - background: transparent !important; -} -/* line 53, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar { - background: transparent none; - -webkit-box-shadow: none; - box-shadow: none; -} -/* line 57, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-top { - border-bottom: 0; - height: 1.3em; -} -/* line 62, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom { - border-top: 0; -} -/* line 67, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field { - min-height: 2em; - background: #fff; - -webkit-border-radius: 0.2em; - border-radius: 0.2em; -} -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-form-field { - min-height: 1.5em; - padding-right: 0 !important; - -webkit-appearance: none; -} -/* line 79, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox .x-field-input { - padding-right: 2.2em; -} - -/* line 84, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-text { - text-align: center; - padding: 6px 0; - line-height: 1.4em; -} - -/* line 90, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons { - padding: 0.4em 0; - height: auto; -} -/* line 94, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button { - min-width: 4.5em; -} -/* line 98, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-buttons .x-button-normal span { - opacity: .7; -} - -/* line 109, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-text { - color: rgba(255, 255, 255, 0.9); - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} -/* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss */ -.x-msgbox-dark .x-msgbox-input { - background-image: none; - background-color: rgba(255, 255, 255, 0.9); - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(230, 230, 230, 0.9)), color-stop(10%, rgba(242, 242, 242, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0.9))); - background-image: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - background-image: linear-gradient(top, rgba(230, 230, 230, 0.9), rgba(242, 242, 242, 0.9) 10%, rgba(255, 255, 255, 0.9) 65%, rgba(255, 255, 255, 0.9)); - border: 0.1em solid rgba(203, 203, 203, 0.9); -} - -/* line 20, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - font-size: 250%; - height: 1em; - width: 1em; - position: relative; - -webkit-transform-origin: 0.5em 0.5em; - /* Shared Properties for all the bars */ -} -/* line 29, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after { - display: block; - position: absolute; - width: 0.1em; - height: 0.25em; - top: 0; - -webkit-transform-origin: 0.05em 0.5em; - -webkit-border-radius: 0.05em; - border-radius: 0.05em; - content: " "; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - background-color: rgba(170, 170, 170, 0.99); -} -/* line 42, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::after { - background-color: rgba(170, 170, 170, 0.9); -} -/* line 43, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::before { - background-color: rgba(170, 170, 170, 0.8); -} -/* line 44, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - background-color: rgba(170, 170, 170, 0.7); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left::after { - background-color: rgba(170, 170, 170, 0.6); -} -/* line 46, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::before { - background-color: rgba(170, 170, 170, 0.5); -} -/* line 47, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - background-color: rgba(170, 170, 170, 0.4); -} -/* line 48, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom::after { - background-color: rgba(170, 170, 170, 0.35); -} -/* line 49, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::before { - background-color: rgba(170, 170, 170, 0.3); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - background-color: rgba(170, 170, 170, 0.25); -} -/* line 51, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right::after { - background-color: rgba(170, 170, 170, 0.2); -} -/* line 52, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top::before { - background-color: rgba(170, 170, 170, 0.15); -} - -/* line 56, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span { - left: 50%; - margin-left: -0.05em; -} - -/* Rotate each of the 4 Spans */ -/* line 65, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-top { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); -} - -/* line 66, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-right { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); -} - -/* line 67, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-bottom { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); -} - -/* line 68, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span.x-loading-left { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); -} - -/* These are the two lines that surround each of the 4 Span lines */ -/* line 72, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::before { - -webkit-transform: rotate(30deg); - -moz-transform: rotate(30deg); -} - -/* line 73, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner > span::after { - -webkit-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); -} - -/* Set Animation */ -/* line 77, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ -.x-loading-spinner { - -webkit-animation-name: x-loading-spinner-rotate; - -webkit-animation-duration: .5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; -} - -@-webkit-keyframes x-loading-spinner-rotate { - /* line 85, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 0% { - -webkit-transform: rotate(0deg); - } - - /* line 86, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.32% { - -webkit-transform: rotate(0deg); - } - - /* line 88, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 8.33% { - -webkit-transform: rotate(30deg); - } - - /* line 89, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.65% { - -webkit-transform: rotate(30deg); - } - - /* line 91, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 16.66% { - -webkit-transform: rotate(60deg); - } - - /* line 92, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 24.99% { - -webkit-transform: rotate(60deg); - } - - /* line 94, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 25% { - -webkit-transform: rotate(90deg); - } - - /* line 95, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.32% { - -webkit-transform: rotate(90deg); - } - - /* line 97, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 33.33% { - -webkit-transform: rotate(120deg); - } - - /* line 98, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.65% { - -webkit-transform: rotate(120deg); - } - - /* line 100, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 41.66% { - -webkit-transform: rotate(150deg); - } - - /* line 101, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 49.99% { - -webkit-transform: rotate(150deg); - } - - /* line 103, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 50% { - -webkit-transform: rotate(180deg); - } - - /* line 104, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.32% { - -webkit-transform: rotate(180deg); - } - - /* line 106, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 58.33% { - -webkit-transform: rotate(210deg); - } - - /* line 107, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.65% { - -webkit-transform: rotate(210deg); - } - - /* line 109, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 66.66% { - -webkit-transform: rotate(240deg); - } - - /* line 110, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 74.99% { - -webkit-transform: rotate(240deg); - } - - /* line 112, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 75% { - -webkit-transform: rotate(270deg); - } - - /* line 113, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.32% { - -webkit-transform: rotate(270deg); - } - - /* line 115, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 83.33% { - -webkit-transform: rotate(300deg); - } - - /* line 116, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.65% { - -webkit-transform: rotate(300deg); - } - - /* line 118, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 91.66% { - -webkit-transform: rotate(330deg); - } - - /* line 119, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss */ - 100% { - -webkit-transform: rotate(330deg); - } -} - -/* line 129, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.border-radius-10 { - -webkit-border-radius: 10px !important; - border-radius: 10px !important; -} - -/* - * Color palette - */ -/* line 7, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller { - top: 12px; - left: 12px; - width: auto !important; - height: auto !important; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container { - margin-bottom: 12px; -} -/* line 19, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item { - display: inline-block; -} -/* line 22, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item.x-item-selected .item-inner { - -webkit-box-shadow: #c9d200 0 0 0 4px; - box-shadow: #c9d200 0 0 0 4px; -} -/* line 26, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-dataview.scss */ -.x-dataview.color .x-dataview-item .item-inner { - display: inline-block; - width: 50px; - height: 50px; - border: 1px solid #d8d8d8; - margin: 6px; -} - -/** - * // SCSS - * @include application-toolbar-ui('edit', $base-color); - */ -/** - * // SCSS - * @include application-toolbar-iconmask('code3', '../../img/toolbar/code3.png'); - */ -/* line 1, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 5, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round .x-scroll-view { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 11, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal { - padding-top: 0; -} -/* line 15, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header { - display: none; -} -/* line 22, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal { - padding-bottom: 0; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal { - border: 1px solid #bcbcbc; - border-width: 1px 1px 0 1px; - background: white; -} -/* line 34, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} -/* line 42, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal { - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #889e4d), color-stop(100%, #5c6b34)); - background-image: -webkit-linear-gradient(top, #889e4d, #5c6b34); - background-image: linear-gradient(top, #889e4d, #5c6b34); - color: white; -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure { - background-position: -24px 0; -} -/* line 55, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal { - color: inherit; -} -/* line 58, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body { - padding-right: 1.2em; -} -/* line 62, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after { - content: ""; - width: 24px; - height: 24px; - position: absolute; - top: 11px; - right: 11px; - background-image: url("../img/icons/list-retina.png"); - background-size: 72px 48px; - background-position: 0 -24px; -} -/* line 76, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal { - color: white; -} -/* line 79, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after { - background-position: -24px -24px; -} -/* line 86, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon { - width: 24px; - height: 24px; - position: absolute; -} -/* line 93, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset { - margin-left: 30px; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure { - right: 12px; - background-image: url("../img/icons/list-retina.png"); - background-size: 72px 48px; - background-position: 0 0; -} -/* line 106, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body { - -webkit-border-radius: 0.4em; - border-radius: 0.4em; -} -/* line 112, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal { - border: none; - background: transparent; - padding-bottom: 13.8px; -} -/* line 117, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal > .x-dock-body { - border: 1px solid #bcbcbc; - background: white; -} -/* line 124, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal { - background: transparent; -} -/* line 126, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingslist.scss */ -.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal > .x-dock-body { - -webkit-border-bottom-left-radius: 0.4em; - border-bottom-left-radius: 0.4em; - -webkit-border-bottom-right-radius: 0.4em; - border-bottom-right-radius: 0.4em; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #889e4d), color-stop(100%, #5c6b34)); - background-image: -webkit-linear-gradient(top, #889e4d, #5c6b34); - background-image: linear-gradient(top, #889e4d, #5c6b34); - color: white; -} - -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #989898), color-stop(10%, #656565), color-stop(100%, #656565)); - background-image: -webkit-linear-gradient(top, #989898, #656565 10%, #656565); - background-image: linear-gradient(top, #989898, #656565 10%, #656565); -} -/* line 6, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label, .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-hasbadge .x-badge, .x-hasbadge .x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge { - font-size: .9em; - line-height: 2em; -} -/* line 12, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-messagebox.scss */ -.x-msgbox .x-title { - font-size: 1em; - line-height: 1.4em; - color: #ffffff; - text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0; -} - -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ececec, #cbcbcb); - background-image: linear-gradient(top, #ececec, #cbcbcb); - -webkit-box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - box-shadow: white 0 1px 0 inset, rgba(0, 0, 0, 0.3) 0 0.2em 0.6em; - border: 1px solid #797979; -} -/* line 7, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top { - background-color: #797979; - margin-top: -0.62em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 15, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-top:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.7em; - -webkit-mask: 0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #ececec)); - background-image: -webkit-linear-gradient(top, #f1f1f1, #ececec); - background-image: linear-gradient(top, #f1f1f1, #ececec); - top: 1px !important; -} -/* line 27, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom { - height: 0.8em; - background-color: #797979; - margin-top: -0.15em; - -webkit-box-shadow: white 0 -1px 0 0 inset; - box-shadow: white 0 -1px 0 0 inset; -} -/* line 36, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-anchor-bottom:after { - content: ''; - position: absolute; - width: 1.631em; - height: 0.8em; - -webkit-mask: 0 0 url('data:image/png;base64,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') no-repeat; - -webkit-mask-size: 1.631em 0.7em; - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(100%, #bebebe)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #bebebe); - background-image: linear-gradient(top, #cbcbcb, #bebebe); - top: -1px !important; -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-panel-inner { - background: transparent; -} -/* line 52, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar { - border-bottom: none; - margin-top: -6px; - background: transparent; - overflow: hidden; -} -/* line 58, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigation-bar .x-title { - color: #323232; - text-shadow: white 0 0.08em 0; -} -/* line 66, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner { - background: transparent; - -webkit-border-radius: 0; - border-radius: 0; -} -/* line 69, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after { - content: none; -} -/* line 75, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner { - background-color: #efefef; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} -/* line 78, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-panel.x-panel-settings .x-navigationview-inner:after { - content: ""; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - pointer-events: none; - -webkit-border-radius: 0.3em; - border-radius: 0.3em; - -webkit-box-shadow: inset 0 1px 2px 2px #c8c8c8; - box-shadow: inset 0 1px 2px 2px #c8c8c8; - border: 1px solid #797979; -} - -/* line 88, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-label.info .x-innerhtml { - color: #7f7f7f; - text-shadow: 0 1px 0 white; - text-align: center; -} - -/* line 94, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.btn-input-image input[type="file"] { - opacity: 0; - position: absolute; - left: 0; - top: 0; -} - -/* line 102, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.x-mask.transparent { - background: transparent; -} - -/* line 106, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-settingspanel.scss */ -.round { - -webkit-border-radius: 0.3em; - border-radius: 0.3em; -} - -/* line 3, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons { - background: transparent; -} -/* line 6, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons.x-field { - min-height: 0; -} -/* line 10, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - background: transparent; -} -/* line 13, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span { - font-size: inherit; -} -/* line 18, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-button { - margin-top: 9px; - margin-bottom: 9px; -} -/* line 23, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label { - padding: 0.16em; -} -/* line 27, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input { - -webkit-box-shadow: #b2b2b2 0 3px 4px -2px inset; - box-shadow: #b2b2b2 0 3px 4px -2px inset; - background: white; - min-width: 2.3em; -} -/* line 32, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el { - text-align: center; - -webkit-border-radius: 0; - border-radius: 0; - padding: 3px 0 4px; - min-height: 0; - border-top: 1px solid #565656; - border-bottom: 1px solid #565656; -} -/* line 46, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button { - width: auto; - border: 1px solid #939393 !important; - margin: 0; -} -/* line 52, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down { - margin-right: 0; - -webkit-border-top-right-radius: 0; - border-top-right-radius: 0; - -webkit-border-bottom-right-radius: 0; - border-bottom-right-radius: 0; -} -/* line 58, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-planarspinner.scss */ -.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up { - -webkit-border-top-left-radius: 0; - border-top-left-radius: 0; - -webkit-border-bottom-left-radius: 0; - border-bottom-left-radius: 0; -} - -/* line 12, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - border-color: #4c4c4c; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button, -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-back:before, .x-toolbar-edit .x-button.x-button-forward:before, .x-toolbar .x-toolbar-edit .x-button.x-button-back:before, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button, .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar-edit .x-button.x-button-forward:after, .x-toolbar .x-toolbar-edit .x-button, .x-toolbar .x-toolbar-edit .x-button.x-button-back:after, .x-toolbar .x-toolbar-edit .x-button.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-edit .x-field-select .x-component-outer:before, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-edit .x-button .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-edit .x-button.x-button-pressing, .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar-edit .x-button.x-button-active, .x-toolbar-edit .x-button.x-button-active:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing, .x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed, .x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-edit .x-button.x-button-active, .x-toolbar .x-toolbar-edit .x-button.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-edit .x-label, -.x-toolbar-edit .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 12, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cbcbcb), color-stop(20%, #e7e7e7), color-stop(100%, #e7e7e7)); - background-image: -webkit-linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - background-image: linear-gradient(top, #cbcbcb, #e7e7e7 20%, #e7e7e7); - border-color: #4c4c4c; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-title { - color: black; - text-shadow: rgba(255, 255, 255, 0.25) 0 0.08em 0; -} -/* line 26, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search.x-docked-top { - border-bottom: 1px solid #939393; -} -/* line 32, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button, -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before { - border: 1px solid #8b8b8b; - border-top-color: #989898; - color: black; -} -/* line 37, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-back:before, .x-toolbar-search .x-button.x-button-forward:before, .x-toolbar .x-toolbar-search .x-button.x-button-back:before, .x-toolbar .x-toolbar-search .x-button.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before { - background: #8b8b8b; -} -/* line 41, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button, .x-toolbar-search .x-button.x-button-back:after, .x-toolbar-search .x-button.x-button-forward:after, .x-toolbar .x-toolbar-search .x-button, .x-toolbar .x-toolbar-search .x-button.x-button-back:after, .x-toolbar .x-toolbar-search .x-button.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer, -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after, -.x-toolbar-search .x-field-select .x-component-outer:before, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after { - background-image: none; - background-color: #bebebe; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e5e5e5), color-stop(3%, #cbcbcb), color-stop(100%, #b2b2b2)); - background-image: -webkit-linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); - background-image: linear-gradient(top, #e5e5e5, #cbcbcb 3%, #b2b2b2); -} -/* line 45, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button .x-button-icon.x-icon-mask, .x-toolbar .x-toolbar-search .x-button .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer .x-button-icon.x-icon-mask, -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before .x-button-icon.x-icon-mask { - background-image: none; - background-color: black; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262626), color-stop(3%, #0d0d0d), color-stop(100%, #000000)); - background-image: -webkit-linear-gradient(top, #262626, #0d0d0d 3%, #000000); - background-image: linear-gradient(top, #262626, #0d0d0d 3%, #000000); -} -/* line 50, E:/Work/Projects JS 2/3rdparty/touch/resources/themes/stylesheets/sencha-touch/default/widgets/../_mixins.scss */ -.x-toolbar-search .x-button.x-button-pressing, .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar-search .x-button.x-button-pressed, .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar-search .x-button.x-button-active, .x-toolbar-search .x-button.x-button-active:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressing, .x-toolbar .x-toolbar-search .x-button.x-button-pressing:after, .x-toolbar .x-toolbar-search .x-button.x-button-pressed, .x-toolbar .x-toolbar-search .x-button.x-button-pressed:after, .x-toolbar .x-toolbar-search .x-button.x-button-active, .x-toolbar .x-toolbar-search .x-button.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active, .x-toolbar -.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after { - background-image: none; - background-color: #b7b7b7; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #9d9d9d), color-stop(10%, #aaaaaa), color-stop(65%, #b7b7b7), color-stop(100%, #b8b8b8)); - background-image: -webkit-linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); - background-image: linear-gradient(top, #9d9d9d, #aaaaaa 10%, #b7b7b7 65%, #b8b8b8); -} -/* line 37, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-toolbar.scss */ -.x-toolbar-search .x-label, -.x-toolbar-search .x-form-label { - font-weight: normal; - color: #4c4c4c; - text-shadow: 0 1px 0 white; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.save, -.list-icon.save { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 0px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.save, -.x-button-pressing .list-icon.save, -.x-button-pressed .x-button-icon.save, -.x-button-pressed .list-icon.save, -.x-button-active .x-button-icon.save, -.x-button-active .list-icon.save, -.x-item-pressed .x-button-icon.save, -.x-item-pressed .list-icon.save { - background-position: -24px 0px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.undo, -.list-icon.undo { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -24px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.undo, -.x-button-pressing .list-icon.undo, -.x-button-pressed .x-button-icon.undo, -.x-button-pressed .list-icon.undo, -.x-button-active .x-button-icon.undo, -.x-button-active .list-icon.undo, -.x-item-pressed .x-button-icon.undo, -.x-item-pressed .list-icon.undo { - background-position: -24px -24px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.share, -.list-icon.share { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -48px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.share, -.x-button-pressing .list-icon.share, -.x-button-pressed .x-button-icon.share, -.x-button-pressed .list-icon.share, -.x-button-active .x-button-icon.share, -.x-button-active .list-icon.share, -.x-item-pressed .x-button-icon.share, -.x-item-pressed .list-icon.share { - background-position: -24px -48px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-style, -.list-icon.font-style { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -72px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-style, -.x-button-pressing .list-icon.font-style, -.x-button-pressed .x-button-icon.font-style, -.x-button-pressed .list-icon.font-style, -.x-button-active .x-button-icon.font-style, -.x-button-active .list-icon.font-style, -.x-item-pressed .x-button-icon.font-style, -.x-item-pressed .list-icon.font-style { - background-position: -24px -72px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.font-color, -.list-icon.font-color { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -96px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.font-color, -.x-button-pressing .list-icon.font-color, -.x-button-pressed .x-button-icon.font-color, -.x-button-pressed .list-icon.font-color, -.x-button-active .x-button-icon.font-color, -.x-button-active .list-icon.font-color, -.x-item-pressed .x-button-icon.font-color, -.x-item-pressed .list-icon.font-color { - background-position: -24px -96px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.bold, -.list-icon.bold { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -120px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.bold, -.x-button-pressing .list-icon.bold, -.x-button-pressed .x-button-icon.bold, -.x-button-pressed .list-icon.bold, -.x-button-active .x-button-icon.bold, -.x-button-active .list-icon.bold, -.x-item-pressed .x-button-icon.bold, -.x-item-pressed .list-icon.bold { - background-position: -24px -120px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.italic, -.list-icon.italic { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -144px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.italic, -.x-button-pressing .list-icon.italic, -.x-button-pressed .x-button-icon.italic, -.x-button-pressed .list-icon.italic, -.x-button-active .x-button-icon.italic, -.x-button-active .list-icon.italic, -.x-item-pressed .x-button-icon.italic, -.x-item-pressed .list-icon.italic { - background-position: -24px -144px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.underline, -.list-icon.underline { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -168px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.underline, -.x-button-pressing .list-icon.underline, -.x-button-pressed .x-button-icon.underline, -.x-button-pressed .list-icon.underline, -.x-button-active .x-button-icon.underline, -.x-button-active .list-icon.underline, -.x-item-pressed .x-button-icon.underline, -.x-item-pressed .list-icon.underline { - background-position: -24px -168px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-left, -.list-icon.align-left { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -192px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-left, -.x-button-pressing .list-icon.align-left, -.x-button-pressed .x-button-icon.align-left, -.x-button-pressed .list-icon.align-left, -.x-button-active .x-button-icon.align-left, -.x-button-active .list-icon.align-left, -.x-item-pressed .x-button-icon.align-left, -.x-item-pressed .list-icon.align-left { - background-position: -24px -192px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-center, -.list-icon.align-center { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -216px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-center, -.x-button-pressing .list-icon.align-center, -.x-button-pressed .x-button-icon.align-center, -.x-button-pressed .list-icon.align-center, -.x-button-active .x-button-icon.align-center, -.x-button-active .list-icon.align-center, -.x-item-pressed .x-button-icon.align-center, -.x-item-pressed .list-icon.align-center { - background-position: -24px -216px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-right, -.list-icon.align-right { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -240px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-right, -.x-button-pressing .list-icon.align-right, -.x-button-pressed .x-button-icon.align-right, -.x-button-pressed .list-icon.align-right, -.x-button-active .x-button-icon.align-right, -.x-button-active .list-icon.align-right, -.x-item-pressed .x-button-icon.align-right, -.x-item-pressed .list-icon.align-right { - background-position: -24px -240px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.align-fill, -.list-icon.align-fill { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -264px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.align-fill, -.x-button-pressing .list-icon.align-fill, -.x-button-pressed .x-button-icon.align-fill, -.x-button-pressed .list-icon.align-fill, -.x-button-active .x-button-icon.align-fill, -.x-button-active .list-icon.align-fill, -.x-item-pressed .x-button-icon.align-fill, -.x-item-pressed .list-icon.align-fill { - background-position: -24px -264px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.pages, -.list-icon.pages { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -288px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.pages, -.x-button-pressing .list-icon.pages, -.x-button-pressed .x-button-icon.pages, -.x-button-pressed .list-icon.pages, -.x-button-active .x-button-icon.pages, -.x-button-active .list-icon.pages, -.x-item-pressed .x-button-icon.pages, -.x-item-pressed .list-icon.pages { - background-position: -24px -288px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search-prev, -.list-icon.search-prev { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -312px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search-prev, -.x-button-pressing .list-icon.search-prev, -.x-button-pressed .x-button-icon.search-prev, -.x-button-pressed .list-icon.search-prev, -.x-button-active .x-button-icon.search-prev, -.x-button-active .list-icon.search-prev, -.x-item-pressed .x-button-icon.search-prev, -.x-item-pressed .list-icon.search-prev { - background-position: -24px -312px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search-next, -.list-icon.search-next { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -336px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search-next, -.x-button-pressing .list-icon.search-next, -.x-button-pressed .x-button-icon.search-next, -.x-button-pressed .list-icon.search-next, -.x-button-active .x-button-icon.search-next, -.x-button-active .list-icon.search-next, -.x-item-pressed .x-button-icon.search-next, -.x-item-pressed .list-icon.search-next { - background-position: -24px -336px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.search, -.list-icon.search { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -384px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.search, -.x-button-pressing .list-icon.search, -.x-button-pressed .x-button-icon.search, -.x-button-pressed .list-icon.search, -.x-button-active .x-button-icon.search, -.x-button-active .list-icon.search, -.x-item-pressed .x-button-icon.search, -.x-item-pressed .list-icon.search { - background-position: -24px -384px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.fullscreen, -.list-icon.fullscreen { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -408px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.fullscreen, -.x-button-pressing .list-icon.fullscreen, -.x-button-pressed .x-button-icon.fullscreen, -.x-button-pressed .list-icon.fullscreen, -.x-button-active .x-button-icon.fullscreen, -.x-button-active .list-icon.fullscreen, -.x-item-pressed .x-button-icon.fullscreen, -.x-item-pressed .list-icon.fullscreen { - background-position: -24px -408px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-down, -.list-icon.spinner-down { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -432px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-down, -.x-button-pressing .list-icon.spinner-down, -.x-button-pressed .x-button-icon.spinner-down, -.x-button-pressed .list-icon.spinner-down, -.x-button-active .x-button-icon.spinner-down, -.x-button-active .list-icon.spinner-down, -.x-item-pressed .x-button-icon.spinner-down, -.x-item-pressed .list-icon.spinner-down { - background-position: -24px -432px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.spinner-up, -.list-icon.spinner-up { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -456px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.spinner-up, -.x-button-pressing .list-icon.spinner-up, -.x-button-pressed .x-button-icon.spinner-up, -.x-button-pressed .list-icon.spinner-up, -.x-button-active .x-button-icon.spinner-up, -.x-button-active .list-icon.spinner-up, -.x-item-pressed .x-button-icon.spinner-up, -.x-item-pressed .list-icon.spinner-up { - background-position: -24px -456px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.table, -.list-icon.table { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -480px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.table, -.x-button-pressing .list-icon.table, -.x-button-pressed .x-button-icon.table, -.x-button-pressed .list-icon.table, -.x-button-active .x-button-icon.table, -.x-button-active .list-icon.table, -.x-item-pressed .x-button-icon.table, -.x-item-pressed .list-icon.table { - background-position: -24px -480px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.picture, -.list-icon.picture { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -504px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.picture, -.x-button-pressing .list-icon.picture, -.x-button-pressed .x-button-icon.picture, -.x-button-pressed .list-icon.picture, -.x-button-active .x-button-icon.picture, -.x-button-active .list-icon.picture, -.x-item-pressed .x-button-icon.picture, -.x-item-pressed .list-icon.picture { - background-position: -24px -504px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-row, -.list-icon.insert-row { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -528px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-row, -.x-button-pressing .list-icon.insert-row, -.x-button-pressed .x-button-icon.insert-row, -.x-button-pressed .list-icon.insert-row, -.x-button-active .x-button-icon.insert-row, -.x-button-active .list-icon.insert-row, -.x-item-pressed .x-button-icon.insert-row, -.x-item-pressed .list-icon.insert-row { - background-position: -24px -528px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.insert-column, -.list-icon.insert-column { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -552px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.insert-column, -.x-button-pressing .list-icon.insert-column, -.x-button-pressed .x-button-icon.insert-column, -.x-button-pressed .list-icon.insert-column, -.x-button-active .x-button-icon.insert-column, -.x-button-active .list-icon.insert-column, -.x-item-pressed .x-button-icon.insert-column, -.x-item-pressed .list-icon.insert-column { - background-position: -24px -552px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textbigger, -.list-icon.textbigger { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -576px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textbigger, -.x-button-pressing .list-icon.textbigger, -.x-button-pressed .x-button-icon.textbigger, -.x-button-pressed .list-icon.textbigger, -.x-button-active .x-button-icon.textbigger, -.x-button-active .list-icon.textbigger, -.x-item-pressed .x-button-icon.textbigger, -.x-item-pressed .list-icon.textbigger { - background-position: -24px -576px; -} - -/* line 3, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-icon.textless, -.list-icon.textless { - background-image: url("../img/icons/icons-retina.png"); - background-color: transparent; - background-position: 0 -600px; - background-size: 72px 624px; -} - -/* line 15, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-mixins.scss */ -.x-button-pressing .x-button-icon.textless, -.x-button-pressing .list-icon.textless, -.x-button-pressed .x-button-icon.textless, -.x-button-pressed .list-icon.textless, -.x-button-active .x-button-icon.textless, -.x-button-active .list-icon.textless, -.x-item-pressed .x-button-icon.textless, -.x-item-pressed .list-icon.textless { - background-position: -24px -600px; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-toolbar .x-button.x-button-base { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-icon, .x-toolbar .x-button.x-button-base .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-forward:before, .x-button.x-button-base.x-button-forward:after, .x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base .x-button-label, .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base .x-badge, .x-toolbar .x-button.x-button-base .x-button-label, .x-toolbar .x-button.x-button-base .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-back:before, .x-button.x-button-base.x-button-forward:before, .x-toolbar .x-button.x-button-base.x-button-back:before, .x-toolbar .x-button.x-button-base.x-button-forward:before { - background: #989898; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base, .x-button.x-button-base.x-button-back:after, .x-button.x-button-base.x-button-forward:after, .x-toolbar .x-button.x-button-base, .x-toolbar .x-button.x-button-base.x-button-back:after, .x-toolbar .x-button.x-button-base.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing, .x-button.x-button-base.x-button-pressing:after, .x-button.x-button-base.x-button-pressed, .x-button.x-button-base.x-button-pressed:after, .x-button.x-button-base.x-button-active, .x-button.x-button-base.x-button-active:after, .x-toolbar .x-button.x-button-base.x-button-pressing, .x-toolbar .x-button.x-button-base.x-button-pressing:after, .x-toolbar .x-button.x-button-base.x-button-pressed, .x-toolbar .x-button.x-button-base.x-button-pressed:after, .x-toolbar .x-button.x-button-base.x-button-active, .x-toolbar .x-button.x-button-base.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base.x-button-pressing .x-button-label, .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressing .x-badge, .x-button.x-button-base.x-button-pressed .x-button-label, .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-pressed .x-badge, .x-button.x-button-base.x-button-active .x-button-label, .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base.x-button-active .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-toolbar .x-button.x-button-light { - border: 1px solid #c7c7c7; - border-top-color: #d9d9d9; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: #262626; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-icon, .x-toolbar .x-button.x-button-light .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-forward:before, .x-button.x-button-light.x-button-forward:after, .x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light .x-button-label, .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light .x-badge, .x-toolbar .x-button.x-button-light .x-button-label, .x-toolbar .x-button.x-button-light .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light .x-badge { - color: #666666; - text-shadow: white 0 0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-back:before, .x-button.x-button-light.x-button-forward:before, .x-toolbar .x-button.x-button-light.x-button-back:before, .x-toolbar .x-button.x-button-light.x-button-forward:before { - background: #cccccc; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light, .x-button.x-button-light.x-button-back:after, .x-button.x-button-light.x-button-forward:after, .x-toolbar .x-button.x-button-light, .x-toolbar .x-button.x-button-light.x-button-back:after, .x-toolbar .x-button.x-button-light.x-button-forward:after { - background-image: none; - background-color: white; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ffffff), color-stop(100%, #ffffff)); - background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); - background-image: linear-gradient(top, #ffffff, #ffffff 3%, #ffffff); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing, .x-button.x-button-light.x-button-pressing:after, .x-button.x-button-light.x-button-pressed, .x-button.x-button-light.x-button-pressed:after, .x-button.x-button-light.x-button-active, .x-button.x-button-light.x-button-active:after, .x-toolbar .x-button.x-button-light.x-button-pressing, .x-toolbar .x-button.x-button-light.x-button-pressing:after, .x-toolbar .x-button.x-button-light.x-button-pressed, .x-toolbar .x-button.x-button-light.x-button-pressed:after, .x-toolbar .x-button.x-button-light.x-button-active, .x-toolbar .x-button.x-button-light.x-button-active:after { - background-image: none; - background-color: #999999; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #808080), color-stop(10%, #8c8c8c), color-stop(65%, #999999), color-stop(100%, #9a9a9a)); - background-image: -webkit-linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); - background-image: linear-gradient(top, #808080, #8c8c8c 10%, #999999 65%, #9a9a9a); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-light.x-button-pressing .x-button-label, .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressing .x-badge, .x-button.x-button-light.x-button-pressed .x-button-label, .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-pressed .x-badge, .x-button.x-button-light.x-button-active .x-button-label, .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-light.x-button-active .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-light.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-light.x-button-active .x-button-label, .x-toolbar .x-button.x-button-light.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-light.x-button-active .x-badge { - color: white; - text-shadow: gray 0 0.09em 0; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-first) { - border-left: 1px solid #c7c7c7; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-light:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-light.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue { - border: 1px solid #384220; - border-top-color: #4d5a2c; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: white; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-icon, .x-toolbar .x-button.x-button-base-blue .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-forward:before, .x-button.x-button-base-blue.x-button-forward:after, .x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue .x-button-label, .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue .x-badge, .x-toolbar .x-button.x-button-base-blue .x-button-label, .x-toolbar .x-button.x-button-base-blue .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue .x-badge { - color: white; - text-shadow: #384220 0 -0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-back:before, .x-button.x-button-base-blue.x-button-forward:before, .x-toolbar .x-button.x-button-base-blue.x-button-back:before, .x-toolbar .x-button.x-button-base-blue.x-button-forward:before { - background: #3e4923; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue, .x-button.x-button-base-blue.x-button-back:after, .x-button.x-button-base-blue.x-button-forward:after, .x-toolbar .x-button.x-button-base-blue, .x-toolbar .x-button.x-button-base-blue.x-button-back:after, .x-toolbar .x-button.x-button-base-blue.x-button-forward:after { - background-image: none; - background-color: #798d45; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #9cb262), color-stop(100%, #798d45)); - background-image: -webkit-linear-gradient(top, #ffffff, #9cb262 3%, #798d45); - background-image: linear-gradient(top, #ffffff, #9cb262 3%, #798d45); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing, .x-button.x-button-base-blue.x-button-pressing:after, .x-button.x-button-base-blue.x-button-pressed, .x-button.x-button-base-blue.x-button-pressed:after, .x-button.x-button-base-blue.x-button-active, .x-button.x-button-base-blue.x-button-active:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressing, .x-toolbar .x-button.x-button-base-blue.x-button-pressing:after, .x-toolbar .x-button.x-button-base-blue.x-button-pressed, .x-toolbar .x-button.x-button-base-blue.x-button-pressed:after, .x-toolbar .x-button.x-button-base-blue.x-button-active, .x-toolbar .x-button.x-button-base-blue.x-button-active:after { - background-image: none; - background-color: #5c6b34; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3e4923), color-stop(10%, #4d5a2c), color-stop(65%, #5c6b34), color-stop(100%, #5d6c35)); - background-image: -webkit-linear-gradient(top, #3e4923, #4d5a2c 10%, #5c6b34 65%, #5d6c35); - background-image: linear-gradient(top, #3e4923, #4d5a2c 10%, #5c6b34 65%, #5d6c35); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-button.x-button-base-blue.x-button-active .x-button-label, .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-base-blue.x-button-active .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label, .x-toolbar .x-button.x-button-base-blue.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge { - text-shadow: #384220 0 0.09em 0; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first) { - border-left: 1px solid #384220; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-base-blue.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* line 73, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back { - padding: 0.3em 8px; -} -/* line 2, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - border: 1px solid #939393; - border-top-color: #a5a5a5; - min-height: 29px; - padding-top: 0; - padding-bottom: 0; - -webkit-border-radius: 2px; - border-radius: 2px; - -webkit-box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - box-shadow: rgba(255, 255, 255, 0.35) 0 1px 0; - color: black; -} -/* line 14, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-icon, .x-toolbar .x-button.x-button-back .x-button-icon { - width: 24px; - height: 24px; -} -/* line 21, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-forward:before, .x-button.x-button-back.x-button-forward:after, .x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-back:after { - -webkit-mask-size: 0.80717em 1.75em; -} -/* line 29, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back .x-button-label, .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back .x-badge, .x-toolbar .x-button.x-button-back .x-button-label, .x-toolbar .x-button.x-button-back .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back .x-badge { - color: #323232; - text-shadow: white 0 0.09em 0; -} -/* line 39, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-back:before, .x-button.x-button-back.x-button-forward:before, .x-toolbar .x-button.x-button-back.x-button-back:before, .x-toolbar .x-button.x-button-back.x-button-forward:before { - background: #989898; -} -/* line 43, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-button.x-button-back.x-button-back:after, .x-button.x-button-back.x-button-forward:after, .x-toolbar .x-button.x-button-back, .x-toolbar .x-button.x-button-back.x-button-back:after, .x-toolbar .x-button.x-button-back.x-button-forward:after { - background-image: none; - background-color: #cbcbcb; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(3%, #ececec), color-stop(100%, #cbcbcb)); - background-image: -webkit-linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); - background-image: linear-gradient(top, #ffffff, #ececec 3%, #cbcbcb); -} -/* line 48, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing, .x-button.x-button-back.x-button-pressing:after, .x-button.x-button-back.x-button-pressed, .x-button.x-button-back.x-button-pressed:after, .x-button.x-button-back.x-button-active, .x-button.x-button-back.x-button-active:after, .x-toolbar .x-button.x-button-back.x-button-pressing, .x-toolbar .x-button.x-button-back.x-button-pressing:after, .x-toolbar .x-button.x-button-back.x-button-pressed, .x-toolbar .x-button.x-button-back.x-button-pressed:after, .x-toolbar .x-button.x-button-back.x-button-active, .x-toolbar .x-button.x-button-back.x-button-active:after { - background-image: none; - background-color: #656565; - background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4c4c4c), color-stop(10%, #585858), color-stop(65%, #656565), color-stop(100%, #666666)); - background-image: -webkit-linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); - background-image: linear-gradient(top, #4c4c4c, #585858 10%, #656565 65%, #666666); -} -/* line 56, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back.x-button-pressing .x-button-label, .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressing .x-badge, .x-button.x-button-back.x-button-pressed .x-button-label, .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-pressed .x-badge, .x-button.x-button-back.x-button-active .x-button-label, .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-button.x-button-back.x-button-active .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressing .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressing .x-badge, .x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label, .x-toolbar .x-button.x-button-back.x-button-pressed .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-pressed .x-badge, .x-toolbar .x-button.x-button-back.x-button-active .x-button-label, .x-toolbar .x-button.x-button-back.x-button-active .x-hasbadge .x-badge, .x-hasbadge .x-toolbar .x-button.x-button-back.x-button-active .x-badge { - color: white; - text-shadow: #4c4c4c 0 0.09em 0; -} -/* line 79, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-button.x-button-back, .x-toolbar .x-button.x-button-back { - -webkit-border-radius: 4px; - border-radius: 4px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -/* line 89, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) { - margin: 0 0.2em; -} -/* line 92, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back { - margin: 0; - -webkit-border-radius: 0 !important; - border-radius: 0 !important; -} -/* line 97, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first) { - border-left: 0 !important; -} -/* line 105, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-first) { - border-left: 1px solid #939393; -} -/* line 109, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base.divided .x-button-back:not(.x-last) { - margin-right: 7px; -} -/* line 116, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-first { - -webkit-border-top-left-radius: 2px !important; - border-top-left-radius: 2px !important; - -webkit-border-bottom-left-radius: 2px !important; - border-bottom-left-radius: 2px !important; -} -/* line 119, E:/Work/Projects JS 2/apps/common/mobile/resources/sass/_common-buttons.scss */ -.x-segmentedbutton-base .x-button-back.x-last { - -webkit-border-top-right-radius: 2px !important; - border-top-right-radius: 2px !important; - -webkit-border-bottom-right-radius: 2px !important; - border-bottom-right-radius: 2px !important; -} - -/* - * unsupport - */ -/* line 89, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss */ -.unsuported-view { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: url(../img/ios-only.png) no-repeat center #efefef; - background-attachment: fixed; - z-index: 90000; -} - -/* - * Additional styles - */ -/* line 104, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-12 { - padding-left: 12px; - padding-right: 12px; -} - -/* line 109, E:/Work/Projects JS 2/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss */ -.x-button.text-offset-30 { - padding-left: 30px; - padding-right: 30px; -} +html,body{position:relative;width:100%;height:100%}.x-fullscreen{position:absolute !important}.x-body{position:relative;z-index:0}.x-inner,.x-body{width:100%;height:100%}.x-sized{position:relative}.x-innerhtml{width:100%}.x-layout-box{display:flex;display:-webkit-box;display:-ms-flexbox}.x-layout-box.x-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{min-width:0 !important}.x-layout-box.x-vertical{-webkit-box-orient:vertical !important;-ms-flex-direction:column !important;flex-direction:column !important}.x-layout-box.x-vertical>.x-layout-box-item.x-flexed{min-height:0 !important}.x-layout-box>.x-layout-box-item{display:flex !important;display:-webkit-box !important;display:-ms-flexbox !important}.x-layout-box.x-align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.x-layout-box.x-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-layout-box.x-align-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.x-layout-box.x-align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.x-layout-box.x-pack-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.x-layout-box.x-pack-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-layout-box.x-pack-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.x-layout-box.x-pack-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.x-layout-box-item.x-sized>.x-inner,.x-layout-box-item.x-sized>.x-body,.x-layout-box-item.x-sized>.x-dock-outer{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-webkit .x-layout-box.x-horizontal>.x-layout-box-item.x-flexed{width:0 !important}.x-webkit .x-layout-box.x-vertical>.x-layout-box-item.x-flexed{height:0 !important}.x-firefox .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-firefox .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-firefox .x-container .x-dock-horizontal.x-unsized .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px;min-height:0;min-width:0}.x-firefox .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-layout-card{position:relative;overflow:hidden}.x-layout-card-perspective{-webkit-perspective:1000px;-ms-perspective:1000px;perspective:1000px}.x-layout-card-item-container{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-card-item{position:absolute;top:0;right:0;bottom:0;left:0;position:absolute !important}.x-dock{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock>.x-dock-body{overflow:hidden}.x-dock.x-sized,.x-dock.x-sized>.x-dock-body>*,.x-dock.x-sized>.x-dock-body>.x-body>.x-inner{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-sized>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-unsized,.x-dock.x-stretched{height:100%}.x-dock.x-unsized>.x-dock-body,.x-dock.x-stretched>.x-dock-body{position:relative;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0;min-width:0}.x-dock.x-unsized>.x-dock-body>*,.x-dock.x-stretched>.x-dock-body>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-dock.x-dock-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-dock.x-dock-horizontal>.x-dock-item{display:flex;display:-webkit-box;display:-ms-flexbox}.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-inner,.x-dock.x-dock-horizontal>.x-dock-item.x-sized>.x-body{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-dock.x-dock-horizontal>.x-dock-item.x-unsized>*{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-ie .x-stretched.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-stretched.x-dock-vertical>.x-dock-body{height:0}.x-ie .x-has-width>.x-dock.x-unsized.x-dock-horizontal>.x-dock-body{width:0}.x-ie .x-has-height>.x-dock.x-unsized.x-dock-vertical>.x-dock-body{height:0}.x-stretched.x-container{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-stretched.x-container>.x-inner,.x-stretched.x-container>.x-body,.x-stretched.x-container>.x-body>.x-inner{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;min-height:0px}.x-layout-fit.x-stretched>.x-layout-fit-item{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:0;min-width:0}.x-layout-fit{position:relative}.x-layout-fit-item.x-sized{position:absolute;top:0;right:0;bottom:0;left:0}.x-layout-fit-item.x-unsized{width:100%;height:100%}.x-ie .x-stretched>.x-inner,.x-ie .x-stretched>.x-body{min-height:inherit}.x-center,.x-centered{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-center>*,.x-centered>*{position:relative}.x-center>.x-floating,.x-centered>.x-floating{position:relative !important}.x-floating{position:absolute !important}.x-layout-float{overflow:hidden}.x-layout-float>.x-layout-float-item{float:left}.x-layout-float.x-direction-right>.x-layout-float-item{float:right}@-webkit-keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}@keyframes x-paint-monitor-helper{from{zoom:1}to{zoom:1}}.x-paint-monitored{position:relative}.x-paint-monitor{width:0 !important;height:0 !important;visibility:hidden}.x-paint-monitor.cssanimation{-webkit-animation-duration:0.0001ms;-webkit-animation-name:x-paint-monitor-helper;animation-duration:0.0001ms;animation-name:x-paint-monitor-helper}.x-paint-monitor.overflowchange{overflow:hidden}.x-paint-monitor.overflowchange::after{content:'';display:block;width:1px !important;height:1px !important}.x-size-monitored{position:relative}.x-size-monitors{position:absolute;left:0;top:0;width:100%;height:100%;visibility:hidden;overflow:hidden}.x-size-monitors>*{width:100%;height:100%;overflow:hidden}.x-size-monitors.scroll>*.shrink::after{content:'';display:block;width:200%;height:200%;min-width:1px;min-height:1px}.x-size-monitors.scroll>*.expand::after{content:'';display:block;width:100000px;height:100000px}.x-size-monitors.overflowchanged>*.shrink>*{width:100%;height:100%}.x-size-monitors.overflowchanged>*.expand>*{width:200%;height:200%}.x-size-change-detector{visibility:hidden;position:absolute;left:0;top:0;z-index:-1;width:100%;height:100%;overflow:hidden}.x-size-change-detector>*{visibility:hidden}.x-size-change-detector-shrink>*{width:200%;height:200%}.x-size-change-detector-expand>*{width:100000px;height:100000px}.x-translatable{position:absolute !important;top:500000px !important;left:500000px !important;overflow:visible !important;z-index:1}.x-translatable-hboxfix{position:absolute;min-width:100%;top:0;left:0}.x-translatable-hboxfix>.x-translatable{position:relative !important}.x-translatable-container{overflow:hidden;width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-translatable-container::before{content:'';display:block;width:1000000px;height:1000000px;visibility:hidden}.x-button{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#eee;border:1px solid #ccc;position:relative;overflow:hidden;z-index:1}.x-button .x-button-icon{position:relative;background-repeat:no-repeat;background-position:center}.x-button .x-button-icon.x-shown{display:block}.x-button .x-button-icon.x-hidden{display:none}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-iconalign-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-button-label,.x-badge,.x-hasbadge .x-badge{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;text-overflow:ellipsis;text-align:center;display:block;overflow:hidden}.x-badge{background-color:#ccc;border:1px solid #aaa;z-index:2;position:absolute !important;width:auto;font-size:.6em;right:0;top:0;max-width:95%;display:inline-block}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;-webkit-text-size-adjust:none;margin:0;cursor:default}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}*:focus{outline:none}body.x-desktop{overflow:hidden}@-ms-viewport{width:device-width}*,*:after,*:before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none;-ms-touch-action:none;-moz-user-select:-moz-none}input,textarea{-webkit-user-select:text;-ms-user-select:auto;-moz-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;-ms-user-select:auto;line-height:1.5;color:#333;font-size:.8em;padding:1.2em}.x-html body{line-height:1.5;font-family:"Helvetica Neue",Arial,Helvetica,sans-serif;color:#333;font-size:75%}.x-html h1,.x-html h2,.x-html h3,.x-html h4,.x-html h5,.x-html h6{font-weight:normal;color:#222}.x-html h1 img,.x-html h2 img,.x-html h3 img,.x-html h4 img,.x-html h5 img,.x-html h6 img{margin:0}.x-html h1{font-size:3em;line-height:1;margin-bottom:0.50em}.x-html h2{font-size:2em;margin-bottom:0.75em}.x-html h3{font-size:1.5em;line-height:1;margin-bottom:1.00em}.x-html h4{font-size:1.2em;line-height:1.25;margin-bottom:1.25em}.x-html h5{font-size:1em;font-weight:bold;margin-bottom:1.50em}.x-html h6{font-size:1em;font-weight:bold}.x-html p{margin:0 0 1.5em}.x-html p .left{float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{float:right;margin:1.5em 0 1.5em 1.5em;padding:0}.x-html a{text-decoration:underline;color:#06c}.x-html a:visited{color:#004d99}.x-html a:focus{color:#09f}.x-html a:hover{color:#09f}.x-html a:active{color:#bf00ff}.x-html blockquote{margin:1.5em;color:#666;font-style:italic}.x-html strong,.x-html dfn{font-weight:bold}.x-html em,.x-html dfn{font-style:italic}.x-html sup,.x-html sub{line-height:0}.x-html abbr,.x-html acronym{border-bottom:1px dotted #666666}.x-html address{margin:0 0 1.5em;font-style:italic}.x-html del{color:#666}.x-html pre{margin:1.5em 0;white-space:pre}.x-html pre,.x-html code,.x-html tt{font:1em "andale mono","lucida console",monospace;line-height:1.5}.x-html li ul,.x-html li ol{margin:0}.x-html ul,.x-html ol{margin:0 1.5em 1.5em 0;padding-left:1.5em}.x-html ul{list-style-type:disc}.x-html ol{list-style-type:decimal}.x-html dl{margin:0 0 1.5em 0}.x-html dl dt{font-weight:bold}.x-html dd{margin-left:1.5em}.x-html table{margin-bottom:1.4em;width:100%}.x-html th{font-weight:bold}.x-html thead th{background:#c3d9ff}.x-html th,.x-html td,.x-html caption{padding:4px 10px 4px 5px}.x-html table.striped tr:nth-child(even) td,.x-html table tr.even td{background:#e5ecf9}.x-html tfoot{font-style:italic}.x-html caption{background:#eee}.x-html .quiet{color:#666}.x-html .loud{color:#111}.x-html ul li{list-style-type:circle}.x-html ol li{list-style-type:decimal}@-webkit-keyframes x-loading-spinner-rotate{0%{-webkit-transform:rotate(0deg)}8.32%{-webkit-transform:rotate(0deg)}8.33%{-webkit-transform:rotate(30deg)}16.65%{-webkit-transform:rotate(30deg)}16.66%{-webkit-transform:rotate(60deg)}24.99%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.32%{-webkit-transform:rotate(90deg)}33.33%{-webkit-transform:rotate(120deg)}41.65%{-webkit-transform:rotate(120deg)}41.66%{-webkit-transform:rotate(150deg)}49.99%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.32%{-webkit-transform:rotate(180deg)}58.33%{-webkit-transform:rotate(210deg)}66.65%{-webkit-transform:rotate(210deg)}66.66%{-webkit-transform:rotate(240deg)}74.99%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.32%{-webkit-transform:rotate(270deg)}83.33%{-webkit-transform:rotate(300deg)}91.65%{-webkit-transform:rotate(300deg)}91.66%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(330deg)}}@keyframes x-loading-spinner-rotate{0%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.32%{-ms-transform:rotate(0deg);transform:rotate(0deg)}8.33%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.65%{-ms-transform:rotate(30deg);transform:rotate(30deg)}16.66%{-ms-transform:rotate(60deg);transform:rotate(60deg)}24.99%{-ms-transform:rotate(60deg);transform:rotate(60deg)}25%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.32%{-ms-transform:rotate(90deg);transform:rotate(90deg)}33.33%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.65%{-ms-transform:rotate(120deg);transform:rotate(120deg)}41.66%{-ms-transform:rotate(150deg);transform:rotate(150deg)}49.99%{-ms-transform:rotate(150deg);transform:rotate(150deg)}50%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.32%{-ms-transform:rotate(180deg);transform:rotate(180deg)}58.33%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.65%{-ms-transform:rotate(210deg);transform:rotate(210deg)}66.66%{-ms-transform:rotate(240deg);transform:rotate(240deg)}74.99%{-ms-transform:rotate(240deg);transform:rotate(240deg)}75%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.32%{-ms-transform:rotate(270deg);transform:rotate(270deg)}83.33%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.65%{-ms-transform:rotate(300deg);transform:rotate(300deg)}91.66%{-ms-transform:rotate(330deg);transform:rotate(330deg)}100%{-ms-transform:rotate(330deg);transform:rotate(330deg)}}@font-face{font-family:"Pictos";src:url('data:application/font-woff;base64,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') format('woff'),url('data:font/truetype;base64,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AQIFAw4BAQQCCAEBBAIBAQMDAgYGAgECAgEBAQICAQ0DAQICBQEMBwIFAgICBgMCBQQCBAQMAQMBAQEBBAUBAwkBAwEBAgEDAgIBBAICBgECBgMCBQIGCAUFAQUIAQMFAQELAQEGAQIDAQEBBAEBAQMCBgIEAwQGAgQHAgMDAQIGAQIBAQICAQQBBQECGwQCAQUDAQIDAgcFCAMBBgMEAwQEBAMDAQIDAwUCAgEIBgIKAQ0EBAIGAwQMAwELAQcJCAIDAgYDAQcBBwYDBAYCAgUBAwEBCwcIAgEKIceMUo4vBwIDBQUBBAIKAgEBAQMBAQMCBQIDAgJFAhkBAgEBBwQHAgoBAQUCAwMDAQIJAQUClAEFBQsCCAEDBAcBBAUBAwMBAScCBgEDAwIEAQIBBQEHAgMCAgMMBAMBAQIHARYCAgMEBQQCAgEBBAEBAwYBAwOgAQPKAgMBAQMCAQUCAQEWAgcCBQFxBgoGBQEDAgICCQEJAQ4EAgEBAQQCAgECBAECAQEBAQ8HARMPAgECAQUEAQMFAQIBAQQBBAQGBgMDCwENCgoBBwoDCQQIBAQDAwQEAgECAQIDAgEDAwQCBAEEAQIEAQMDAwUJAQgNAQMICAoQBgIICQYBAgICAQUCBQYGAQUBAgoDAQH+YwMEAgEBEQQHAgMBAggEBQUGIwICAQENAQcBBwIBCAIfBAUGAgEBJgMEAgIBARABAQF9AgICuvb+pPb2AVwzAwMFAggECwIBBAIECQIBAgECBgECAgIEBwECAQMEAgX+wFprEwkCCQIBAwgEBAMHAgQBBAEHAQMDBQoEAQMEAQIBAQIIAgEEAgYCAgMFAQcEDAUMDgIKAQsECQQBAgkBCQICAQEBAQIDAgwDAQQDBAcBAQEKAQQKAQIBBwQCBgkBBQEFAQECAwYDDAMEAgcBAgIBAQESAgMEAwEBAQQJAQgKAQICAQQDBgIEBgYBBAYFAQIBAgECAQIGBAgBAwMCAgEDAQsDAgYCAwoCAgcEAQIGBQ0IBAMCAgIBAQIIBAICCQIEAgECBQQCAQM4QFsBAwEGAgcCBgIBAQICBAEBAQIBAQECAQICAQIDBAMCBAMKBwEKAQoDAQICCwICAQQCBQEBAQEBCwIHBAECAQEBAQIPCAQBAgMEBgoCAQUDAQICAgYGAgQFAgEJAwECAQ0DAQMCBgQBCQMC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') format('truetype'),url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIHdlYmZvbnQgZ2VuZXJhdGVkIGJ5IEZvbnQgU3F1aXJyZWwuCkRlc2lnbmVyICAgIDogRHJldyBXaWxzb24KRm91bmRyeSAgICAgOiBEcmV3IFdpbHNvbgpGb3VuZHJ5IFVSTCA6IGh0dHBwaWN0b3NkcmV3d2lsc29uY29tCjwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0id2ViZm9udEl5Zlpic2VGIiBob3Jpei1hZHYteD0iOTIwIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSIxMDAwIiBhc2NlbnQ9Ijc1MCIgZGVzY2VudD0iLTI1MCIgLz4KPG1pc3NpbmctZ2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPGdseXBoIHVuaWNvZGU9IiAiICBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MDk7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4YTA7IiBob3Jpei1hZHYteD0iNTAwIiAvPgo8Z2x5cGggdW5pY29kZT0iISIgaG9yaXotYWR2LXg9IjkzNiIgZD0iTTg2NSAxMDNxMzcgLTYyIDExIC0xMDYuNXQtOTggLTQ0LjVoLTYyMXEtNzIgMCAtOTcuNSA0NC41dDExLjUgMTA2LjVsMzEwIDUzNHEzNiA2MiA4Ny41IDYydDg3LjUgLTYyek00NzEgNDZxMjMgMCAzOC41IDE2dDE1LjUgMzh0LTE1LjUgMzcuNXQtMzguNSAxNS41cS0yMiAwIC0zNy41IC0xNS41dC0xNS41IC0zNy41dDE1LjUgLTM4dDM3LjUgLTE2ek01MDkgMTg3bDI2IDMwOGgtMTI3bDI2IC0zMDhoNzV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjI7IiBob3Jpei1hZHYteD0iODY1IiBkPSJNNTIgMjg5cTEgNjUgNy41IDExNXQyNi41IDEwMS41dDUzLjUgODYuNXQ5MC41IDU4LjV0MTM1IDI4LjV2LTE1N3EtNjYgMCAtOTUgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNXEtMTggMCAtMzEgMTN0LTEzIDMxdjI1OHY3ek00OTMgMjg5cTAgNjUgNyAxMTV0MjcgMTAxLjV0NTMuNSA4Ni41dDkwLjUgNTguNXQxMzUgMjguNXYtMTU3IHEtNjcgMCAtOTYgLTQ2LjV0LTI5IC0xNDcuNWwtNCAtMWg4NHExOCAwIDMxIC0xM3QxMyAtMzJ2LTI1OHEwIC0xOCAtMTMgLTMxdC0zMSAtMTNoLTIyNHEtMTkgMCAtMzIgMTN0LTEzIDMxdjI1OHEwIDUgMSA3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiMiIGhvcml6LWFkdi14PSI3NDgiIGQ9Ik03MDUgNDgycTkgLTE0IC04IC0xNGgtNDh2LTU2N3EwIC03IC01IC0xMnQtMTIgLTVoLTUxM3EtNyAwIC0xMiA1dC01IDEydjU2N2gtNTJxLTcgMCAtOS41IDR0MS41IDEwbDMxIDQ2cTkgMTQgMjcgMTRoNzV2NjZxMCAyMCAxMiAzMGw0OCA0OXExMiAxMiAzMCAxMmgyMTZxMTggMCAzMCAtMTJsNTIgLTUycTEzIC0xMyAxMyAtMzB2LTYzaDcxcTE4IDAgMjcgLTE0ek0yNDggNTQ2di00aDI1NHY0djI4cTAgMjAgLTEyIDMwbC05IDEwIHEtMTIgMTIgLTMwIDEyaC0xNTVxLTE4IDAgLTMwIC0xMmwtNiAtNnEtMTIgLTEyIC0xMiAtMzB2LTMyek01NzYgNDUwcTAgMTYgLTE2IDE4aC0yNzloLTg5cS03IDAgLTEyIC01LjV0LTUgLTEyLjV2LTQ3NnEwIC03IDUgLTEydDEyIC01aDM2N3E3IDAgMTIgNXQ1IDEydjQ3NnpNMjYzIDQxOHE3IDAgMTIuNSAtNXQ1LjUgLTEydi0zNzlxMCAtNyAtNS41IC0xMnQtMTIuNSAtNWgtMjFxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTIgdDEyLjUgNWgyMXpNMzY0IDVxLTcgMCAtMTIuNSA1dC01LjUgMTJ2Mzc5cTAgNyA1LjUgMTJ0MTIuNSA1aDIxcTcgMCAxMiAtNXQ1IC0xMnYtMzc5cTAgLTcgLTUgLTEydC0xMiAtNWgtMjF6TTQ4NSA1cS03IDAgLTEyIDV0LTUgMTJ2Mzc5cTAgNyA1IDEydDEyIDVoMjJxNyAwIDEyIC01dDUgLTEydi0zNzlxMCAtNyAtNSAtMTJ0LTEyIC01aC0yMnoiIC8+CjxnbHlwaCB1bmljb2RlPSIkIiBob3Jpei1hZHYteD0iODkzIiBkPSJNNTAzIDI4M2gtMTA4bC0xNiA2OGgxMjR2LTY4ek02ODQgMzUxbC0xOCAtNjhoLTEwNGwxIDY4aDEyMXpNNDAwIDExOHEyOCAwIDQ4LjUgLTIwdDIwLjUgLTQ5dC0yMC41IC00OXQtNDguNSAtMjB0LTQ4LjUgMjB0LTIwLjUgNDl0MjAuNSA0OXQ0OC41IDIwek02NTkgMTE4cTI5IDAgNDkgLTIwdDIwIC00OXQtMjAgLTQ5dC00OSAtMjB0LTQ5IDIwdC0yMCA0OXQyMCA0OXQ0OSAyMHpNODMzIDUxNnEyNSAtNyAyNSAtMzNxMCAtMyAtMiAtOSBsLTg4IC0yOTNxLTcgLTI1IC0zMiAtMjVoLTQxN3EtMTIgMCAtMjEuNSA3LjV0LTExLjUgMTguNWwtODEgMzI3aC0xNDlxLTE0IDAgLTI0IDEwdC0xMCAyNHQxMCAyNHQyNCAxMGgxNzZxMjYgMCAzMyAtMjZsMTggLTczaDUwM2w1IDE1cTYgMjQgMzIgMjRxNyAwIDEwIC0xek03MTIgMjMxbDU0IDE3OWgtNDY2bDQ1IC0xODZoMzY1eiIgLz4KPGdseXBoIHVuaWNvZGU9IiUiIGhvcml6LWFkdi14PSI5MDMiIGQ9Ik04NjcgMjc3cTAgLTc5IC0zNy41IC0xNDl0LTEwMi41IC0xMTdsMTEgLTk2di00cTAgLTE3IC0xMSAtMzBxLTEzIC0xNSAtMzQgLTE1aC0xNDhxLTIxIDAgLTM0IDE1cS0xMSAxMyAtMTEgMzB2NWwyIDE4cS02IC0xIC0xOCAtMWgtMTBsMiAtMTd2LTVxMCAtMTcgLTExIC0zMHEtMTIgLTE1IC0zNCAtMTVoLTE0OHEtMjEgMCAtMzQgMTVxLTExIDEzIC0xMSAzMHY1bDExIDkwcS04NiA2MCAtMTI0IDE1M2wtNDQgLTRoLTRxLTE4IDAgLTMwIDEyIHEtMTUgMTIgLTE1IDMzdjE1MnEwIDIxIDE1IDMzcTEyIDEyIDMwIDEyaDRsNDMgLTRxMzQgODUgMTA3IDE0MWwtMiAxMTB2MXYxcTAgMjggMjUgNDNxMTEgNyAyNiA3cTE0IDAgMjUgLTdsMTI4IC03MnEyNSAzIDUxIDNxMTYwIDAgMjcwIC05OXExMTMgLTEwMCAxMTMgLTI0NHpNNjgxIDQ3cTYxIDQxIDk1LjUgMTAxdDM0LjUgMTI5cTAgMTE4IC05NCAyMDJxLTk2IDg1IC0yMzMgODVxLTI5IDAgLTUzIC00bC05IC0xbC0xMzYgNzdsMiAtMTMwIGwtMTIgLThxLTc5IC01NyAtMTA2IC0xNDRsLTcgLTIybC03NSA3di0xMjdsNzUgOGw3IC0yMnEzMyAtOTYgMTI0IC0xNTVsMTUgLTlsLTEzIC0xMTJoMTIzbC05IDc0bDM1IC00cTEzIC0yIDM5IC0ycTI0IDAgNDcgM2wzNiA0bC05IC03NWgxMjNsLTE1IDExNnpNNTAxIDUyMWw3IC0xcTcgMCAxOCAtMnQyNiAtNXQzMiAtOXQzNSAtMTR0MzcgLTIwLjV0MzYgLTI4LjVxOCAtNyA4IC0xOXQtOCAtMjBxLTggLTkgLTIwIC05cS0xMSAwIC0xOSA4IHEtMjQgMjMgLTU5IDM4LjV0LTU1LjUgMTkuNXQtMzUuNSA1aC00cS0xMSAxIC0xOSA5LjV0LTggMTkuNXExIDEyIDkuNSAyMHQxOS41IDh6TTIzMSAzODRxMTkgMjAgNDEgMjZ0MzQgLTVxMTEgLTExIDYuNSAtMzN0LTIzLjUgLTQydC00MC41IC0yNnQtMzMuNSA1dC03IDMzdDIzIDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDI2OyIgaG9yaXotYWR2LXg9IjczMiIgZD0iTTQ2NSA0MDVoMjUwdi0xOThoLTI1MHYtMjUwaC0xOTh2MjUwaC0yNTB2MTk4aDI1MHYyNTBoMTk4di0yNTB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJyIgaG9yaXotYWR2LXg9IjkwOCIgZD0iTTI2NSAxMzlxNzggNzggMTg4LjUgNzh0MTg4LjUgLTc4cTEgMCAxIC0xbC01NSAtNTVxLTEgMCAtMSAxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1ek0xNDAgMjY0cTg1IDg1IDE5OS41IDExNS41dDIyOC41IDB0MTk5IC0xMTUuNWwxIC0xbC01NiAtNTZxMCAxIC0xIDFxLTEwNiAxMDYgLTI1Ny41IDEwNi41dC0yNTcuNSAtMTA1LjV6TTg5MyAzOTJxMCAtMiAyIC0ybC01NiAtNTZsLTIgMnEtMTA0IDEwNCAtMjQ0IDE0MXQtMjc5LjUgMCB0LTI0My41IC0xNDFxLTEgMCAtMSAtMWwtNTYgNTZsMSAxcTEyMCAxMTkgMjgwIDE2MS41dDMxOS41IDB0Mjc5LjUgLTE2MS41ek0zOTIgMTNxMjYgMjUgNjMgMjV0NjMgLTI1bC02MyAtNjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKCIgaG9yaXotYWR2LXg9IjY3MSIgZD0iTTU1MCAzNTloNzd2LTQzN2gtNTgydjQzN2g3NXYxMjhxMCA4NyA2MiAxNDl0MTQ5IDYyaDRoNHE4OCAwIDE0OS41IC02MnQ2MS41IC0xNDl2LTEyOHpNNDAyIDJsLTMyIDE0MXEzMiAyMCAzMiA1N3EwIDI4IC0xOSA0N3QtNDcgMTlxLTI3IDAgLTQ2LjUgLTE5dC0xOS41IC00N3EwIC0zOCAzMyAtNTZsLTMzIC0xNDJoMTMyek00NDUgMzU5djEyOHEwIDQzIC0zMSA3NHQtNzUgMzFoLTNoLTVxLTQzIDAgLTc0IC0zMXQtMzEgLTc0di0xMjggaDIxOXoiIC8+CjxnbHlwaCB1bmljb2RlPSIpIiBob3Jpei1hZHYteD0iODg5IiBkPSJNNjQ1IDY5OHE4OCAwIDE1MCAtNjEuNXQ2MiAtMTQ5LjV2LTEyOGgtMTA2djI5bDM2IDM0djEzaC0zNnY1MnEwIDQ0IC0zMSA3NC41dC03NSAzMC41aC0yaC01cS00NCAwIC03NSAtMzAuNXQtMzEgLTc0LjV2LTEyOGg3N3YtNDM4aC01ODR2NDM4aDQwMXYxMjhxMCA4OCA2MiAxNDkuNXQxNTAgNjEuNWgzaDR6TTM4MiAwbC0zMyAxNDJxMzMgMjAgMzMgNTdxMCAyOCAtMTkuNSA0Ny41dC00Ni41IDE5LjVxLTI4IDAgLTQ3LjUgLTE5LjUgdC0xOS41IC00Ny41cTAgLTM3IDMzIC01N2wtMzMgLTE0MmgxMzN6IiAvPgo8Z2x5cGggdW5pY29kZT0iKiIgaG9yaXotYWR2LXg9Ijc3NyIgZD0iTTczNyA0OTBsLTE5NSAtMTk1bDE5NSAtMTk2bC0xNTQgLTE1M2wtMTk1IDE5NWwtMTk1IC0xOTVsLTE1NCAxNTNsMTk1IDE5NmwtMTk1IDE5NWwxNTQgMTU0bDE5NSAtMTk1bDE5NSAxOTV6IiAvPgo8Z2x5cGggdW5pY29kZT0iKyIgZD0iTTQ2MCA3MDJxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTcwOSAyNjJ2NDFxMCAxNSAtMTAuNSAyNS41dC0yNS41IDEwLjVoLTEyMXEtMTUgMCAtMjUuNSAxMXQtMTAuNSAyNnYxMjFxMCAxNSAtMTEgMjUuNXQtMjYgMTAuNWgtNDFxLTE1IDAgLTI1LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTEyMXEwIC0xNSAtMTEgLTI2dC0yNiAtMTFoLTEyMCBxLTE2IDAgLTI2LjUgLTEwLjV0LTEwLjUgLTI1LjV2LTQxcTAgLTE1IDEwLjUgLTI2dDI2LjUgLTExaDEyMHExNSAwIDI2IC0xMC41dDExIC0yNS41di0xMjFxMCAtMTUgMTAuNSAtMjUuNXQyNS41IC0xMC41aDQxcTE1IDAgMjYgMTAuNXQxMSAyNS41djEyMXEwIDE1IDEwLjUgMjUuNXQyNS41IDEwLjVoMTIxcTE1IDAgMjUuNSAxMXQxMC41IDI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiwiIGhvcml6LWFkdi14PSI5MTUiIGQ9Ik00NTggNzAxcTE3MyAwIDI5NSAtMTIyLjV0MTIyIC0yOTUuNXEwIC0xMDQgLTQ2IC0xOTFxLTU5IC0xMTUgLTE3MiAtMTc2cS05NCAtNTEgLTE5OSAtNTFxLTEwMSAwIC0xOTQgNDhxLTExNCA2MCAtMTc1IDE3M3EtNDkgOTMgLTQ5IDE5N3EwIDE3MyAxMjIuNSAyOTUuNXQyOTUuNSAxMjIuNXpNNzYwIDIwM3ExMSA0MSAxMSA4MHEwIDEzMCAtOTIgMjIydC0yMjEgOTJxLTEzMCAwIC0yMjIgLTkydC05MiAtMjIycTAgLTM5IDEyIC04NSBxMyAtOSA5IC0yNXEyMSA2IDQ1IDZxNjUgMCAxMTEuNSAtNDZ0NDYuNSAtMTExcTAgLTE3IC01IC0zN3E0IC0yIDEyIC00cTQyIC0xMSA4MyAtMTFxNDUgMCA4NyAxMnEyIDAgNS41IDJ0NS41IDJxLTUgMjIgLTUgNDBxMCA2NCA0Ni41IDExMC41dDExMC41IDQ2LjVxMjMgMCA0NCAtNnE1IDE1IDggMjZ6TTQ5OCAzMzNxMjUgLTE5IDI1IC01MHEwIC0xNCAtNSAtMjRxLTE2IC0zOSAtNTggLTM5cS0xMSAwIC0yNCA1cS0zOSAxNiAtMzkgNTggcTAgMSAwLjUgNHQwLjUgNWwtNTYgMjQ1bDIxIDl6TTQ3OCA1NjV2LTk1aC0zOXY5NWgzOXpNNjMyIDQ5MGwyNyAtMjdsLTY4IC02OGwtMjcgMjh6TTYyOSAzMDB2MzhoOTZ2LTM4aC05NnpNMTkyIDMwMHYzOGg5NXYtMzhoLTk1ek0yNDQgNDYzbDI4IDI3bDY3IC02N2wtMjcgLTI4eiIgLz4KPGdseXBoIHVuaWNvZGU9Ii0iIGhvcml6LWFkdi14PSI5MjEiIGQ9Ik00NjEgNjk4cTE3NCAwIDI5NyAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk3IC0xMjMuNXEtMTc1IDAgLTI5OCAxMjMuNXQtMTIzIDI5Ny41dDEyMyAyOTcuNXQyOTggMTIzLjV6TTY5NCAyNTh2MzlxMCAxOSAtMTQgMzN0LTMzIDE0aC0zNzZxLTE5IDAgLTMzIC0xNHQtMTQgLTMzdi0zOXEwIC0yMCAxNCAtMzMuNXQzMyAtMTMuNWgzNzZxMTkgMCAzMyAxMy41dDE0IDMzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iLiIgaG9yaXotYWR2LXg9Ijk0NSIgZD0iTTE0NyAzOTJxMzcgMCA2NCAtMjd0MjcgLTY0cTAgLTM4IC0yNi41IC02NXQtNjQuNSAtMjd0LTY1IDI3dC0yNyA2NXQyNyA2NC41dDY1IDI2LjV6TTQ3MiAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY0LjUgMjd0LTI2LjUgNjVxMCAzNyAyNi41IDY0dDY0LjUgMjd6TTc5OCAzOTJxMzggMCA2NSAtMjYuNXQyNyAtNjQuNXQtMjcgLTY1dC02NSAtMjd0LTY1IDI3dC0yNyA2NXEwIDM3IDI3IDY0dDY1IDI3eiAiIC8+CjxnbHlwaCB1bmljb2RlPSIvIiBob3Jpei1hZHYteD0iOTEyIiBkPSJNNjkzIDUzN2gxODF2LTEyN3YtMzAxaC0xODF2LTUzbC0xMzYgLTEzNmgtMzM2djE4OWgtMTgxdjMwMXYxMjdoMTgxdjE2M2g0NzJ2LTE2M3pNODE2IDQ4MGgtMTA1di01M2gxMDV2NTN6TTI3NSA2NDZ2LTEwOWgzNjR2MTA5aC0zNjR6TTUwMiAtMjZ2MTM2aDEzN3YxMzF2NTVoNTR2LTEyOWg2N3YxOTdoLTYwNHYtMTk3aDY1djExMXYxOGg1NHYtNTV2LTI2N2gyMjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iMCIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTY0MyAxNjFsMzkgLTQwbDI4IC0yN3EtNDcgLTYwIC0xMTYuNSAtOTQuNXQtMTQ4LjUgLTM0LjVxLTE0MCAwIC0yMzguNSA5OHQtOTkuNSAyMzhoLTExaC0yaC02N2wxMjYgMTI2bDEyNyAtMTI2aC01MWgtMjhxMCAtMTAwIDcxLjUgLTE3MXQxNzIuNSAtNzFxNjAgMCAxMTIuNSAyNy41dDg1LjUgNzQuNXpNODEwIDMwMWg1MmwtMTI3IC0xMjZsLTEyNiAxMjZoNTBoMzB2MnEwIDEwMSAtNzEuNSAxNzIuNXQtMTcyLjUgNzEuNSBxLTYxIDAgLTExMy41IC0yOC41dC04Ni41IC03Ni41bC0zOSAzOWwtMjggMjhxNDcgNjEgMTE2LjUgOTZ0MTUwLjUgMzVxMTM5IDAgMjM4IC05OXQ5OSAtMjM4di0yaDI4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjEiIGhvcml6LWFkdi14PSI3NDMiIGQ9Ik02ODggMjM1aDI5di0zMHEwIC0xNDMgLTEwMC41IC0yNDMuNXQtMjQzLjUgLTEwMC41dC0yNDQgMTAxdC0xMDEgMjQzcTAgMTQzIDEwMSAyNDR0MjQ0IDEwMXExNiAwIDI1IC0xdjc5djcxbDQ5IC01MGwxNTcgLTE1N2wyMSAtMjFsLTIxIC0yMGwtMTU3IC0xNTdsLTQ5IC01MHY3MHY4OHEtMTggMiAtMjUgMnEtODMgMCAtMTQxIC01OHQtNTggLTE0MXEwIC04MiA1OC41IC0xNDB0MTQwLjUgLTU4dDE0MCA1OHQ1OCAxNDB2MzBoMzBoODd6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjIiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NTkgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjNxLTE3MyAwIC0yOTYgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk2IDEyM3pNNzI4IDM5MnE2IDYgNiAxNXQtNiAxNmwtNTUgNTRxLTYgNiAtMTUgNnQtMTYgLTZsLTI0MyAtMjQ0cS0xNSAtMTYgLTMxIDBsLTg4IDg4cS0xNiAxNiAtMzEgMGwtNTUgLTU0cS02IC03IC02IC0xNnQ2IC0xNWwxMzkgLTE0MHExNSAtMTUgMzcgLTE1aDI2cTIwIDAgMzcgMTV6ICIgLz4KPGdseXBoIHVuaWNvZGU9IjMiIGhvcml6LWFkdi14PSI4NjgiIGQ9Ik0yMiAyMzlxLTEwIDEwIC0xMCAyNHQxMCAyNGw4MyA4M3ExMCAxMCAyMy41IDEwdDIzLjUgLTEwbDEzNiAtMTM1cTEwIC0xMCAyMy41IC0xMHQyMy41IDEwbDM3MSAzNzJxMTAgMTAgMjMuNSAxMHQyMy41IC0xMGw4MyAtODJxMTAgLTEwIDEwIC0yMy41dC0xMCAtMjMuNWwtNDUwIC00NTFxLTI0IC0yNCAtNTcgLTI0aC0zOXEtMzIgMCAtNTYgMjR6IiAvPgo8Z2x5cGggdW5pY29kZT0iNCIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTU5IDcwMGw3MDIgLTM1MWwtNzAyIC0zNTB2NzAxeiIgLz4KPGdseXBoIHVuaWNvZGU9IjUiIGhvcml6LWFkdi14PSI4MTYiIGQ9Ik01OSAxdjY5OGgyNjJ2LTY5OGgtMjYyek00OTUgNjk5aDI2MnYtNjk4aC0yNjJ2Njk4eiIgLz4KPGdseXBoIHVuaWNvZGU9IjYiIGhvcml6LWFkdi14PSI4MTciIGQ9Ik03NTggMmgtNjk5djY5OGg2OTl2LTY5OHoiIC8+CjxnbHlwaCB1bmljb2RlPSI3IiBob3Jpei1hZHYteD0iOTIyIiBkPSJNNDIzIDQxN3YxODJsNDg1IC0yNDNsLTQ4NSAtMjQydjE4MWwtMzY0IC0xODF2NDg1eiIgLz4KPGdseXBoIHVuaWNvZGU9IjgiIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik01MDAgMjk1di0xODJsLTQ4NiAyNDNsNDg2IDI0MnYtMTgybDM2MyAxODJ2LTQ4NXoiIC8+CjxnbHlwaCB1bmljb2RlPSI5IiBkPSJNNDYwIDcwMHExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzdC0yOTcgMTIzdC0xMjMgMjk3dDEyMyAyOTd0Mjk3IDEyM3pNMjk4IDY0bDQzMSAyMTZsLTQzMSAyMTZ2LTQzMnoiIC8+CjxnbHlwaCB1bmljb2RlPSI6IiBob3Jpei1hZHYteD0iODAxIiBkPSJNNjcxIDEwMGwxMDUgLTEwMnEwIC0xNiAtMTIgLTI4LjV0LTI5IC0xMi41aC0yNDJxMSAtNCAxIC0xMnEwIC0zOSAtMjcuNSAtNjYuNXQtNjYuNSAtMjcuNXQtNjYuNSAyNy41dC0yNy41IDY2LjVxMCAyIDAuNSA2dDAuNSA2aC0yNDFxLTE2IDAgLTI4LjUgMTIuNXQtMTIuNSAyOC41bDEwNSAxMDJxLTEgOCAtMSAyNXYyMDhxMCA4OCA1MC41IDE1OHQxMzAuNSA5OHEtNCAxMSAtNCAyNnEwIDM5IDI3LjUgNjYuNXQ2Ni41IDI3LjUgdDY2LjUgLTI3LjV0MjcuNSAtNjYuNXEwIC0xNCAtMyAtMjZxODAgLTI4IDEzMC41IC05OC41dDUwLjUgLTE1Ny41di0yMDhxMCAtMTcgLTEgLTI1ek0zNDggNjE1cTAgLTUgMiAtMTVxMjggNSA1MCA1cTIzIDAgNTAgLTVxMyA4IDMgMTVxMCAyMiAtMTUuNSAzN3QtMzcuNSAxNXQtMzcgLTE1dC0xNSAtMzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iOyIgaG9yaXotYWR2LXg9Ijg4NyIgZD0iTTI5OSA0MThsLTQyIC00NHEtNCAtNSAtMTEgLTEyLjVsLTEyLjUgLTEzLjVsLTEwLjUgLTExcS0xOCAxNiAtMjcgMjNxLTQ5IDQwIC04MSA0MGgtMTAxdjExMmgxMDFxNTkgLTEgMTE4IC00MXEzMyAtMjEgNjYgLTUzek0zOTkgMTU2bDQ0IDQ3bDMyIDM0cTE2IC0xNCAyNiAtMjJxNTIgLTQyIDg0IC00MGg4NnY5NGwxNzUgLTE0OGwtMTc1IC0xNDZ2ODhoLTg2cS01NiAwIC0xMjAgNDBxLTI3IDE3IC02NiA1M3pNNTgyIDQwMCBxLTIzIDAgLTU2IC0yMnEtMzUgLTIzIC03OCAtNjhxLTE5IC0xOSAtNTQuNSAtNTcuNWwtNjYuNSAtNjkuNXQtNjAgLTU1cS04MCAtNjQgLTE1NCAtNjVoLTk5djExMmg5OXEyNiAwIDU5IDIycTI5IDE4IDc5IDY4cTUgNSA3MyA3Ny41dDEwNyAxMDQuNXE4MSA2NCAxNTIgNjVoODh2OTJsMTc1IC0xNDdsLTE3NSAtMTQ3djkwaC04OGgtMXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gzYzsiIGhvcml6LWFkdi14PSIzOTUiIGQ9Ik0xMTUgNDEwbDIyMiAyMjN2LTY2OGwtMjIyIDIyMmgtMTEydjIyM2gxMTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iPSIgaG9yaXotYWR2LXg9Ijk0NyIgZD0iTTg5NiAzNzl2LTE3NmwtNjMgLTI1di0xMDhoLTc3M3Y0NDJoNzczdi0xMDl6TTc2MCAxNDR2Mjk0aC02MjZ2LTI5NGg2MjZ6TTM3MyAzOTBsMjIyIC0xOThoLTQxM3YxOThoMTkxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDNlOyIgaG9yaXotYWR2LXg9Ijg4OSIgZD0iTTEyNiA0MDhsMjIyIDIyM3YtNjY4bC0yMjIgMjIyaC0xMTJ2MjIzaDExMnpNNDM0IDQzOHE3NSAtNTAgNzUgLTE0MHQtNzUgLTEzOWwtMzQgNjdxMzUgMjggMzUgNzJ0LTM1IDcydjJ6TTY4MCAyOThxMCAtOTIgLTQ2IC0xNjguNXQtMTIzIC0xMjAuNWwtMzQgNjZxNTkgMzQgOTQgOTMuNXQzNSAxMjkuNXQtMzUgMTI5LjV0LTk0IDkzLjV2MmwzMyA2NXE3NyAtNDQgMTIzLjUgLTEyMS41dDQ2LjUgLTE2OC41ek01ODcgNzM4IHExMTggLTY2IDE4OC41IC0xODN0NzAuNSAtMjU3dC03MC41IC0yNTd0LTE4OC41IC0xODJsLTMzIDY2cTk5IDU2IDE1OC41IDE1NS41dDU5LjUgMjE3LjV0LTU5LjUgMjE3LjV0LTE1OS41IDE1NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Ij8iIGhvcml6LWFkdi14PSI5MjIiIGQ9Ik00NjEgNzAycTE3NSAwIDI5OCAtMTIzLjV0MTIzIC0yOTcuNXQtMTIzIC0yOTcuNXQtMjk4IC0xMjMuNXEtMTc0IDAgLTI5Ny41IDEyMy41dC0xMjMuNSAyOTcuNXQxMjMuNSAyOTcuNXQyOTcuNSAxMjMuNXpNNDg5IDI5cTE5IDE4IDE5IDQ3dC0xOSA0N3EtMjAgMTcgLTQ5IDE3cS0yOCAwIC00OCAtMTdxLTIwIC0yMCAtMTggLTQ3cS0yIC0yNyAxOCAtNDdxMTkgLTE3IDQ4IC0xN3EzMiAwIDQ5IDE3ek02MDIgMzUxcTEwIDI0IDEwIDYyIHEwIDU4IC00MSA5M3EtMzggMzQgLTEwOCAzNHEtNDkgMCAtODUgLTEycS0zMyAtMTEgLTYzIC0zMWwtOSAtNmw0NiAtODdsMTAgOHEyIDEgMTkgMTFxNyA0IDIzIDEwcTEwIDQgMjMgNnE3IDIgMjEgMnEzMCAwIDM4IC0xMHExMSAtMTEgMTEgLTMxcTAgLTEzIC03IC0yNXEtMTIgLTE2IC0yMSAtMjRxLTQgLTQgLTguNSAtOGwtMTAgLTl0LTkuNSAtOHEtMTcgLTE2IC0zMCAtMzRxLTEyIC0yMCAtMjAgLTQ2cS01IC0yMiAtNSAtNDEgcTAgLTQgMC41IC0xMnQwLjUgLTEybDEgLTExaDExaDg4djEycTAgMjYgOCA0MnE5IDE2IDIxIDMwcTE0IDE0IDI5IDI1dDMyIDMwcTE0IDE3IDI1IDQyeiIgLz4KPGdseXBoIHVuaWNvZGU9IkAiIGhvcml6LWFkdi14PSI1MDgiIGQ9Ik0yNTggNzAzcTkyIDAgMTU3LjUgLTY2dDY1LjUgLTE1N3EwIC0xMDcgLTIwMyAtNTQ2bC0yNCAtNTBsLTYzIDEzNXQtMTAxIDI0NC41dC02MyAyMTYuNXEwIDkyIDY1LjUgMTU3LjV0MTU3LjUgNjUuNWg0aDR6TTI1NCAzOTdxNDIgMCA3MiAzMHQzMCA3M3EwIDQyIC0zMCA3MnQtNzIgMzBxLTQzIDAgLTczIC0zMHQtMzAgLTcycTAgLTQzIDMwIC03M3Q3MyAtMzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iQSIgaG9yaXotYWR2LXg9Ijg5MyIgZD0iTTMxNSAyOTlsNzAgLTcwcS0zOCAtMzIgLTg4LjUgLTMwdC04Ni41IDM4bC0xNDQgMTQ0cS0zOCAzNyAtMzggOTF0MzggOTFsOTkgOTlxMzggMzggOTEuNSAzOHQ5MS41IC0zOGwxNDQgLTE0NHEzNiAtMzYgMzcuNSAtODYuNXQtMzAuNSAtODguNWwtNzAgNjlxMTAgMjAgLTYgMzhsLTE0NCAxNDRxLTkgOSAtMjIuNSA5dC0yMi41IC05bC05OSAtOTlxLTEwIC0xMCAtMTAgLTIzdDEwIC0yM2wxNDQgLTE0NHExNiAtMTYgMzYgLTZ6TTcyOCAtOTkgcS0zOCAtMzcgLTkxIC0zN3QtOTEgMzdsLTE0NSAxNDVxLTM1IDM1IC0zNyA4NS41dDMwIDg4LjVsNjkgLTcwcS05IC0yMCA3IC0zNmwxNDQgLTE0NHE5IC0xMCAyMi41IC0xMHQyMi41IDEwbDk5IDk5cTEwIDkgMTAgMjIuNXQtMTAgMjIuNWwtMTQ0IDE0NXEtMTYgMTYgLTM3IDVsLTY5IDcwcTM4IDMyIDg4LjUgMzAuNXQ4Ni41IC0zNy41bDE0NCAtMTQ0cTM3IC0zOCAzNyAtOTEuNXQtMzcgLTkxLjV6TTI2MyA0NjVxMTQgMTQgMzQgMTQgdDM0IC0xNGwyOTUgLTI5NXExNCAtMTQgMTQgLTM0dC0xNCAtMzR0LTM0IC0xNHQtMzQgMTRsLTI5NSAyOTRxLTE0IDE0IC0xNCAzNC41dDE0IDM0LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQiIgaG9yaXotYWR2LXg9Ijg4MSIgZD0iTTczNCAzMTFxLTE0IC0yNyAtNDIgLTUwcS0xMiAtMzAgLTMxLjUgLTU4dC01NC41IC02MHQtOTIuNSAtNTEuNXQtMTI5LjUgLTE5LjVxLTc3IDAgLTE0My41IDIxdC0xMDUuNSA1MXQtNjcgNjB0LTM5IDUxbC0xMSAyMXE1IC0zIDE0LjUgLTYuNXQzOC41IC0xMS41dDU4IC0xMnQ3MCAtMC41dDc4IDE3LjVxLTY0IDI3IC05NiA5MXEtMjEgNDMgLTggNTRxNyA3IDI1IC0xMHE1MyAtNTAgMjEyIC00MXE3IDggMjEgMjZ2NXEwIDY3IDQ3IDExNCB0MTE0IDQ3cTY0IDAgMTEwIC00My41dDUxIC0xMDYuNWwxMDIgLTQ5ek02MjYgNDY5cS0xOSAwIC0zMiAtMTMuNXQtMTMgLTMyLjV0MTMgLTMydDMyIC0xM3QzMi41IDEzdDEzLjUgMzJ0LTEzIDMyLjV0LTMzIDEzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iQyIgaG9yaXotYWR2LXg9IjkxMyIgZD0iTTc3MSAzMTdxNDYgLTE4IDc0IC01OS41dDI4IC05Mi41cTAgLTY4IC00OC41IC0xMTYuNXQtMTE2LjUgLTQ4LjVxLTIgMCAtNSAwLjV0LTQgMC41aC00OTRoLTFoLTJxLTY5IDEgLTExNy41IDUwdC00OC41IDExOXEwIDQ1IDIyLjUgODMuNXQ2MC41IDYwLjVxLTYgMTYgLTYgMzVxMCA0NyAzNCA4MXQ4MSAzNHEzOCAwIDcxIC0yNXEzMSA2NCA5MSAxMDN0MTMzIDM5cTEwMyAwIDE3NiAtNzIuNXQ3MyAtMTc2LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkQiIGhvcml6LWFkdi14PSI5MTciIGQ9Ik00NTkgNjk4cTE3MyAwIDI5NS41IC0xMjN0MTIyLjUgLTI5NnQtMTIyLjUgLTI5NS41dC0yOTUuNSAtMTIyLjV0LTI5NiAxMjIuNXQtMTIzIDI5NS41dDEyMyAyOTZ0Mjk2IDEyM3pNNTc0IDI1MnEtMTEgMTIgLTExIDI4dDExIDI4bDEwOSAxMDhxMTEgMTIgMTEgMjguNXQtMTEgMjcuNWwtMzEgMzFxLTEyIDExIC0yOC41IDExdC0yNy41IC0xMWwtMTA4IC0xMDlxLTEyIC0xMSAtMjguNSAtMTF0LTI3LjUgMTFsLTEwOSAxMDkgcS0xMSAxMSAtMjcuNSAxMXQtMjcuNSAtMTFsLTMxIC0zMXEtMTEgLTExIC0xMSAtMjcuNXQxMSAtMjguNWwxMDkgLTEwOHExMSAtMTIgMTEgLTI4dC0xMSAtMjhsLTEwOSAtMTA4cS0xMSAtMTIgLTExIC0yOC41dDExIC0yNy41bDMxIC0zMXExMSAtMTEgMjcuNSAtMTF0MjcuNSAxMWwxMDkgMTA5cTExIDExIDI3LjUgMTF0MjguNSAtMTFsMTA4IC0xMDlxMTEgLTExIDI3LjUgLTExdDI4LjUgMTFsMzEgMzFxMTEgMTEgMTEgMjcuNXQtMTEgMjguNXogIiAvPgo8Z2x5cGggdW5pY29kZT0iRSIgaG9yaXotYWR2LXg9Ijg5NSIgZD0iTTQ0OCA1MzFxNjMgMCAxMjkuNSAtMjMuNXQxMTUuNSAtNTd0ODkuNSAtNjd0NjEuNSAtNTcuNWwyMSAtMjN2LThsLTIyIC0yNC41dC01OS41IC01NC41dC05MiAtNjl0LTExNCAtNTQuNXQtMTMwLjUgLTI0LjV0LTEyOS41IDIzLjV0LTExNS41IDU3dC04OS41IDY3dC02MS41IDU2LjVsLTIxIDI0djlsMjIgMjQuNXQ1OS41IDU0LjV0OTIgNjguNXQxMTQgNTR0MTMwLjUgMjQuNXpNNDQ2IDE1OHE1OCAwIDk4LjUgNDAuNXQ0MC41IDk4LjUgcTAgNTcgLTQwLjUgOTcuNXQtOTguNSA0MC41cS01NyAwIC05Ny41IC00MC41dC00MC41IC05Ny41cTAgLTU4IDQwLjUgLTk4LjV0OTcuNSAtNDAuNXpNNDQ2IDM2MXEyNiAwIDQ1IC0xOXQxOSAtNDV0LTE5IC00NC41dC00NSAtMTguNXQtNDQuNSAxOC41dC0xOC41IDQ0LjV0MTguNSA0NXQ0NC41IDE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IkYiIGhvcml6LWFkdi14PSI3MDQiIGQ9Ik0yMjQgNzAwaDQyMnYtODE4aC01OTN2NjQ2bDE3MSAxNzF2MXpNNTc4IC01MHY2ODJoLTI4NXYtMTcyaC0xNzJ2LTUxMGg0NTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iRyIgZD0iTTQ2MCA2OThxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTczOCA0MDFsLTEgLTNxLTEgLTMgLTEgLTUuNXQyIC0yLjVxMCAtMiAzIC02dDMgLTh2LTExcTEgLTIgNSAtM3ExIC00IDYgLTV0NiAzcS0zIDAgLTIuNSA0LjV0LTAuNSA0LjVxMCAyIC0xIDNxLTIgMiAtMiAzaDdxMCAyIC0yIDV0LTIgNHEtMSAwIC0yLjUgLTF0LTIgLTF0LTAuNSAyIHQtNCA2bC0yIDdxMyAwIDYgMXEtMSAwIDQgMnEtMSAxIC0yIDRxLTIgNCAtNyAycS0yIDAgLTUgLTIuNXQtNSAtMi41ek03MzUgODFxNjMgOTAgNjMgMTk3cTAgMTkgLTEgMjhxLTkgMCAtMTMgMnEtNCAwIC0xNC41IDQuNXQtMTYuNSAyLjVxMCAxIC0xIDFxMiAzIC01IDExcS01IDQgLTcgMHEtMiAtMyA1IC0xMHEwIC0yIDIgLTZxMiAtMSAxIC0zdC0xIC0zcTQgMCA1IDdxMCAtMSAxIC0xcS0yIC0zIDEgLTZ2LTVxMTAgMCAxNCAxMCBxMSAwIDEgLTJ0MSAtM3EzIC0zIDIgLTV0MiAtMnEyIC0xIDIgMXYycTQgLTIgNCAtNnQtNCAtNnEwIC0xIC0xIC0zdC0xIC00cTAgLTYgLTQgLThsLTQgLTJxLTQgLTMgLTggLTUuNXQtNCAtMy41cS0xMiAwIC0xNSAtN3EtNyAwIC0xMSAtNHEtNiAwIC04LjUgNnQtNC41IDZsLTIgNXExIDAgLTEuNSA2bC01LjUgMTN0LTMgOWwtNSAxMHEtMiAxIC03IDEycS04IDQgLTEwIDEzcTEwIDAgMTAgNHEtMSAwIC0yIDFxLTIgMiAxIDJsMyA5IHEwIDEgMSA1LjV0MSA2LjVxLTIgMCAtOCAtMnEwIC0xIC0xLjUgLTAuNXQtMy41IDAuNWwtMyAxcTAgMSAtNi41IDB0LTguNSAycS0yIDIgLTQgMTRxLTEgMyAtOCAzcS0zIDEgLTMuNSAtMXQwLjUgLTVsMSAtNHEyIDAgLTIgLTdxLTEgLTEgLTEgLTJxLTQgMSAtNiA2dC00IDZxLTEgNCAtMyA0cTAgMTAgLTEgMTBsLTMgMXEtNCAyIC01IDNxLTIgMCAtNS41IDMuNXQtNi41IDUuNXQtNCAwbDMgLTZxMiAwIDUgLTQuNXQ3IC0zLjV2LTUgcTMgMSA0LjUgLTEuNXQyLjUgLTIuNXEwIC0xIC0zIDBxLTQgMiAtMyAtMXEyIC02IC00IC05cTAgMTIgLTMgMTJxLTIgMyAtNyA1dC02IDRxLTEgMCAtMy41IDMuNXQtNC41IDQuNXEtMiAtMiAtNSAtMnEtMSAtMiAtNC41IC0yLjV0LTcuNSAwLjVsLTMgMXEtNyAtMTggLTggLTIwcS0xIC0zIC0zIC01dC0zIC01cTAgLTEgLTcuNSAtMS41dC03LjUgLTEuNXEtMTEgNCAtMTEgMTN2NXQxIDl0MSA2bDIgLTJoMy41aDQuNXQzLjUgMXQxLjUgMiBxNCAwIDMgLTRxOSAtMyA5IDNxLTIgMCAtMiAycTMgNCAyIDd0LTQgNnQtMyA0bC00IDRxOSAtNiAxMSAtMXEwIDEgLTEgM3YxcTIgLTIgMy41IC0yLjV0Mi41IDEuNXEyIDEgMyAzdjZxMyAtNCA0LjUgMHQyLjUgNXEwIC0zIDMgMHEyIDIgMyAycTEgMiA1IDIuNXQ1IDMuNXEtMyAxIC0zIDEycTIgMCA0LjUgMS41dDMuNSAxLjV0MiAtMnEwIC02IDEgLTZxNCAyIDQgNXEtMiAwIC01IDEwcS0zIDAgLTUgLTJxLTMgMCAtNy41IDF0LTYuNSAxIHEtNyA3IC02IDdxLTIgNCAyIDVoMnEwIDIgMTEuNSA1dDEyLjUgOHEtNiAwIDggMTNxMTAgOCAxNCA4cTEgMCA5LjUgMmwxNC41IDMuNXQ4IC0wLjVxMjIgMCAyMiAtMnExIDAgMy41IC0xdDQgLTEuNXQzLjUgMC41cTMgMiAxMSAtMnQ4IC04cS0zIDAgLTEyIC0xdC0xNCAtMXYtMnEyIDAgNS41IC00LjV0Mi41IC02LjVxMyAwIDYgMnQ0IDJxMCAtMiAxIC0zcTMgLTIgNCAzbC0xIDRxMSAyIDQuNSAyLjV0NC41IDMuNXEtNDcgNTYgLTExNC41IDg4IHQtMTQzLjUgMzJxLTEzNCAwIC0yMzEgLTkxcTEgLTEgNSAybDIgMXEwIC02IDEgLThsMyAtN3E4IDAgOSAtMmgtNXExIC02IC0zIC00cS0zIDEgLTQgMXEwIDEgLTMgMnQtNSAwdDAgLTVxMSAwIDIgLTF0MyAtMnEyIDAgNi41IC0xdDYuNSAtMnEyIDAgNSAwLjV0NCAwLjVxMiAxIDMgMnQtMSAycTEgMiAtNCA0cTAgMSAxMSAxcTIgMiAxLjUgMy41dDAuNSAzLjV0NCAydDQgM3E0IC0yIDUgLTZxMSAwIDMgLTNxOSAtMTAgOSAtM3E2IC0xIDYgLTExIHE3IDEgNyAxMXEtMSAwIC0xIDNoNHEyIC0xIDIgMXExIDAgMSAtMmg4di0xMXEwIC0yIC0yIC0zdC0zIC0xbC0yIC0xcS0zIC00IC0xLjUgLTV0Ni41IC0zLjV0NiAtMy41bC04IDFxLTEgMCAtNC41IC0wLjV0LTYgLTF0LTQuNSAwLjVxNSAwIDcgMTFxLTggMiAtMTEgLTVxLTEgLTQgLTQgLTMuNXQtNCAtMS41bC0yIC0xcS0zIC0xIC01IC0xLjV0LTIgMC41cS03IC0yIC03IC0xN3ExMSAtOCAxMSAtMTJxNCAtMSA5LjUgLTJ0OC41IC0xIHExIC0zIDQgLTNxMCAtNCA5IC00cTAgNiA2IC00cTEgLTIgMSAtM3EtMSAwIDAgLTIuNXQzIC01LjVxLTIgMCAtMSAtMXEyIC0yIDUuNSAtMXQzLjUgM3EtMiAwIC0yIDZxLTYgNiAxIDhxMCAtNCA2IDFxMiAyIC0xIDNxMiA5IDAgMTJxLTEgMSAtMi41IDF0LTIuNSAycTQgMSAxIDE0aDVxMiAwIDUuNSAtMS41dDUuNSAtMXQzIDMuNXEzIC0yIDQuNSAtNXQ0LjUgMXEwIC0xIDQgLTUuNXQ1IC00LjVxMCAtMyAyIC0zbC0xIC0ycTcgMCA3IDEgcTYgMCA2IDhxMSAwIDIuNSAtM2wzIC02dDIuNSAtM2wyLjUgLTIuNWwzIC0zdDIuNSAtM3QxIC0yLjVxMiAtMiAyIC01cTEgMCAyIDJxMyAzIDMgLTFxMiAwIDQuNSAtMi41dDIuNSAtMy41cS0yIDAgLTEuNSAtMnQtMC41IC0ycTAgLTEgLTExIC0xcS0xIC01IC02IC02dC0xMSAwLjV0LTExIC0wLjVxLTQgLTIgLTkuNSAtOC41dC01LjUgLTEwLjVxMyAwIDcuNSAzLjV0Ni41IDQuNXEyIDAgMTAgNHEwIC0xIDEgLTF2LTFxLTYgMCAtMiAtNyBxMSAtMSAxIC0ycTMgLTUgOCAtNXEwIC0xIC0yLjUgLTF0LTIuNSAtMmwtNSAtM2gtNmwxIDFsMSAxaDN2NHEtMyAwIC02IC0xLjV0LTUgLTEuNXEtNCAtNCAtNiAtNHEtMiAtMTAgLTYgLTEybC0yIC0xbC00IC0ybC0yIC0ybC0yIC0ycS0xIC0yIC0yIC01cS0zIC03IC0zIC05cS0xIDAgLTMuNSAtNS41dC02LjUgLTUuNXEtMSAtMiAtNS41IC02dC00LjUgLTEwcTEgLTEgMS41IC00dDEuNSAtNi41dDEgLTQuNXEwIC04IC00IC04bC0yIDN0LTEgMyBxMCA0IC00IDEycTAgMiAtNC41IDEuNXQtNS41IC0wLjVxLTEgMyAtMTMgM3EwIC0xIDEgLTJ0MSAtM3EtNiAtMiAtNyAtMnEtMiAwIC00LjUgMi41dC01LjUgMS41cS0xNCAtMiAtMTQgLTE2cS0xIDAgLTEgLTguNXQxIC04LjVxMCAtMiAyIC02dDIgLTVxMiAwIDYgLTR0NSAtNHExIC00IDUgLTRsMiAxbDIgNHEtMyAxIC0xLjUgMy41dDMuNSAzLjVxMCAtMiA2IDJsNiAybDIgMnExIC0zIC0xIC00cS0yIDAgLTMgLTNsLTEgLTIgcS0xIC0yIC0yIC01dC0xIC01dDEgLTQuNXQwIC00LjVoMTN2M3EzIDAgMi41IC02LjV0MS41IC02LjVxMCAtMiAxIC02dDEgLTVxNSAtMyA0IC04cTEyIDAgMTIgM3E3IDAgNSAtN3E1IDAgNiAzdDEgNS41dDIgMi41cTAgMyAyIDFsNiAzbDMgMnEyIC0xIDIgLTJxNSAwIDkgNHEyIDAgNCAtNXQ2IC01cTEyIDAgMTMgMXEzIC0yIDMgLTNxMSAwIDIgLTFsMSAtMWgxbDQgLTRxMCAtMiAyLjUgLTN0Mi41IC0ybDEgLTFsMyAtMmw5IC0zcTEgMyA0IDAgcTEgLTEgMiAtMWwyIC0ycTEgLTEgNCAtN3EyIC0yIDQgLTExcS0xIDAgLTEgLThsNCAtMXEyIDAgMiAycTIgMCA1IC0ydDQgLTJxLTIgLTIgMSAtMy41dDMgMi41cTMgMCAzIC0xMXEyIDAgNC41IDEuNXQ0LjUgMS41cTYgMCA2IDFxOCAtMiAxMyAtOHE1IC01IDUuNSAtMTR0LTQuNSAtMTRsLTggLTEwcTAgLTEyIC0xIC0xMnEwIC0xNCAtMyAtMTRxMCAtMyAtMi41IC03dC0zLjUgLTZxLTEgLTEgLTYuNSAtNC41dC02LjUgLTUuNSBxLTEgMCAtNCAtMXQtNCAtMWwtMiAtM3EtMyAtMyAtMiAtM3EwIC0xIC0wLjUgLTcuNXQtMS41IC04LjVxLTQgLTIgLTMgLTRxLTEgMCAtMS41IC0xdC0zLjUgLTFxLTIgMCAtNSAtMi41dC0zIC01LjVxLTIgLTggLTYgLTExbC0zIC0ycS00IC0yIC00IC00di04cS02IDAgLTggLTRxLTQgMCAtMTEgLTRxMCAtNCAtMiAtNHEwIC00IC0zIC0zdC00IDBxMiAwIDIgLTZxMCAtMSAtNiAtOWwtMSAtMnEtMiAtMyAtMyAtM3EwIC0xIC0wLjUgLTQgdC0wLjUgLTV2LTNsMiAycTAgMSAyIC0xcS0xIC0yIC0zIC00dC0zIC01cS01IDAgLTUgLThxMCAtMiAxIC0ycTAgLTEgMiAtNWwtMjcgOXEwIDM3IDQgMzdxMCA5IDIgOXYxNHEtMSAyIDEuNSA2LjV0Mi41IDYuNXEzIDEgMy41IDEwdDAuNSAxN3QyIDhxMCA0IDEuNSAyMC41dC0wLjUgMjAuNWwtNyA4cS01IDAgLTkgNi41dC00IDEyLjVxLTMgOSAtMyAxMHExIDAgLTIgNC41dC02IDkuNWwtNCA1cS0zIDMgLTMgNC41dDIgNXQyIDYuNSBxLTQgMiAtMiAxMC41dDUgOC41cTAgMyAzIDRxMSAtMyAzIC0ycTMgMyAwIDV2MTNxMCAxMCAtNSAxMHEtMiAwIC00IC01cS0xIDEgLTUgMS41dC03IDJ0LTMgNC41cTIgNiAtOCAxMXExIDQgLTUuNSA4LjV0LTEwLjUgNC41cTAgMSAtMiAxLjV0LTIgMS41cS0yIDAgLTUgM3QtNiAzcS00IDAgLTEwIDIuNXQtOSAyLjVxLTEgMiAtNi41IDN0LTYuNSAzcS03IDAgLTcgMTNxMCAxOCAtOSAxOHEwIDMgLTQgNi41dC02IDMuNXEtMyA3IC01IDcgcTAgNCAtNiA5cS0zIDIgLTMgMHEtMSAtMiAyLjUgLTUuNXQzLjUgLTUuNXExIDAgOCAtMTNxNiAtMTAgMyAtMTFxLTQgLTEgLTEwIDhxLTIgNCAtMiA2cS0yIDEgLTQuNSA2LjV0LTIuNSA3LjVxLTEgMSAtMi41IDR0LTIuNSA2bC0xIDJxMCAxMCAtMTEgMTBsLTcgOXEwIDEwIC04IDEzcTAgMiAtMSA5dDAgMTBxMCAyMyAtMTAgMzFxLTMzIC02OCAtMzMgLTE0NHEwIC0xNDAgOTkuNSAtMjM5dDIzOS41IC05OXE4MiAwIDE1MyAzN3QxMTggMTAwIHEtNyAtMiAtOSA5cS0zIDE3IDIgMzJxNSAtMiA2IDBxLTQgMSAtMiA2cTEwIC03IDEwIDJsLTIgMnEwIDIgMSAzdDEuNSAwLjV0MC41IC0yLjVxMyAwIDMuNSA0LjV0MS41IDUuNXEwIC0xMSAzIC0xMnEyIC0yIC0wLjUgLTQuNXQtMi41IC0zLjVxLTIgLTEgLTIgLTZoLTNxMCAtMyAtMSAtOC41dC0xIC03LjVxLTIgMCAtMiAtMTZ6TTY2NiAzODNxMiAtMSAyIC00cTI1IDAgMjUgM3ExIC0yIDIgLTN0MiAycTEgMCA0LjUgLTN0Ny41IC0ybDcgNCBsLTIgMXEwIDYgLTUgOS41dC02IDQuNXEtMSAwIC0zLjUgMXQtNC41IDFxLTMgMiAtNiAtMXEtMyAtMiAtMyAwcS0xIDIgLTMgMnEwIDggLTkgN3EtMSAtMyAtMy41IC03dC0zLjUgLTcuNXQtMSAtNy41ek01MTggNDkxcTAgLTUgLTEgLTVxLTUgLTMgLTEwIC0zaC0xMXEtMiAwIC0xMCAycTAgMSAxIDJxMyA0IC0xIDRxNyAzIDggM3YtMXYtNHEwIC0xIDIgLTAuNXQ0LjUgMXQzLjUgMS41cTMgMCA2IDFxMSAxIDEuNSAwLjV0MC41IC0zLjV6IE01NTEgNDQ0cTAgMiAtMSA0dC0xIDRxMCAzIDMgMi41dDQgMy41cTMgLTEgMCAtM3YtNHEyIDAgNCAydDMgMnEtMiAtNyAtMSAtOHE1IC01IDQgLTZxNyAwIDUgLTExcTMgMCAzIDNxMiAtMSAyIC0yLjV0LTIgLTEuNXEtMyAtNSAtMTUgLTVxMCA2IC00IDNxLTMgLTEgLTIgNHExIDIgMSAzcS0yIDEgNSAycS0xIDggLTggOHpNNTM2IDQyOHEtMiAyIDAgOHEtMyAxIDEgMmw1IDJxLTQgMCAtMiA0aDJxMSAtMiAyIC0xaDRxMSAtMSAwIC0zIHEtMyAtMTIgLTEyIC0xMnpNNTUxIDQyMnExIDAgMSAxaDNxMCAtMiAtMS41IC0ydC0yLjUgMXpNMzkyIDQwMXExIDEgNCAzcTAgLTMgLTQgLTN6TTU5OCAzODhxMiAwIC0xIC02cS0xIDIgLTIgNXEzIDAgMyAxek01OTggMzgwcTIgMCAxLjUgLTQuNXQtNS41IC0zLjVxMCA3IDIgN2wxIC0ycTEgMSAxIDN6TTYyMCAzNjVxMCAtNCAtMSAtNC41dC00LjUgMS41dC01LjUgMmg1cTEgLTEgNiAxek03MjggMjQwcTYgMCA2IDFxMTAgMCAxNiAzIHEwIC00IC0yLjUgLTkuNXQtMS41IC05LjVxLTMgMCAtMyAtNWwtMiAtMnEtMiAtMyAtNCAtNHEwIC0yIC05IC0xMXEtMSAtMiAtNS41IC02LjV0LTUuNSAtNi41cS0xNCAtMTQgLTEwIC0xNHEwIC0yNCAyIC0yNGwxIC02cTEgLTYgMSAtMTB0LTEgLTVxMCAtMyAtMiAtNy41dC0yIC02LjVsLTIgLTFsLTMgLTNxLTIgMCAtNCAtMy41dC0zIC0zLjVxMCAtNCAtMSAtMTF0LTEgLTExbC0xIC00bC0yIC02bC0xIC00cS0xNSAtOCAtMTUgLTE3IHEtNyAtMTAgLTggLTEycS0xOSAwIC0xOSAtNGgtMTVxMCAyIC0xIDZ0LTEgN3EtMSAwIC0yIDMuNXQtMiAzLjVxMCAxIC0yLjUgNi41dC00LjUgMTF0LTEgNS41cTAgOSAtMyA5cTAgNCAtMi41IDExdC0yLjUgMTBxLTEgMCAtMiA0dC0xLjUgNy41dDAuNSA0LjVxMCA0IDQgMjJxMSA5IC0zIDIzcS00IDAgLTQgNnEtNiA0IC02IDE1cTYgNiAzIDIwcS0zIDEgLTE0IDFxLTEgMyAtNy41IDR0LTE2LjUgMGwtMTAgLTFxLTEgLTIgLTQuNSAtMS41IHQtOC41IDIuNXQtNSAzcS0zIDAgLTcuNSA0LjV0LTQuNSA4LjVxLTQgMSAtOCA5LjV0LTQgMTIuNXEtNCA0IDAgOXEwIDMgLTMgMTJxMCAyIDEuNSA0dDEuNSA0cTAgMTEgNCAxOXEwIDEgMiA0dDIgNHEyIDMgMyAzcTIgMSAzIDNxMiAxIDUgNXEyIDMgMyA0cTMgMSAwIDRxNCAwIDQgMTBxMiAzIDYgM2wxIDFxNCA1IDUgNXEyIDMgNiAzcTEgLTEgMi41IC0xdDQuNSAxbDMgMXE1IDcgMTQgN3ExIDIgNSAxLjV0MTAuNSAtMS41dDcuNSAtMXYyIHEzIC0xIDcgLTEwdDQgLTEyaDhxMCAtNCAxMCAtNHExNiAwIDE2IDZxNiAwIDYgLTZoNnQ4LjUgLTAuNXQ3LjUgLTJ0MiAtMi41cTIgMCA0IC0zdDMgLTNxMCAtMyAyLjUgLTguNXQ0LjUgLTUuNXEwIC04IDUgLTExcTYgLTE0IDEyIC0xOHEtMSAtMiAxLjUgLTZ0Mi41IC01cTEgLTYgMyAtN3EwIC00IDUgLTExLjV0OCAtNy41cTAgLTEgLTEgLTJ0MiAtMnpNMzEyIDI5NnEwIC0zIDMgMHEwIC00IC00IC0ycS0yIDAgLTEgM3ExIDAgMiAtMXogTTMyOCAyOTdxNCAtMSA3LjUgLTMuNXQ1LjUgLTIuNXEzIC0zIDMuNSAtNHQtMS41IC0ycS04IC0yIC0xMiA1cS01IDAgLTEwIDVxNiAwIDcgMnpNMzYyIDI4M2wyIC0xcTIgLTIgMyAtNGwxIC0xaC0xM3EtMSAtMSAtNC41IC0xdC00LjUgMmg3bC0yIDRxMSAwIDUgLTF0NiAtMXYzek0zMzEgMjc4cTQgMCA0IC0zcS01IDAgLTQgM3pNMzM2IDI3NWwyIDNxMSAwIDEgLTJxLTEgLTEgLTMgLTF6TTM3NiAyNzhxMyAwIDMgLTFxLTQgMiAtMyAxeiBNMzczIDI3OGwyIC0xcS0xIDAgLTEgLTAuNXQtMSAtMC41djJ6TTM1NyAyNTBxMSAxIDEgMmwxIC0xcTAgLTEgLTIgLTF6TTc0MCAxMzRxMCAyIDIgM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJIIiBob3Jpei1hZHYteD0iODY1IiBkPSJNNjg2IDI3OXYtMzc4aC0xNzd2MjM1aC0xNTJ2LTIzNWgtMTgzdjM3OGgtMTUzbDQxMiA0MTFsNDExIC00MTFoLTE1OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJJIiBob3Jpei1hZHYteD0iOTMyIiBkPSJNODg0IDIzNHYtMzE0aC04MzZ2MzE0bDE1NyA0MThoNTIyek01ODIgMjM0aDE5OGwtMTA1IDMyMmwtNDE4IDFsLTEwNCAtMzIzaDE5N2w0OSAtOTZoMTMweiIgLz4KPGdseXBoIHVuaWNvZGU9IkoiIGhvcml6LWFkdi14PSI4NjIiIGQ9Ik04NDggNTM0bC0xMjIgLTEyMmw4MiAtODJsLTM3MCAtNDJsNDMgMzY5bDgxIC04MWwxMjIgMTIyek0xMzYgMTQ4bC04MiA4MmwzNjkgNDNsLTQzIC0zNzBsLTgxIDgybC0xMjIgLTEyMmwtMTYzIDE2M3pNMTgyIDM4OGwxOTcgLTY4bC0yMjEgMTh6TTM5MyA0MTd2LTg1bC0yOCA4MHpNNjgyIDE3NGwtMTk3IDY5bDIyMSAtMTl6TTQ3MSAxNDZ2ODVsMjggLTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IksiIGhvcml6LWFkdi14PSI4NjkiIGQ9Ik01MzAgMzUxbDMxOCAtMzE4di0xNjh2MGgtMTY4aC0xdjEyOWgtMTI4djEyOGgtMTI4bC02MSA2MXEtNDAgLTE0IC04MyAtMTRxLTEwOSAwIC0xODcgNzcuNXQtNzggMTg3LjV0NzggMTg3LjV0MTg3IDc3LjV0MTg3IC03Ny41dDc4IC0xODcuNXEwIC00MyAtMTQgLTgzek0yMjQgNDAycTM3IDAgNjMgMjZ0MjYgNjN0LTI2IDYzdC02MyAyNnQtNjMuNSAtMjZ0LTI2LjUgLTYzdDI2LjUgLTYzdDYzLjUgLTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkwiIGQ9Ik00NjAgNzAxcTE3NCAwIDI5NyAtMTIzdDEyMyAtMjk3dC0xMjMgLTI5N3QtMjk3IC0xMjN0LTI5NyAxMjN0LTEyMyAyOTd0MTIzIDI5N3QyOTcgMTIzek00NjAgLTM0cTEzMCAwIDIyMi41IDkydDkyLjUgMjIzdC05Mi41IDIyM3QtMjIyLjUgOTJ0LTIyMi41IC05MnQtOTIuNSAtMjIzdDkyLjUgLTIyM3QyMjIuNSAtOTJ6TTQ2NCA1MjlxMTAzIDAgMTc2LjUgLTczLjV0NzMuNSAtMTc3LjV0LTczIC0xNzcuNXQtMTc3IC03My41IHQtMTc3LjUgNzMuNXQtNzMuNSAxNzcuNXQ3My41IDE3Ny41dDE3Ny41IDczLjV6TTM5NiAzNTlxMzMgMzMgMTAyIDcwbC0zMCA0MHEtNCAxIC0xMiAxcS02MSAwIC0xMTYuNSAtNTV0LTU1LjUgLTExNnEwIC02IDEgLTlsNDIgLTMycTM4IDcwIDY5IDEwMXpNNTQwIDE1NXExNiAwIDI4IDEydDEyIDI5dC0xMS41IDI5dC0yOC41IDEydC0yOSAtMTJ0LTEyIC0yOXQxMiAtMjl0MjkgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9Ik0iIGhvcml6LWFkdi14PSI5NTIiIGQ9Ik04OTIgMzJsLTI3MyAyNjJsMjczIDIzNHEzIC04IDMgLTE1di00NjVxMCAtOCAtMyAtMTZ6TTQ3NiAyMzhsLTcyIDU4bC0zNiAzMGwtMjc1IDIzNXExMCAyIDE0IDJoNzM4cTQgMCAxNCAtMmwtMjc1IC0yMzVsLTM2IC0zMHpNODQ1IC0yaC03MzhxLTUgMCAtMTMgMmwyNzYgMjY1bDEwNiAtODdsMTA3IDg3bDI3NSAtMjY1cS04IC0yIC0xMyAtMnpNNjAgNTI4bDI3MyAtMjM0bC0yNzMgLTI2MnEtMyA4IC0zIDE2djQ2NXEwIDcgMyAxNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJOIiBob3Jpei1hZHYteD0iOTQzIiBkPSJNODU3IDY3MHExNyAwIDIzIC02dDYgLTIzdi02NTVxMCAtMTcgLTYgLTIzdC0yMyAtNmgtMTA4aC01NDZoLTcxcS0yOCAwIC01My41IDI2LjV0LTI1LjUgNTIuNXY0ODFxMCAxNyA2IDIzdDIzIDZoOTJ2OTVxMCAxNyA2IDIzdDIzIDZoNjU0ek04MzcgN3Y2MTNoLTYxNHYtNzR2LTUwdi00NDVoLTQ5djQ0NWgtNzF2LTQ2MHEwIC03IDExIC0xOHQxOCAtMTFoNzFoNTQ2aDg4ek01MTEgNTU2di0yMjNoLTIyM3YyMjNoMjIzek03NjUgNTI1di0zNyBoLTE4NXYzN2gxODV6TTc2NSA0MTF2LTM3aC0xODV2MzdoMTg1ek03NjUgMjU5di0zN2gtNDc3djM3aDQ3N3pNNzY1IDE0NHYtMzdoLTQ3N3YzN2g0Nzd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjkzMCIgZD0iTTg4MiA1MTB2LTUxMWgtNzB2NTExaDcwek02OTUgNTEwaDQ3di01MTFoLTU1NnY1MTFoNTJxNjggMTMzIDEyMiAxMzNoMjA3cTMyIDAgNjYuNSAtNDAuNXQ2MS41IC05Mi41ek01MTQgNTIycTEzIDAgMjIgOXQ5IDIydC05IDIxLjV0LTIyIDguNWgtMTA0cS0xMyAwIC0yMS41IC04LjV0LTguNSAtMjEuNXQ4LjUgLTIydDIxLjUgLTloMTA0ek00OCA1MTBoNjl2LTUxMWgtNjl2NTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IlAiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik03MTkgNDk2aDE0M3YtNDk1aC02NTl2MWwtMTc3IDQ2MWw2MTUgMjM3ek02NjAgNDk2bC01MSAxMzNsLTM0NSAtMTMzaDM5NnpNOTcgNDMybDEwNiAtMjc3djMxOHpNMjU4IDU2aDU0OXYzODVoLTU0OXYtMzg1ek02OTkgMjkybDU4IC0xOTBoLTQzMmwxMDMgMTEybDY2IC00MmwxMjMgMTc3bDM4IC03MXpNMzc5IDI3NXEtMjIgMCAtMzcgMTV0LTE1IDM3dDE1IDM3dDM3IDE1dDM3IC0xNXQxNSAtMzd0LTE1IC0zN3QtMzcgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IlEiIGhvcml6LWFkdi14PSI4NDQiIGQ9Ik02ODEgNTIxcTYxIC01NCA5NS41IC0xMjkuNXQzNC41IC0xNjAuNXEwIC0xNjEgLTExNCAtMjc1LjV0LTI3NSAtMTE0LjV0LTI3NSAxMTQuNXQtMTE0IDI3NS41cTAgODUgMzUgMTYxdDk2IDEzMHEyMCAxNyA0Ni41IDE1LjV0NDMuNSAtMjEuNXExNyAtMTkgMTUuNSAtNDUuNXQtMjEuNSAtNDMuNXEtODggLTc4IC04OCAtMTk2cTAgLTEwOSA3Ni41IC0xODZ0MTg1LjUgLTc3dDE4NS41IDc3dDc3LjUgMTg2cTAgMTE3IC04OCAxOTUgcS0yMCAxOCAtMjEuNSA0NHQxNi41IDQ2cTE3IDE5IDQzLjUgMjAuNXQ0NS41IC0xNS41ek00MjMgMTY2cS0yNiAwIC00NC41IDE5dC0xOC41IDQ1djQwN3EwIDI2IDE4LjUgNDV0NDQuNSAxOXQ0NSAtMTl0MTkgLTQ1di00MDdxMCAtMjYgLTE5IC00NXQtNDUgLTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSI5MDkiIGQ9Ik02NjggMTA1djg3bDEwNCA3MHYtMjYyaC03MzF2NTIzaDMyN3EtMiAtMSAtNi41IC0zdC02LjUgLTNxLTg3IC0zOSAtMTQxIC05OWgtNjl2LTMxM2g1MjN6TTg3NyA0MTdsLTMxMyAtMjExdjEzN3EtOTAgMCAtMTQxIC03cS00OSAtNiAtODkuNSAtMjF0LTYzLjUgLTMzLjV0LTM5IC0zNS41dC0yMiAtMjhsLTYgLTEycTAgNTQgMjAgMTAwdDUxLjUgNzUuNXQ3MC41IDUyLjV0NzcuNSAzNXQ3MCAyMHQ1MS41IDEwbDIwIDJ2MTI2eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSI4NTMiIGQ9Ik04MjYgMzg5cTEwIC0xMSA4IC0yNHEwIC0xMyAtMTAgLTI4cS0zIC00IC0xNiAtMTRsLTE4NCAtMTIxcS0yIC0xIC01LjUgLTd0LTIuNSAtMTB2LTRsODEgLTIzN3E0IC0xMSA0IC0yM3EwIC0xNSAtNyAtMjVxLTExIC0xNiAtMzAgLTE2aC0xcS0xNiAxIC0zNiAxNWwtMTkwIDE1NXEtMyAzIC0xMCAzdC05IC0zbC0xODEgLTE1NHEtMTggLTE0IC0zNiAtMTVxLTIxIC0yIC0zMSAxNXEtOCAxMSAtOCAyNnEwIDcgNCAyMWw3MiAyMzZ2NCBxMSA1IC0yIDExdC02IDdsLTE4NSAxMjJxLTEwIDcgLTE2IDE0cS0xMSAxMyAtMTEgMjhxMCAxNCA4IDI0cTkgOSAxNiAxMnExMiA1IDI3IDVoMjMwcTYgMCAxMSA0cTcgNSA3IDEwbDY3IDIzOXE0IDE0IDkgMjFxMTMgMTggMzMgMTlxMjAgLTEgMzMgLTE5cTMgLTQgMTAgLTIxbDY2IC0yMzlxMCAtNSA3IC0xMHE1IC00IDExIC00aDIzMHE5IDAgMjAgLTNxMTQgLTQgMjMgLTE0eiIgLz4KPGdseXBoIHVuaWNvZGU9IlQiIGhvcml6LWFkdi14PSI4OTkiIGQ9Ik04MTcgMTg1bDYzIC02NGwtMTYyIC05MWwtOTIgLTE2M2wtNjMgNjRsMTQgMTQ4bC0xNjkgMTY5bC0yMjQgLTM3MWwtNjMgNjNsMTIwIDQ3NWwtMTc2IDE3NXEtMTkgMjAgLTE5IDQ2LjV0MTkgNDUuNXQ0NiAxOXQ0NiAtMTlsMTc2IC0xNzVsNDc1IDEyMGw2MyAtNjNsLTM3MSAtMjI1bDE2OCAtMTY4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSI4OTQiIGQ9Ik03NjAgMTU0cTQ2IC0yMCA3Mi41IC00NC41dDI5LjUgLTM4LjVsMyAtMTR2LTg2aC04MzZ2ODZxMCAyIDAuNSA2dDYgMTV0MTUuNSAyMnQzMS41IDI2dDUwLjUgMjhxMTIgNSA1NCAyOXQ4NyA0M3Q5NCAyOHEtMzMgMzQgLTcyIDEzNHEtMTEgMjggLTExIDEwMHEwIDcgLTEgMzF0LTAuNSA0MS41dDMuNSAyOS41cTMxIDExMSAxNTkgMTExcTEyNyAwIDE1OCAtMTExcTQgLTEyIDQuNSAtMjkuNXQtMSAtNDF0LTEuNSAtMzEuNSBxMCAtNzIgLTEwIC0xMDBxLTM4IC05NiAtNzIgLTEzNHE1MCAtOCA5NC41IC0yN3Q4NyAtNDMuNXQ1NC41IC0yOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IlYiIGhvcml6LWFkdi14PSI5NDkiIGQ9Ik02NTkgNDE2bDIzNSAxMTF2LTQ0OWwtMjM1IDExMXYxdi0xMDNxMCAtMTkgLTEzIC0zMnQtMzIgLTEzaC01MTBxLTE5IDAgLTMyIDEzdC0xMyAzMnY0MzNxMCAxOSAxMyAzMnQzMiAxM2g1MTBxMTkgMCAzMiAtMTN0MTMgLTMydi0xMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0iVyIgaG9yaXotYWR2LXg9Ijk1NCIgZD0iTTcwNCA1NHYxODFsOTIgOTN2LTI3NHEwIC01MSAtMzYgLTg3dC04NyAtMzZoLTQ5MnEtNTEgMCAtODcgMzZ0LTM2IDg3djQ5M3EwIDUxIDM2IDg3dDg3IDM2aDQ5MnExNyAwIDI0IC0ybC04OSAtOTBoLTQyN3EtMTMgMCAtMjIgLTl0LTkgLTIydi00OTNxMCAtMTMgOSAtMjJ0MjIgLTloNDkycTEzIDAgMjIgOXQ5IDIyek00MzEgMzE0bDM1NCAzNTRsMTMyIC0xMzJsLTM1NCAtMzU0djBsLTE5NSAtNjNsNjMgMTk1djB6TTU0NyAyMDggbC04OSA4OWwtNDMgLTEzMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iOTIxIiBkPSJNODY4IDU0MnYtNDIzaC02NnEtMTMgMjkgLTQwIDQ2LjV0LTYwIDE3LjV0LTU5LjUgLTE3LjV0LTQwLjUgLTQ2LjVoLTIyMHY0MjNoNDg2ek0yNDAgMTgzcS0zMyAwIC02MCAtMTcuNXQtNDAgLTQ2LjVoLTEwN3YxODBsMTExIDEyM2gxODR2LTI4NHEtMzMgNDUgLTg4IDQ1ek0xMDEgMjg4di01OGgxNjF2MTMyaC05OXpNMjQwIDE0NnEzMCAwIDUxLjUgLTIxdDIxLjUgLTUycTAgLTMwIC0yMS41IC01MS41dC01MS41IC0yMS41IHEtMzEgMCAtNTIgMjEuNXQtMjEgNTEuNXEwIDMxIDIxIDUydDUyIDIxek03MDIgMTQ2cTMxIDAgNTIgLTIxdDIxIC01MnEwIC0zMCAtMjEgLTUxLjV0LTUyIC0yMS41cS0zMCAwIC01MS41IDIxLjV0LTIxLjUgNTEuNXEwIDMxIDIxLjUgNTJ0NTEuNSAyMXoiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iODYxIiBkPSJNNDI1IDQ4OGwtMTQ1IC00MDlsLTEyNiAxOTNsLTgxIC03NmwtMjIgLTIwbC00NiAzOWwxNjIgMTUxbDk2IC0xNDdsMTcxIDQ4M2wxNTcgLTYwNWwxMzEgNDEzbDExNiAtMzcxbC02MSAtMTZsLTU1IDE3OGwtMTM3IC00MzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9Ijg5NyIgZD0iTTQwMiA2MDd2LTM2OWgzNzFxMCAtMTUzIC0xMDggLTI2MXQtMjYxIC0xMDh0LTI2MSAxMDh0LTEwOCAyNjFxMCAxNTIgMTA3LjUgMjYwdDI1OS41IDEwOXpNNDk2IDcwMHExNTMgMCAyNjEuNSAtMTA4LjV0MTA4LjUgLTI2MS41aC0zNzF2MzcwaDF6IiAvPgo8Z2x5cGggdW5pY29kZT0iWyIgaG9yaXotYWR2LXg9Ijg2MSIgZD0iTTQ0NSA2NzF2LTI3OGg0MDl2LTE4NWgtNDA5di0yNzdsLTQyNyAzNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iXCIgaG9yaXotYWR2LXg9Ijg1NCIgZD0iTTcxMCA1NzloODd2LTczOWgtNzQwdjczOWg4OXY0NnEwIDM1IDIwIDU0dDU2IDE5dDU2LjUgLTE5LjV0MjAuNSAtNTMuNXYtNDZoNTJ2NDZxMCAzNCAyMC41IDUzLjV0NTYuNSAxOS41dDU2IC0xOXQyMCAtNTR2LTQ2aDUydjQ2cTAgMzQgMjAuNSA1My41dDU2LjUgMTkuNXQ1Ni41IC0xOS41dDIwLjUgLTUzLjV2LTQ2ek01OTggNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41IHQtMjcuNSA3LjVxLTM1IDAgLTM1IC0zMnpNMzkyIDYyNXYtMTIzcTAgLTE3IDguNSAtMjQuNXQyNy41IC03LjVxMzUgMCAzNSAzMnYxMjNxMCAzMiAtMzUgMzJxLTE5IDAgLTI3LjUgLTcuNXQtOC41IC0yNC41ek0xODcgNjI1di0xMjNxMCAtMzIgMzUgLTMycTE5IDAgMjcuNSA3LjV0OC41IDI0LjV2MTIzcTAgMTcgLTguNSAyNC41dC0yNy41IDcuNXEtMzUgMCAtMzUgLTMyek03MzUgLTk5djUxNGgtNjE2di01MTRoNjE2ek00MjkgOTkgcTAgLTQ1IC0zNSAtNzB0LTkwIC0yNXEtMzYgMCAtNzMgMTRsNyA1MnEzNSAtMTQgNzMgLTE0cTI0IDAgMzggMTF0MTQgMjhxMCAyMiAtMTYuNSAzMi41dC01OS41IDEyLjV2NTJxNjMgNSA2MyAzOHEwIDI4IC00MiAyOHEtMjkgMCAtNjEgLTE1bC03IDUycTM0IDE1IDg0IDE1cTQ1IDAgNzEgLTE4dDI2IC00NnEwIC01MCAtNjUgLTcydi0xcTczIC0yMCA3MyAtNzR6TTUzNyAyMjlsLTUyIC0yMGwtNyA1Mmw5MSA0NGgzMXYtMjk2aC02M3YyMjB6ICIgLz4KPGdseXBoIHVuaWNvZGU9Il0iIGhvcml6LWFkdi14PSI4NjEiIGQ9Ik00MTUgLTY5djI3N2gtNDA4djE4NWg0MDh2Mjc4bDQyOCAtMzcweiIgLz4KPGdseXBoIHVuaWNvZGU9Il4iIGhvcml6LWFkdi14PSI3NzUiIGQ9Ik03NDkgNTcycTIyIC00NiAtMyAtMTMycS0yNCAtODUgLTUgLTIzNHEtOCAtMiAtMjEgLTR0LTQ5IC04dC02NiAtOHQtNjEgLTJ0LTQ2LjUgOXQtMTAuNSAyNnExNSA0OCAtNDggNDZxLTYxIC0yIC0xODIgLTQ4cS0zNyAtMTQgLTYzIC0zdjM5OXEyMiA2IDU4IDE1dDExMiAyNXQxMjYuNSAxNC41dDUwLjUgLTI0LjVxMCAtMyAtMiAtMTQuNXQtMy41IC0yM3QtMS41IC0yM3Q1IC0xOHQxNiAtNS41cTMwIDQgNzguNSA3dDgyLjUgNHogTTE0NSA2NTh2LTgxN2gtODV2ODE3cTAgMTcgMTIuNSAyOS41dDMwLjUgMTIuNXExNyAwIDI5LjUgLTEyLjV0MTIuNSAtMjkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJfIiBob3Jpei1hZHYteD0iODIwIiBkPSJNNTkgMTk4djE5OWg3MDJ2LTE5OWgtNzAyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImAiIGhvcml6LWFkdi14PSI5MzYiIGQ9Ik0zMDYgMzc4bC0xNTIgMTUzbC05NSAtOTZ2Mjc3aDI3N2wtOTUgLTk1bDE1MiAtMTUyek03ODMgNzVsOTUgOTV2LTI3NmgtMjc3bDk1IDk1bC0xNTIgMTUxbDg3IDg3ek02MzEgMzc4bC04NyA4N2wxNTIgMTUybC05NSA5NWgyNzZ2LTI3N2wtOTQgOTV6TTMwNiAyMjdsODcgLTg3bC0xNTIgLTE1Mmw5NSAtOTVsLTI3NyAxdjI3N2w5NSAtOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iYSIgaG9yaXotYWR2LXg9IjgxMCIgZD0iTTc0NSAxNDRxMjEgMCAzNS41IC0xNC41dDE0LjUgLTM1LjV0LTE0LjUgLTM2dC0zNS41IC0xNXEtMiAwIC02IDAuNXQtNiAwLjVxLTQyIC0zNiAtNzkgLTU5cS04MyAtNTUgLTE1NyAtNzZxLTcxIC00NCAtOTAgLTQ0cS0xNCAwIC05NSA0NXEtNzYgMjIgLTE1NiA3NXEtNDAgMjcgLTc5IDU5cS0yIDAgLTUuNSAtMC41dC01LjUgLTAuNXEtMjEgMCAtMzYgMTV0LTE1IDM2dDE1IDM1LjV0MzYgMTQuNXQzNS41IC0xNC41dDE0LjUgLTM1LjV2LTggcTkgLTggMzQgLTIydDM4IC0yM3E0NyAtMzEgMTQ0IC0zM2wzMiAxNTFxNCA5OCA3IDE5MmgtMTM2bC01MiAxMnEtMTQgLTE3IC0zMyAtMTdxLTE3IDAgLTI5IDExLjV0LTEyIDI4LjV0MTIgMjguNXQyOSAxMS41cTIyIDAgMzMgLTE4aDE5MHEyIDcyIDMgOTZxLTMyIDEwIC01MiAzNi41dC0yMCA2MC41cTAgNDIgMjkuNSA3MS41dDcwLjUgMjkuNXE0MiAwIDcxLjUgLTI5LjV0MjkuNSAtNzEuNXEwIC0zMyAtMjAgLTU5LjV0LTUxIC0zNi41IHEwIC03IDEuNSAtNDAuNWwyLjUgLTU2LjVoMTg5cTExIDE4IDMzIDE4cTE3IDAgMjkgLTExLjV0MTIgLTI4LjV0LTEyIC0yOC41dC0yOSAtMTEuNXEtMjEgMCAtMzIgMTdsLTUzIC0xMmgtMTM1bDYgLTE5MmwzMyAtMTU0cTc5IC00IDEyMCAyMXE1MCAzMCA5NiA2MnEtMSAyIC0xIDZxMCAyMSAxNSAzNS41dDM2IDE0LjV6TTM1MSA2MDFxMCAtMjIgMTUuNSAtMzcuNXQzNy41IC0xNS41cTIzIDAgMzguNSAxNS41dDE1LjUgMzcuNXQtMTYgMzcuNSB0LTM4IDE1LjV0LTM3LjUgLTE1LjV0LTE1LjUgLTM3LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjkxOSIgZD0iTTQ2MSA2OTlsNDA4IC0xMTN2LTU5MWwtNDA4IC0xMTRsLTQxMCAxMTR2NTkxek00MjYgLTM4djQzOWwtMzA2IDg2di00NDF6TTQ2MCA0NjJsMzAwIDg0bC0yOTkgODJsLTMwMCAtODJ6TTgwMSA0NnY0NDBsLTMwNyAtODV2LTQ0MHoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iOTA4IiBkPSJNNzY3IDMxOHE0NiAtMTkgNzMuNSAtNjB0MjcuNSAtOTJxMCAtNjggLTQ4IC0xMTZ0LTExNiAtNDhoLTloLTE5OHYxNjJoMzBoNzZxMTIgMCAxNSA2LjV0LTQgMTYuNWwtMTQ1IDE3M3EtOCAxMCAtMTkuNSAxMHQtMTkuNSAtMTBsLTE0NSAtMTczcS04IC0xMCAtNSAtMTYuNXQxNiAtNi41aDc2aDMwdi0xNjJoLTE5OGgtMWgtMWgtMnYxcS02OCAxIC0xMTYuNSA1MHQtNDguNSAxMTdxMCA0NiAyMiA4NHQ2MCA2MXEtNSAxOCAtNSAzNCBxMCA0NyAzMy41IDgwLjV0ODEuNSAzMy41cTM5IDAgNjkgLTI0cTMxIDY0IDkxIDEwM3QxMzMgMzlxMTAzIDAgMTc1LjUgLTcyLjV0NzIuNSAtMTc1LjVxMCAtMTAgLTEgLTE1eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSI5MTgiIGQ9Ik00NTkgNjk5cTE3NCAwIDI5Ni41IC0xMjN0MTIyLjUgLTI5NnEwIC0xNzQgLTEyMi41IC0yOTYuNXQtMjk2LjUgLTEyMi41cS0xNzMgMCAtMjk2IDEyMi41dC0xMjMgMjk2LjVxMCAxNzMgMTIzIDI5NnQyOTYgMTIzek03NzQgMjgwcTAgMTMwIC05Mi41IDIyMnQtMjIyLjUgOTJxLTEwMCAwIC0xODIgLTU4bDQzOCAtNDM4cTU5IDgxIDU5IDE4MnpNMTQ1IDI4MHEwIC0xMzAgOTIgLTIyMnQyMjIgLTkycTEwMyAwIDE4MyA1OGwtNDM4IDQzOSBxLTU5IC04MyAtNTkgLTE4M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJlIiBob3Jpei1hZHYteD0iNTU2IiBkPSJNNTUwIDY5OWwtMTkzIC0zNDJoMTU4bC01MTAgLTQ3NmwyMzkgMzg2aC0xNjB6IiAvPgo8Z2x5cGggdW5pY29kZT0iZiIgaG9yaXotYWR2LXg9IjkxMiIgZD0iTTU2IDQxNXExNDkgMCAyNzUgLTczLjV0MjAwIC0xOTkuNXQ3NSAtMjc1aC0xNjBxLTIgMTYxIC0xMTUgMjc0cS0xMTQgMTE0IC0yNzUgMTE0djE2MHpNNTYgNzAwcTE2OSAwIDMyMi41IC02NnQyNjUuNSAtMTc3LjV0MTc4IC0yNjZ0NjcgLTMyMy41aC0xNjBxLTEgMTgzIC05MS41IDMzNy41dC0yNDUgMjQ0LjV0LTMzNi41IDkwdjE2MXpNMTY3IDkwcTQ2IDAgNzguNSAtMzIuNXQzMi41IC03OC41dC0zMi41IC03OC41dC03OC41IC0zMi41IHQtNzguNSAzMi41dC0zMi41IDc4LjV0MzIuNSA3OC41dDc4LjUgMzIuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJnIiBob3Jpei1hZHYteD0iODk0IiBkPSJNODY1IDM2di0zNWgtMTUxdjQ3djFxLTQgNDMgLTU1IDczcS0xMCAxNiAtMjIgNDdxLTUgMTEgLTUgNDBxMCAzNyAxIDQxcTEzIDQ0IDY0IDQ0dDY0IC00NHYtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzkgLTI5IC01NHEyMCAtNCAzOCAtMTEuNXQzNS41IC0xN3QyMS41IC0xMS41cTE5IC04IDI5LjUgLTE4dDExLjUgLTE1ek0xODAgNDl2LTF2LTQ3aC0xNTF2MzVxMCAyIDEgNnQxMS41IDE0dDI5LjUgMThxNSAyIDIxLjUgMTJ0MzQuNSAxNy41IHQzOCAxMS41cS0xNCAxNSAtMjkgNTRxLTQgMTAgLTQgNDBxMCAzNyAxIDQxcTExIDQ0IDYzIDQ0cTUxIDAgNjQgLTQ0cTEgLTQgMSAtNDFxMCAtMzAgLTQgLTQwcS0xNSAtMzYgLTI0IC00OHEtNTMgLTMyIC01MyAtNzJ6TTYyMCAxMDJxMjUgLTExIDM5LjUgLTI0LjV0MTYuNSAtMjEuNWwyIC04di00N2gtNDYydjQ3cTAgMyAxLjUgOC41dDE2IDE5LjV0NDAuNSAyNnE2IDMgMjkgMTZ0NDggMjMuNXQ1MiAxNS41cS0xOCAyMSAtMzkgNzQgcS02IDEzIC02IDU2cTAgNTMgMSA1NnExNyA2MSA4NyA2MXQ4OCAtNjFxMSAtMyAxIC01NnEwIC00MSAtNiAtNTZxLTIxIC01NCAtNDAgLTc0cTI4IC01IDUyLjUgLTE1dDQ5IC0yNHQyOS41IC0xNnoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iOTA2IiBkPSJNODQ4IDQyNXEyNSAtNjggMjUgLTE0NHQtMjUgLTE0NHEtMTAgLTI4IC00MCAtMjhxLTYgMCAtMTAgMWwtNyAycS01NSAtMTExIC0xNjkgLTE2OWwyIC03cTQgLTE2IC0zLjUgLTMwdC0yMi41IC0yMHEtNzIgLTI1IC0xNDQgLTI1cS03MyAwIC0xNDUgMjVxLTE1IDYgLTIyLjUgMjB0LTMuNSAzMGwyIDdxLTExMiA1NSAtMTcwIDE2OWwtNyAtMnEtMyAtMSAtMTAgLTFxLTI5IDAgLTM5IDI4cS0yNiA3MCAtMjYgMTQ0dDI2IDE0NCBxMTAgMjggMzkgMjhxMyAwIDExIC0ybDYgLTFxNTggMTE1IDE3MCAxNjlsLTIgN3EtNCAxNiAzLjUgMzB0MjIuNSAyMHE3MiAyNSAxNDQgMjVxNzUgMCAxNDUgLTI2cTE1IC01IDIyLjUgLTE5dDMuNSAtMzBsLTIgLTdxMTEzIC01NiAxNzAgLTE2OWw2IDFxOCAyIDExIDJxMjkgMCAzOSAtMjh6TTgwOCAxNTFxMjMgNjMgMjMgMTMwcTAgNjYgLTIyIDEzMGwtMTY2IC00MXEyMCAtNDIgMjAgLTg5dC0yMCAtODl6TTU4MyAtNzRsLTQwIDE2NSBxLTQyIC0yMCAtODkgLTIwdC05MCAyMGwtNDAgLTE2NXE2MSAtMjMgMTMwIC0yM3E2OCAwIDEyOSAyM3pNNTYxIDEyOXExMiAtNyAxNyAtMTZxMjQgMTcgNDQgNDNxLTExIDYgLTE3IDE4cS04IDE3IDAgMzZxMTYgMzIgMTYgNzFxMCAzOCAtMTYgNzFxLTggMTggMCAzNnE3IDEyIDE3IDE4cS0xOSAyNSAtNDQgNDNxLTcgLTEyIC0xNyAtMTZxLTggLTQgLTE4IC00cS0xMSAwIC0xOCA0cS0zMyAxNiAtNzIgMTZxLTM4IDAgLTcxIC0xNiBxLTcgLTQgLTE4IC00cS0xMCAwIC0xOCA0cS0xMiA3IC0xNyAxNnEtMjUgLTE4IC00NCAtNDNxMTEgLTYgMTcgLTE4cTggLTE4IDAgLTM2cS0xNyAtMzYgLTE3IC03MXEwIC0zNiAxNiAtNzFxOSAtMTkgMCAtMzZxLTQgLTExIC0xNiAtMThxMTYgLTIyIDQ0IC00NHE1IDEwIDE3IDE3cTggNCAxOCA0cTExIDAgMTggLTRxMzMgLTE2IDcyIC0xNnEzOCAwIDcxIDE2cTcgNCAxOCA0cTEwIDAgMTggLTR6TTc1IDI4MXEwIC02NCAyMyAtMTMwbDE2NSA0MSBxLTIwIDQ1IC0yMCA4OXEwIDQ1IDIxIDg5bC0xNjYgNDFxLTIzIC02NyAtMjMgLTEzMHpNNDUzIDY1OXEtNjggMCAtMTI5IC0yM2w0MCAtMTY1cTQzIDIwIDg5IDIwcTQ3IDAgOTAgLTIwbDQwIDE2NXEtNjEgMjMgLTEzMCAyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJpIiBkPSJNNDYwIDY5OXExNzQgMCAyOTcgLTEyM3QxMjMgLTI5N3QtMTIzIC0yOTd0LTI5NyAtMTIzcS0xNzMgMCAtMjk2LjUgMTIzdC0xMjMuNSAyOTd0MTIzLjUgMjk3dDI5Ni41IDEyM3pNNTE0IDU2OXEtMzEgLTEgLTQ5IC0yMnQtMTggLTQ1cTAgLTI1IDEzLjUgLTQwLjV0MzYuNSAtMTUuNWgxcTI5IDAgNDguNSAyMC41dDE5LjUgNDguNXEwIDIzIC0xMyAzN3EtMTUgMTcgLTM5IDE3ek01NjUgOThsMyAzbC0yIDRsLTE4IDM4bC01IC00IHEtMTQgLTE0IC0zNC41IC0yOHQtMjQuNSAtMTV2NXEwIDcgMyAyMGw0NiAxODhxNiAyNSA2IDU3cTAgMTggLTYgMzBxLTcgMTIgLTIyIDEycS0yNSAwIC03MS41IC0yOC41dC05MS41IC03MC41bC0zIC0zbDE2IC00NWw2IDRxMzUgMzEgNTUgMzlxMCAtNiAtMyAtMjFsLTQzIC0xODJxLTYgLTMwIC02IC02MHEwIC0yNSAxMCAtMzZxOSAtMTAgMjYgLTEwcTIzIDAgNzAuNSAyOXQ4OC41IDc0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI4NzciIGQ9Ik04MzUgMjMydi0xbDEgLTF2LTFxMTkgLTM1IDE5IC03OXEwIC0xOCAtNSAtNDNxLTEyIC00NiAtNDUgLTgwbC02NCAtNjNxLTUxIC01MSAtMTIzIC01MXQtMTIyIDUxbC03NyA3NmwtNDcgNDhsLTMzIDMzcS0zNyAzNyAtNDggOTFxLTIgMjAgLTIgMzFxMCAxNyAzIDM1bDMgMTJxNCAxNSAxNCAzNHYxcTEgMSAyLjUgNGwyLjUgNWwxIDJsMSAxcTEgMSAyLjUgMy41dDIuNSAzLjV2MWwyIDJxMSAxIDMgMy41dDMgMy41djFsMiAybDQgNHQ0IDUgbDI4IDI4bDQgLTVsNTcgLTU2cTAgLTEgMiAtM3QyIC0zdDEgLTMuNXQxIC0zLjVsLTI1IC0yNXEtMSAtMSAtMyAtMy41dC00IC00LjVxMCAtMSAtMSAtMnYtMXEtMiAtMiAtNCAtNnEtMSAwIC0xIC0xdC0xIC0ydC0xLjUgLTMuNXQtMC41IC0zLjVsLTEgLTF2LTJxLTQgLTkgLTQgLTIycTAgLTE1IDcgLTMycTQgLTggMTQgLTIwbDU3IC01N2w0MCAtMzlsNjAgLTYxcTIxIC0yMSA1MiAtMjFxMzIgMCA1MiAyMWw2NCA2NHExMiAxMiAxOCAyOSBxMyAxMSAzIDIzcTAgMTAgLTMgMjFxLTUgMTkgLTE4IDMxbC05OCA5OHExIDYgMSAxN3EwIDIxIC0zIDQwcS0xMiA2OCAtNTkgMTE2cTM5IC0xMiA3MSAtNDJsMiAtMmwxNTcgLTE1N3ExOCAtMTggMjkgLTM5cTAgLTEgMSAtMXpNNTM4IDQ0MXEzOSAtMzkgNDggLTkxcTMgLTE1IDMgLTMxcTAgLTExIC00IC0zNWwtMyAtMTJxLTMgLTEyIC0xMyAtMzRsLTEgLTFxLTEgLTEgLTIuNSAtNGwtMi41IC01bC0xIC0ybC0xIC0xcS0yIC00IC01IC03IGwtMSAtMXEtMSAtMSAtMSAtMnEtMyAtMyAtNSAtN2wtMSAtMWwtMiAtMnEtMiAtMyAtOCAtOWwtMjggLTI4bC00IDVsLTU3IDU2cS0xIDEgLTIgM3QtMiAzdC0xIDMuNXQtMSAzLjVsMjUgMjVxMSAxIDMgMy41dDQgNC41cTAgMSAwLjUgMXQwLjUgMXYxcTIgMiA0IDZsMSAxcTEgMSAxIDJxMiA0IDMgN3YxcTAgMSAxIDJxMyAxMSAzIDIycTAgMTUgLTcgMzJxLTQgOCAtMTQgMjBsLTU3IDU3bC0zOSAzOWwtNjEgNjFxLTIxIDIxIC01MiAyMSB0LTUyIC0yMWwtNjQgLTY0cS0xMiAtMTIgLTE4IC0yOXEtMyAtMTEgLTMgLTIzcTAgLTEwIDMgLTIxcTUgLTE5IDE4IC0zMWw5OCAtOThxLTEgLTYgLTEgLTE3cTAgLTIzIDQgLTQwcTEwIC02NSA1OCAtMTE2cS00MCAxMiAtNzEgNDJsLTIgMmwtMTU3IDE1N3EtMTggMTggLTI5IDM5cTAgMSAtMSAxdjFsLTEgMXYxcS0xOSAzOCAtMTkgNzlxMCAxOCA1IDQzcTEyIDQ2IDQ1IDgwbDY0IDYzcTUxIDUxIDEyMyA1MXQxMjIgLTUxbDc3IC03NiBsNDcgLTQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9ImsiIGhvcml6LWFkdi14PSI4OTYiIGQ9Ik02NTcgNjEwcTg5IDAgMTQ4LjUgLTUwLjV0NTkuNSAtMTU5LjVxMCAtNDkgLTI2IC0xMDF0LTUyIC03OWwtMjYgLTI4bC0zMTMgLTMxMmwtMzEzIDMxMmwtMTEgMTF0LTI1IDMwdC0zMiA0NnQtMjUgNTYuNXQtMTEgNjQuNXEwIDEwOSA1OSAxNTkuNXQxNDggNTAuNXE5MCAwIDE5MSAtMTA3bDE5IC0yMXE0IDUgMTEuNSAxMy41dDMxIDMxdDQ3IDM5dDU2LjUgMzAuNXQ2MyAxNHoiIC8+CjxnbHlwaCB1bmljb2RlPSJsIiBob3Jpei1hZHYteD0iOTQyIiBkPSJNMjc5IDcwMGg2MDV2LTEzM2gtNjA1djEzM3pNMjc5IDI4NHYxMzNoNjA1di0xMzNoLTYwNXpNMjc5IDB2MTMzaDYwNXYtMTMzaC02MDV6TTEyMiA3MDBxMjggMCA0Ny41IC0xOS41dDE5LjUgLTQ2LjVxMCAtMjggLTE5LjUgLTQ3LjV0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ny41cTAgMjcgMTkuNSA0Ni41dDQ2LjUgMTkuNXpNMTIyIDQxOHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDcuNXEwIC0yNyAtMTkuNSAtNDYuNSB0LTQ3LjUgLTE5LjVxLTI3IDAgLTQ2LjUgMTkuNXQtMTkuNSA0Ni41cTAgMjggMTkuNSA0Ny41dDQ2LjUgMTkuNXpNMTIyIDEzNHEyOCAwIDQ3LjUgLTE5LjV0MTkuNSAtNDYuNXEwIC0yOCAtMTkuNSAtNDcuNXQtNDcuNSAtMTkuNXEtMjcgMCAtNDYuNSAxOS41dC0xOS41IDQ3LjVxMCAyNyAxOS41IDQ2LjV0NDYuNSAxOS41eiIgLz4KPGdseXBoIHVuaWNvZGU9Im0iIGhvcml6LWFkdi14PSI4MDgiIGQ9Ik03NzEgNjk4di04M3YtNTE0cS0xIC01MiAtNDYuNSAtODh0LTExMC41IC0zNnQtMTExIDM3dC00NiA4OXQ0NiA4OXQxMTEgMzdxMzYgMCA3MCAtMTN2MzA4bC0zNTIgLTg0di00OTVxLTEgLTUyIC00NyAtODguNXQtMTEwIC0zNi41cS02NSAwIC0xMTEgMzd0LTQ2IDkwcTAgNTIgNDYgODl0MTExIDM3cTM1IDAgNjkgLTEzdjUxM2gybDQzOCAxMDR6IiAvPgo8Z2x5cGggdW5pY29kZT0ibiIgaG9yaXotYWR2LXg9Ijk1NiIgZD0iTTc1OSA3MDBxNTggMCA5OSAtNDF0NDEgLTk5di01NjFxMCAtNTggLTQxIC05OXQtOTkgLTQxaC01NjFxLTU4IDAgLTk5IDQxdC00MSA5OXY1NjFxMCA1OCA0MSA5OXQ5OSA0MWg1NjF6TTc5NCA0OTBoLTUxM3YtMTE3aDUxM3YxMTd6TTI1OSAyMTdoLTk2di0xMTRoOTZ2MTE0ek0xNjMgMjM4aDk2djExNGgtOTZ2LTExNHpNMjgxIDIxN3YtMTE0aDUxM3YxMTRoLTUxM3pNMjgxIDIzOGg1MTN2MTE0aC01MTN2LTExNHpNMjU5IDQ5MGgtOTYgdi0xMTdoOTZ2MTE3ek0xNjMgLTFxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDYxdjExN2gtOTZ2LTgyek03NTkgLTM2cTE0IDAgMjQuNSAxMC41dDEwLjUgMjQuNXY4MmgtNTEzdi0xMTdoNDc4eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSI5NDEiIGQ9Ik04NjcgNTQ1cTExIDAgMTggLTcuNXQ3IC0xNy41di01MjVxMCAtMTEgLTcgLTE4dC0xOCAtN2gtNzg0cS0xMSAwIC0xOCA3dC03IDE4djUyNXEwIDEwIDcgMTcuNXQxOCA3LjVoMzhsMjkgNTlxMTEgMjIgMzYgMjJoMTU4cTI1IDAgMzYgLTIybDI4IC01OWg0NTl6IiAvPgo8Z2x5cGggdW5pY29kZT0icCIgaG9yaXotYWR2LXg9Ijg1NSIgZD0iTTU0MiA1NDlsMTUzIC0xNTNsLTQ2MCAtNDYwdjB2MGwtMjI2IC03NGw3MyAyMjd2MHYwek0xODggNjVsMzc5IDM3OWwtMjUgMjZsLTM4MCAtMzgwek02OTQgNzAxbDE1NCAtMTUzbC0xMDEgLTEwMGwtMTUzIDE1M3oiIC8+CjxnbHlwaCB1bmljb2RlPSJxIiBob3Jpei1hZHYteD0iOTEwIiBkPSJNODY1IDE2MHEwIC00MiAtMjYgLTc1dC02NiAtNDRxMTUgLTQzIDY2IC04MnExMiAtOCAtOSAtMTRxLTQ1IC0xMSAtMTE0IDIxcS01MiAyNSAtOTcgNzFoLTI5OXEtNDIgMCAtNzcgMjdxMzAgMTggNTYgNDNoMjc2cTc0IDAgMTI2LjUgNTIuNXQ1Mi41IDEyNi41djIzNXE0NyAtNSA3OSAtNDB0MzIgLTgzdi0yMzh6TTY5OCAyODZxMCAtNTIgLTM2IC04OHQtODcgLTM2aC0yOThxLTQ5IC01MCAtMTAwIC03MnQtOTAgLTIycS0zNCAwIC0zNCAxMSBxMCAzIDMgNXE1MCAzOCA2NiA4MnEtNDAgMTEgLTY2IDQ0dC0yNiA3NnYyMzdxMCA1MSAzNiA4Ny41dDg4IDM2LjVoNDIxcTUxIDAgODcgLTM2LjV0MzYgLTg3LjV2LTIzN3oiIC8+CjxnbHlwaCB1bmljb2RlPSJyIiBob3Jpei1hZHYteD0iOTAwIiBkPSJNNzI2IDI3OGwyNCAyNGw5MSA5MXYtMjYwcTAgLTEyOCAtMTI4IC0xMjhoLTUwOXYtMTA4bC0xNzEgMTcybDE3MSAxNzJ2LTExNXYtNmg0ODRxMTYgMCAyNyAxMXQxMSAyN3YxMjB6TTE3NCAzMTlsLTI0IC0yNGwtOTEgLTkxdjI2MHEwIDEyNyAxMjggMTI3aDUwOXYxMDhsMTcxIC0xNzFsLTE3MSAtMTcydjExNXY2aC00ODRxLTE2IDAgLTI3IC0xMS41dC0xMSAtMjcuNXYtMTE5eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSI4NjQiIGQ9Ik04MTYgNHEyMyAtMjMgMjMgLTU0cTAgLTI5IC0yMCAtNDhxLTE5IC0xOSAtNDcgLTE5cS0zMiAwIC01NSAyM2wtMjE5IDIxOXEtNzQgLTQ4IC0xNjYgLTQ4cS0xMjkgMCAtMjIwLjUgOTEuNXQtOTEuNSAyMjAuNXQ5MS41IDIyMC41dDIyMC41IDkxLjV0MjIwLjUgLTkxLjV0OTEuNSAtMjIwLjVxMCAtOTAgLTQ3IC0xNjV6TTUwNiAzODlxMCA3MiAtNTEgMTIzdC0xMjMgNTF0LTEyMyAtNTF0LTUxIC0xMjN0NTEgLTEyM3QxMjMgLTUxIHQxMjMgNTF0NTEgMTIzeiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI5MTkiIGQ9Ik00NjAgNjk5cTE3MyAwIDI5NiAtMTIzdDEyMyAtMjk2cTAgLTE3NCAtMTIzIC0yOTd0LTI5NiAtMTIzcS0xNzQgMCAtMjk3IDEyM3QtMTIzIDI5N3EwIDE3MyAxMjMgMjk2dDI5NyAxMjN6TTQ2MCAtMzVxMTMwIDAgMjIyIDkyLjV0OTIgMjIyLjV0LTkyIDIyMnQtMjIyIDkydC0yMjIuNSAtOTJ0LTkyLjUgLTIyMnQ5Mi41IC0yMjIuNXQyMjIuNSAtOTIuNXpNNjYzIDE4NnExNCAtMTAgNSAtMjRsLTI0IC0zOXEtNSAtNiAtMTEgLThoLTQgcS01IDAgLTEwIDNsLTE5MyAxMjlxLTEgMSAtMi41IDJ0LTIuNSAxcS01IDcgLTUgMTN2MjI4cTAgNyA1IDEycTcgNSAxMyA1aDQ2cTcgMCAxMiAtNXQ1IC0xMnYtMTkzeiIgLz4KPGdseXBoIHVuaWNvZGU9InUiIGhvcml6LWFkdi14PSI5NTUiIGQ9Ik02MCA2MzFoODM1di02NzNoLTgzNXY2NzN6TTgyNSAyOHY1MzRoLTY5NXYtNTM0aDY5NXpNMjI1IDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNNzMxIDQzMXEtMTggMCAtMzEgMTN0LTEzIDMxdDEzIDMwLjV0MzEgMTIuNXQzMC41IC0xMi41dDEyLjUgLTMwLjV0LTEyLjUgLTMxdC0zMC41IC0xM3pNMjI1IDE1OXExOCAwIDMwLjUgLTEzIHQxMi41IC0zMXQtMTIuNSAtMzAuNXQtMzAuNSAtMTIuNXQtMzEgMTIuNXQtMTMgMzAuNXQxMyAzMXQzMSAxM3pNNzMxIDE1OXExOCAwIDMwLjUgLTEzdDEyLjUgLTMxdC0xMi41IC0zMC41dC0zMC41IC0xMi41dC0zMSAxMi41dC0xMyAzMC41dDEzIDMxdDMxIDEzek01OTMgNDU3di0zMjVoLTIyOHYzMjVoMjI4ek01MzMgMTgxdjExOGgtMTA5di0xMThoMTA5eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSI5NDUiIGQ9Ik04NjYgNTU3cTEwIDAgMTcuNSAtN3Q3LjUgLTE3di00NzJxMCAtMTEgLTcuNSAtMTh0LTE3LjUgLTdoLTc4NnEtMTAgMCAtMTcuNSA3dC03LjUgMTh2NDcycTAgMTAgNy41IDE3dDE3LjUgN2gxNzNxMCAxIDEgMWwyMyA0OHE0IDkgMTUgMTUuNXQyMSA2LjVoMzE5cTI1IDAgMzYgLTIybDI0IC00OHYtMWgxNzR6TTQ3MiAxMjBxNzUgMCAxMjggNTIuNXQ1MyAxMjcuNXQtNTMgMTI4dC0xMjggNTNxLTc0IDAgLTEyNyAtNTN0LTUzIC0xMjggdDUzIC0xMjcuNXQxMjcgLTUyLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjkyNyIgZD0iTTg4NSAzOTdxMTYgLTEzNyAtOTQuNSAtMjQ3dC0yODIuNSAtMTI5cS02MiAtNyAtMTIwIDBxLTkyIC05NSAtMTk3IC0xMDZxLTQ3IC01IC01NiA4cS0zIDQgMyA4cTg4IDY2IDgwIDE0NXEtNjkgMzkgLTExMiA5OHQtNTEgMTMwcS0xNiAxMzYgOTQgMjQ2LjV0MjgyIDEzMC41cTE3MiAxOSAzMDQuNSAtNjR0MTQ5LjUgLTIyMHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ4IiBob3Jpei1hZHYteD0iOTQ5IiBkPSJNNTI2IDEwMHEyIDEwIDIgMTZsOTggOThsMTM5IC0xMzlsOTQgLTY5bDEwIC0zOGwtMTA0IC0xMDRsLTM3IDEwbC03MCA5NHpNNzU1IDIycS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMS41cTAgLTE4IDEyLjUgLTMwLjV0MzAuNSAtMTIuNXExOSAwIDMxLjUgMTIuNXQxMi41IDMwLjVxMCAxOSAtMTIuNSAzMS41dC0zMS41IDEyLjV6TTQ2OSAzNzFsLTk4IC05OHEtNiAwIC0xNiAtMmwtNzEgNzBxLTMyIC0xNSAtNTYgLTE1IHEtNzQgMCAtMTMzLjUgNjB0LTYwLjUgMTM0cTAgMSAxNyAxOHE2MyAtNjMgNzEgLTY4dDQ1IC01cTI5IDAgNjUuNSAzNnQzNi41IDY2cTAgMzYgLTYgNDUuNXQtNjcgNjkuNXExNSAxOCAxOCAxOHE3NCAxIDEzNCAtNTkuNXQ2MCAtMTM0LjVxMCAtMjcgLTE2IC01N3pNNzg2IDIwMnEwIDMgMC41IDcuNXQwLjUgMTguNXQtMS41IDI4dC01LjUgMzJ0LTEwLjUgMzMuNXQtMTkgMzAuNXQtMjguNSAyNGgtM3EtMTAgMCAtMzQgLTIybC0yMTggLTIxNyBxOCAtMjkgLTggLTQ3cS0yIC0xIC03IC02bC0yMDEgLTIwMXEtNSAtNSAtNiAtN3EtMTEgLTExIC0yOSAtMTFxLTQxIDAgLTc3IDQ4dC04IDc3cTMgMiA2IDZsMjAyIDIwMnE1IDMgNiA2cTExIDExIDI4IDExcTkgMCAxOSAtM2wxOTQgMTk0bDQgNnE0IDYgNS41IDh0NSA4LjV0NC41IDExdDEuNSAxMXQtMSAxMy41dC00LjUgMTRxLTE2IDI5IC02MCAzOGgtMXEtMTYgMCAtNTUgMzdsLTYgNnEtMTkgMTkgLTIwIDI1dDE4IDI3bDcyIDczIHExNyAxNyAyNiAxN3E2IDAgMjYgLTIwbDYgLTZxMzMgLTMzIDM3IC00OXE0IC0yMCAyNCAtNDZxMyAtNCAxOCAtNHQxOSAtNGwxMTkgLTExOXE3MyAtNzMgMzAgLTI1MmwtMTUgLTUweiIgLz4KPGdseXBoIHVuaWNvZGU9InkiIGhvcml6LWFkdi14PSI4OTciIGQ9Ik04NDMgMzU5cTkgLTEgMTUuNSAtOXQ2LjUgLTE3di05N3EwIC05IC02LjUgLTE3dC0xNS41IC05bC0xMjQgLTIzcS05IC0yIC0xMiAtOHQyIC0xNGw3MiAtMTA2cTEyIC0xOSAtNCAtMzVsLTY4IC02OHEtMTYgLTE2IC0zNCAtM2wtMTA2IDcxcS03IDUgLTE0LjUgMi41dC04LjUgLTExLjVsLTIzIC0xMjVxLTEgLTkgLTkgLTE1LjV0LTE3IC02LjVoLTk3cS05IDAgLTE3IDYuNXQtOSAxNS41bC0yMyAxMjVxLTEgOSAtOC41IDExLjUgdC0xNC41IC0yLjVsLTEwNSAtNzFxLTIwIC0xMiAtMzUgM2wtNjggNjhxLTE2IDE2IC00IDM1bDcyIDEwNnE1IDggMiAxNHQtMTIgOGwtMTI0IDIzcS05IDEgLTE1LjUgOXQtNi41IDE3djk3cTAgOSA2LjUgMTd0MTUuNSA5bDEyNCAyM3EyMiA2IDEwIDIzbC03MiAxMDZxLTExIDE5IDQgMzRsNjggNjhxMTYgMTYgMzUgNGwxMDUgLTcycTcgLTUgMTQuNSAtMnQ4LjUgMTJsMjMgMTI0cTEgOSA5IDE1LjV0MTcgNi41aDk3cTkgMCAxNyAtNi41IHQ5IC0xNS41bDIzIC0xMjRxMSAtOSA4LjUgLTEydDE0LjUgMmwxMDYgNzJxMTggMTIgMzQgLTRsNjggLTY4cTE1IC0xNSA0IC0zNGwtNzIgLTEwNnEtMTIgLTE3IDEwIC0yM3pNNDQ4IDEzNHE2MyAwIDEwNyA0NHQ0NCAxMDZ0LTQ0IDEwNi41dC0xMDcgNDQuNXEtNjIgMCAtMTA2IC00NC41dC00NCAtMTA2LjV0NDQgLTEwNnQxMDYgLTQ0eiIgLz4KPGdseXBoIHVuaWNvZGU9InoiIGhvcml6LWFkdi14PSI3MzYiIGQ9Ik00MzMgLTMzcTM0IDAgNTUgMjNsMTc2IDE3NmwzOSAtMzlxMTUgLTE1IDAgLTMxbC0yNTQgLTI1NHEtMTUgLTE2IC0zMSAwbC0zNTAgMzUwcS0xNSAxNSAtMTcgMzZsLTggOTdsMzM1IC0zMzVxMjMgLTIzIDU1IC0yM3pNMzUzIDY2NGwzNTAgLTM0OXExNiAtMTYgMCAtMzFsLTI1NCAtMjU1cS03IC02IC0xNiAtNnQtMTUgNmwtMzUwIDM1MHEtMTUgMTcgLTE3IDM3bC0xNyAxOTBxLTIgMjIgMTQgMzZsNDMgNDRxMTUgMTMgMzQgMTNoMyBsMTg5IC0xN3EyMiAtMiAzNiAtMTh6TTExNSA2MTdxLTE0IC0xMyAtMTQgLTMzdDE0IC0zM3ExMyAtMTMgMzMgLTEzdDMzIDEzdDEzIDMzdC0xMyAzM3EtMTQgMTQgLTMzIDE0dC0zMyAtMTR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieyIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTc1MSAyOTloLTI3OHYtNDA4aC0xODV2NDA4aC0yNzdsMzcwIDQyOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ8IiBob3Jpei1hZHYteD0iOTE1IiBkPSJNMTgyIDI4MHEtMyAtMTYgLTMgLTM1di02OXEtNTggMCAtOTguNSA0MC41dC00MC41IDk4LjV2MjQ0cTAgNTggNDAuNSA5OC41dDk4LjUgNDAuNWgzNDhxNTggMCA5OC41IC00MC41dDQwLjUgLTk4LjV2LTEwNWgtMTA0djEwNXEwIDE0IC0xMC41IDI0LjV0LTI0LjUgMTAuNWgtMzQ4cS0xNCAwIC0yNC41IC0xMC41dC0xMC41IC0yNC41di0yNDRxMCAtMTQgMTAuNSAtMjQuNXQyNC41IC0xMC41aDN6TTczNiAzODVxNTcgMCA5OCAtNDEgdDQxIC05OXYtMjQzcTAgLTU4IC00MSAtOTl0LTk4IC00MWgtMzQ4cS01OCAwIC05OC41IDQxdC00MC41IDk5djI0M3EwIDU4IDQwLjUgOTl0OTguNSA0MWgzNDh6TTc3MCAydjI0M3EwIDE1IC0xMCAyNXQtMjQgMTBoLTM0OHEtMTQgMCAtMjQuNSAtMTB0LTEwLjUgLTI1di0yNDNxMCAtMTUgMTAuNSAtMjV0MjQuNSAtMTBoMzQ4cTE0IDAgMjQgMTB0MTAgMjV6IiAvPgo8Z2x5cGggdW5pY29kZT0ifSIgaG9yaXotYWR2LXg9Ijc2MiIgZD0iTTExIDMwMWgyNzd2NDA5aDE4NXYtNDA5aDI3OGwtMzcwIC00Mjd6IiAvPgo8Z2x5cGggdW5pY29kZT0ifiIgZD0iTTQ2MCA2OTlxMTc0IDAgMjk3IC0xMjN0MTIzIC0yOTd0LTEyMyAtMjk3dC0yOTcgLTEyM3QtMjk3IDEyM3QtMTIzIDI5N3QxMjMgMjk3dDI5NyAxMjN6TTYyOCAzNHYyMzJoLTE2NmwxNDUgMTY3aC0xMTJ2MTM1aC03NXYtMTM1aC0xMTJsMTQ0IC0xNjdoLTE2MnYtMjMyaDE0NWwtMzkgLTM5aDEyNmwtMzkgMzloMTQ1ek0zMzMgNzZ2MTQ4aDI1M3YtMTQ4aC0yNTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZmY7IiBob3Jpei1hZHYteD0iODMzIiAvPgo8Z2x5cGggaG9yaXotYWR2LXg9IjUwMCIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+IA==') format('svg')}.x-tab .x-button-icon:before,.x-button .x-button-icon:before{font-family:"Pictos"}.x-img.x-img-image{text-align:center}.x-img.x-img-image img{width:auto;height:100%}.x-img.x-img-background{background-repeat:no-repeat;background-position:center;background-size:auto 100%}.x-map{background-color:#edeae2}.x-map *{-webkit-box-sizing:content-box;box-sizing:content-box}.x-mask-map{background:transparent !important}.x-map-container{position:absolute !important;top:0;left:0;right:0;bottom:0}.x-mask{min-width:8.5em;position:absolute;top:0;left:0;bottom:0;right:0;height:100%;z-index:10;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:rgba(0,0,0,0.3) center center no-repeat}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask.x-mask-transparent{background-color:transparent}.x-mask .x-mask-inner{position:relative;background:rgba(0,0,0,0.25);color:#fff;text-align:center;padding:.4em;font-size:.95em;font-weight:bold}.x-mask .x-loading-spinner-outer{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;min-width:8em;height:8em}.x-mask.x-indicator-hidden .x-mask-inner{padding-bottom:0 !important}.x-mask.x-indicator-hidden .x-loading-spinner-outer{display:none}.x-mask.x-indicator-hidden .x-mask-message{position:relative;bottom:.25em}.x-mask .x-mask-message{position:absolute;bottom:5px;color:#333;left:0;right:0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-mask.x-has-message .x-mask-inner{padding-bottom:2em}.x-mask.x-has-message .x-loading-spinner-outer{height:168px}.x-ie .x-mask[visibility='visible'] ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-center) .x-input-el,.x-ie .x-mask[visibility='visible'] ~ div:not(.x-msgbox) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-mask) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-panel) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-floating) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-center) .x-input-el,.x-ie .x-mask:not(.x-item-hidden) ~ div:not(.x-msgbox) .x-input-el{visibility:collapse}.x-video{height:100%;width:100%;background-color:#000}.x-video>*{height:100%;width:100%;position:absolute}.x-video-ghost{-webkit-background-size:100% auto;background:#000 url() center center no-repeat}audio{width:100%}.x-msgbox{min-width:15em;max-width:20em;max-height:90%;margin:6px;border:1px solid #ccc}.x-msgbox .x-docking-vertical{overflow:hidden}.x-msgbox .x-toolbar.x-docked-top{border-bottom:0}.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-ie .x-msgbox .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-msgbox-text{text-align:center}.x-msgbox-buttons .x-button{min-width:4.5em}.x-progressindicator{width:50%;height:1.3em}.x-progressindicator .x-progressindicator-inner{background:#222222;padding:10px;height:100%;border-radius:20px;box-shadow:0px 5px 17px rgba(40,40,40,0.5);box-sizing:content-box;position:relative}.x-progressindicator .x-progressindicator-text{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:100%;position:absolute;top:0px;left:0px;color:white;text-shadow:1px 1px 2px black}.x-progressindicator .x-progressindicator-bar{height:100%;width:0%;border-radius:10px}.x-progressindicator:not(.x-item-hidden) .x-progressindicator-bar .x-progressindicator-bar-fill{height:100%;width:100%;background-color:gray;border-radius:10px;-webkit-animation-name:progressIndicator;-moz-animation-name:progressIndicator;-ms-animation-name:progressIndicator;-o-animation-name:progressIndicator;animation-name:progressIndicator;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear;-ms-animation-timing-function:linear;-o-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-o-animation-iteration-count:infinite;animation-iteration-count:infinite;background-repeat:repeat-x;background-size:30px 30px;background-image:-webkit-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-moz-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-o-linear-gradient(135deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-ms-linear-gradient(-45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}@-webkit-keyframes progressIndicator{to{background-position:30px}}@-moz-keyframes progressIndicator{to{background-position:30px}}@keyframes progressIndicator{to{background-position:30px}}.x-panel,.x-msgbox{position:relative}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{padding:6px;background-color:#ccc}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{z-index:1;background-color:#fff}.x-panel.x-floating>.x-dock,.x-msgbox>.x-dock,.x-form.x-floating>.x-dock{z-index:1}.x-panel.x-floating>.x-dock.x-sized,.x-msgbox>.x-dock.x-sized,.x-form.x-floating>.x-dock.x-sized{margin:6px}.x-sheet,.x-sheet-action{height:auto}.x-toolbar{position:relative;background-color:#eee;min-height:2.6em;overflow:hidden}.x-toolbar.x-docked-top{border-bottom:1px solid}.x-toolbar.x-docked-bottom{border-top:1px solid}.x-toolbar.x-docked-left{width:50px;height:auto;border-right:1px solid}.x-toolbar.x-docked-right{width:50px;height:auto;border-left:1px solid}.x-title{font-size:1.2em;text-align:center;font-weight:bold;max-width:100%}.x-title.x-title-align-left{padding-left:10px}.x-title.x-title-align-right{padding-right:10px}.x-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-navigation-bar .x-container{overflow:visible}.x-toolbar-inner .x-field .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-ie .x-toolbar-inner{height:100% !important}.x-toast{min-width:15em;max-width:20em;max-height:90%;margin:6px}.x-toast .x-toast-text{text-align:center}.x-ie .x-toast .x-dock.x-dock-horizontal.x-unsized>.x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-menu{background:#eee}.x-carousel-inner{position:relative;overflow:hidden}.x-carousel-item,.x-carousel-item>*{position:absolute !important;width:100%;height:100%}.x-carousel-indicator{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.x-carousel-indicator span{display:block;width:10px;height:10px;margin:3px;background-color:#eee}.x-carousel-indicator span.x-carousel-indicator-active{background-color:#ccc}.x-carousel-indicator-horizontal{width:100%}.x-carousel-indicator-vertical{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.x-android-3 .x-surface-wrap,.x-android-3 .x-surface-wrap>*{-webkit-perspective:1}.x-draw-component{position:relative}.x-draw-component .x-inner{overflow:hidden}.x-surface{position:absolute}.x-chart-watermark{opacity:0.5;z-index:9;right:0;bottom:0;background:rgba(0,0,0,0.5);color:white;padding:4px 6px;font-family:"Helvetica";font-size:12px;position:absolute;border-top-left-radius:4px;white-space:nowrap;-webkit-border-top-left-radius:4px}.x-legend .x-legend-inner .x-legend-container{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;border:1px solid #ccc;background:#fff}.x-legend .x-legend-inner .x-legend-container .x-legend-item{padding:0.8em 1em 0.8em 1.8em;color:#333;background:rgba(255,255,255,0);max-width:20em;min-width:0;font-size:14px;line-height:14px;font-weight:bold;white-space:nowrap;position:relative}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-inactive{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=30);opacity:.3}.x-legend .x-legend-inner .x-legend-container .x-legend-item .x-legend-item-marker{position:absolute;width:.8em;height:.8em;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;-moz-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;-webkit-box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;box-shadow:rgba(255,255,255,0.3) 0 1px 0,rgba(0,0,0,0.4) 0 1px 0 inset;left:.7em;top:1em}.x-legend.x-docked-top .x-legend-item,.x-legend.x-docked-bottom .x-legend-item{border-right:1px solid rgba(204,204,204,0.5)}.x-legend.x-docked-top .x-legend-item:last-child,.x-legend.x-docked-bottom .x-legend-item:last-child{border-right:0}.x-legend.x-docked-left .x-legend-inner,.x-legend.x-docked-right .x-legend-inner{display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center}.x-chart-toolbar{position:absolute;z-index:9;display:-webkit-box;display:-moz-box;display:-ms-box;display:box;padding:.6em}.x-chart-toolbar .x-button{margin:.2em}.x-chart-toolbar[data-side=left],.x-chart-toolbar[data-side=right]{top:0;-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-box-orient:vertical;box-orient:vertical}.x-chart-toolbar[data-side=left]{left:0}.x-chart-toolbar[data-side=right]{right:0}.x-chart-toolbar[data-side=top],.x-chart-toolbar[data-side=bottom]{-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal;right:0}.x-chart-toolbar[data-side=top]{top:0}.x-chart-toolbar[data-side=bottom]{bottom:0;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}.x-tab .x-button-icon.list:before,.x-button .x-button-icon.list:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"l"}.x-tab .x-button-icon.expand:before,.x-button .x-button-icon.expand:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"`"}.x-dataview-inlineblock .x-dataview-item,.x-dataview-inlineblock .x-data-item{display:inline-block !important}.x-dataview-nowrap .x-dataview-container{white-space:nowrap !important}.x-dataview-nowrap .x-container.x-dataview{white-space:nowrap !important}.x-list{overflow:hidden}.x-list .x-scroll-scroller{max-width:100%}.x-list .x-list-inner{width:100% !important}.x-list.x-list-indexed .x-list-disclosure{margin-right:50px}.x-list .x-item-selected .x-list-disclosure{background-color:#fff}.x-list .x-list-scrolldock-hidden{display:none}.x-list .x-list-item{position:absolute !important;left:0;top:0;width:100%}.x-list .x-list-item>.x-dock{height:auto}.x-list .x-list-item .x-dock-horizontal{border-top:1px solid #ccc}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-color:#ccc}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background-color:#ddd}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:5px}.x-list .x-list-item.x-list-item-relative{position:relative !important}.x-list .x-list-header{background-color:#eee;border-top:1px solid #ccc;border-bottom:1px solid #ccc;font-weight:bold}.x-list .x-list-header.x-list-item-relative{position:relative !important}.x-list .x-list-disclosure{margin:5px 15px 5px 0;overflow:visible;width:20px;height:20px;border:1px solid #ccc;background-color:#eee}.x-list .x-list-item-tpl .x-list-disclosure{position:absolute;right:0px;top:0px}.x-list .x-list-emptytext{text-align:center;pointer-events:none;font-color:#333333;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.x-list.x-list-indexed .x-list-disclosure{margin-right:35px}.x-list .x-list-scrolldockitem{position:absolute !important;left:0;top:0;width:100%}.x-ie .x-list-grouped .x-translatable-container .x-list-item:before,.x-ie .x-list-grouped .x-translatable-container .x-list-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-list-header{position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-list-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-list-grouped .x-list-item.x-list-header-wrap .x-dock-horizontal,.x-list-grouped .x-list-item-tpl.x-list-header-wrap{border-top:0}.x-list-inlineblock .x-list-item{display:inline-block !important}.x-list-nowrap .x-list-inner{width:auto}.x-list-nowrap .x-list-container{white-space:nowrap !important}.x-list-item-dragging{border-bottom:1px solid #ccc;background:#fff !important;z-index:1}.x-indexbar-wrapper{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important;pointer-events:none}.x-indexbar{pointer-events:auto;z-index:2;min-height:0 !important;height:auto !important;-webkit-box-flex:0 !important;-ms-flex:0 0 auto !important;flex:0 0 auto !important}.x-indexbar>div{font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-indexbar-vertical{width:15px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;margin-right:15px}.x-indexbar-horizontal{height:15px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.x-phone.x-landscape .x-indexbar>div{font-size:0.38em;line-height:1em}.x-indexbar-pressed{background-color:#ccc}.x-form-label{display:none !important}.x-form-label span{font-weight:bold}.x-form-label-nowrap .x-form-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-field{display:flex;display:-webkit-box;display:-ms-flexbox}.x-field .x-field-input{position:relative;min-width:3.7em}.x-field .x-field-input,.x-field .x-input-el{width:100%}.x-field.x-field-labeled .x-form-label{display:block !important}.x-field .x-component-outer{position:relative}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal !important;-ms-flex-direction:row !important;flex-direction:row !important}.x-label-align-left .x-component-outer,.x-label-align-right .x-component-outer{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-label-align-right{-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.x-label-align-bottom{-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.x-input-el{display:block}.x-field-mask{width:auto;height:auto;position:absolute;top:0;right:0;bottom:0;left:0}.x-ie .x-field.x-field-text .x-field-mask,.x-ie .x-field.x-field-textarea .x-field-mask,.x-ie .x-field.x-field-search .x-field-mask{z-index:-1}.x-field-required .x-form-label:after{content:"*";display:inline}.x-spinner .x-component-outer{display:flex;display:-webkit-box;display:-ms-flexbox}.x-spinner .x-component-outer>*{width:auto}.x-spinner .x-field-input{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0px}.x-spinner .x-field-input .x-input-el{width:100%;text-align:center}.x-spinner .x-field-input input::-webkit-outer-spin-button,.x-spinner .x-field-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-spinner .x-spinner-button{text-align:center;border:1px solid #ccc !important;background-color:#eee}.x-spinner.x-field-grouped-buttons .x-input-el{text-align:left}.x-select-overlay .x-list-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}.x-field-number input::-webkit-outer-spin-button,.x-field-number input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.x-field-input .x-clear-icon,.x-field-input .x-reveal-icon{display:none;width:10px;height:10px;background-color:#ccc;position:absolute;top:50%;right:0}.x-field-clearable .x-clear-icon{display:block}.x-field-clearable .x-field-input{padding-right:10px}.x-field-revealable .x-reveal-icon{display:block}.x-field-revealable .x-field-input{padding-right:10px}.x-field-clearable.x-field-revealable .x-reveal-icon{right:20px}.x-android .x-input-el{-webkit-text-fill-color:#000}.x-android .x-empty .x-input-el{-webkit-text-fill-color:#A9A9A9}.x-android .x-item-disabled .x-input-el{-webkit-text-fill-color:#b3b3b3}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ccc;overflow:hidden}.x-form-fieldset .x-dock .x-dock-body{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.x-form-fieldset-title{font-weight:bold}.x-form-fieldset-title .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-form-fieldset-instructions{text-align:center}.x-ie .x-field-select .x-field-mask{z-index:3}.x-sheet.x-picker{padding:0}.x-sheet.x-picker .x-sheet-inner{background-color:#fff;overflow:hidden}.x-sheet.x-picker .x-sheet-inner .x-picker-slot .x-body{border-left:1px solid #999999;border-right:1px solid #ACACAC}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-first .x-body{border-left:0}.x-sheet.x-picker .x-sheet-inner .x-picker-slot.x-last .x-body{border-left:0;border-right:0}.x-picker-slot .x-scroll-view{z-index:2;position:relative}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;pointer-events:none}.x-picker-slot-title{position:relative;z-index:2}.x-picker-slot-title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold}.x-picker-slot .x-dataview-inner{width:100% !important}.x-picker-slot .x-dataview-item{vertical-align:middle;height:30px;line-height:30px}.x-picker-slot .x-dataview-item.x-item-selected{font-weight:bold}.x-picker-slot .x-picker-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-ie .x-picker-item{cursor:default}.x-ie .x-picker-item::before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;clear:both}.x-list-paging.x-loading .x-loading-spinner{display:block}.x-list-paging.x-loading .x-list-paging-msg{display:none}.x-list-pullrefresh{display:flex;display:-webkit-box;display:-ms-flexbox;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;top:-5em;left:0;width:100%;height:4.5em}.x-list-pullrefresh .x-loading-spinner{display:none}.x-list-pullrefresh-arrow{width:2.5em;height:4.5em;background-color:#bbb}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;text-align:center}.x-list-pullrefresh-updated{text-align:center}.x-list-pullrefresh-loading *.x-loading-spinner{display:block}.x-list-pullrefresh-loading .x-list-pullrefresh-arrow{display:none}.x-android-2 .x-list-pullrefresh-loading *.x-loading-spinner{display:none}.x-slider,.x-toggle{position:relative;height:16px;min-height:0;min-width:0}.x-slider>*,.x-toggle>*{position:absolute;width:100%;height:100%}.x-thumb{position:absolute;height:16px;width:10px;border:1px solid #ccc;background-color:#ddd}.x-slider:before{content:'';position:absolute;width:auto;height:8px;top:4px;left:0;right:0;margin:0 5px;background-color:#eee}.x-toggle{border:1px solid #ccc;width:30px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.x-toggle-on{background-color:#eee}.x-tab{z-index:1;overflow:visible !important;background-color:#eee;border:1px solid #ccc}.x-tabbar{border-color:#ccc;border-style:solid;border-width:0;background-color:#eee}.x-tabbar.x-docked-top{border-bottom-width:1px}.x-tabbar.x-docked-top .x-tab .x-button-icon{position:relative}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-shown{display:inline-block}.x-tabbar.x-docked-top .x-tab .x-button-icon.x-hidden{display:none}.x-tabbar.x-docked-bottom{border-top-width:1px}.x-tabbar.x-docked-bottom .x-tab .x-button-icon{display:block;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-shown{visibility:visible}.x-tabbar.x-docked-bottom .x-tab .x-button-icon.x-hidden{visibility:hidden}.x-tab{position:relative;min-width:3.3em}.x-table-inner{display:table !important;width:100% !important;height:100% !important}.x-table-inner.x-fixed-layout{table-layout:fixed !important}.x-table-row{display:table-row !important}.x-table-cell{display:table-cell !important;vertical-align:middle}.x-orientation-inspector{display:none;content:"landscape"}@media (orientation: portrait){.x-orientation-inspector{content:"portrait"}}.x-grid .x-grid-header-container{border-width:0 1px 1px 0;border-style:solid;height:65px;font-weight:bold;overflow:hidden}.x-grid .x-grid-header-container .x-grid-column{display:inline-block}.x-grid .x-grid-header-container .x-grid-header-container-inner{width:100000px;position:absolute;top:0;left:0}.x-grid .x-grid-column{height:64px;border-width:1px 1px 0 1px;border-style:solid;line-height:64px;vertical-align:middle;padding:0 8px}.x-grid .x-grid-column .x-innerhtml{display:inline-block;width:auto;position:relative}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{position:absolute;width:12px;line-height:64px;top:0;height:64px;font-family:'Pictos';font-size:12px}.x-grid .x-grid-column.x-column-align-left .x-innerhtml:after,.x-grid .x-grid-column.x-column-align-center .x-innerhtml:after{right:-16px}.x-grid .x-grid-column.x-column-align-right .x-innerhtml:after{left:-16px}.x-grid .x-grid-column.x-column-sorted-asc .x-innerhtml:after{content:"{"}.x-grid .x-grid-column.x-column-sorted-desc .x-innerhtml:after{content:"}"}.x-grid .x-grid-headergroup{display:inline-block;position:relative;vertical-align:bottom;height:64px;padding-top:32px}.x-grid .x-grid-headergroup .x-inner>.x-innerhtml{height:32px;line-height:28px;vertical-align:middle;display:block;position:absolute;width:100%;top:0;left:0;text-align:center;border-style:solid;border-width:1px;overflow:hidden;text-overflow:ellipsis}.x-grid .x-grid-headergroup .x-grid-column{height:32px !important;line-height:27px !important;font-size:0.7em}.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-asc .x-innerhtml:after,.x-grid .x-grid-headergroup .x-grid-column.x-column-sorted-desc .x-innerhtml:after{line-height:27px;height:27px}.x-grid .x-grid-row{position:absolute;left:0;top:0;border-width:0 0 1px 0;border-style:solid}.x-grid .x-grid-cell{display:inline-block;vertical-align:middle;line-height:60px;padding:0 8px;height:60px;overflow:hidden;border-width:0 1px 0 0}.x-grid .x-grid-cell-align-center,.x-grid .x-grid-column-align-center{text-align:center}.x-grid .x-grid-cell-align-right,.x-grid .x-grid-column-align-right{text-align:right}.x-grid .x-grid-viewoptions{border-width:0 0 0 1px;border-style:solid}.x-grid .x-grid-viewoptions .x-list-item .x-innerhtml{padding:0px !important}.x-grid .x-grid-viewoptions .x-column-options-header{height:32px;line-height:28px;vertical-align:middle;border-style:solid;border-width:1px;overflow:hidden;padding-left:10px}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator,.x-grid .x-grid-viewoptions .x-column-options-groupindicator,.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:40px;height:48px;position:absolute;bottom:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after,.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after,.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after,.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{position:absolute;top:0;left:0;height:100%;width:100%;text-align:center;font-size:24px;font-family:'Pictos';line-height:48px;content:"l";vertical-align:middle}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle{left:0}.x-grid .x-grid-viewoptions .x-column-options-sortablehandle:after{line-height:54px}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator{right:0}.x-grid .x-grid-viewoptions .x-column-options-visibleindicator:after{font-size:30px;line-height:54px;content:"E"}.x-grid .x-grid-viewoptions .x-column-options-groupindicator{right:40px}.x-grid .x-grid-viewoptions .x-column-options-groupindicator:after{font-size:30px;line-height:54px;content:"g"}.x-grid .x-grid-viewoptions .x-column-options-folder,.x-grid .x-grid-viewoptions .x-column-options-leaf{width:30px;left:40px}.x-grid .x-grid-viewoptions .x-column-options-folder:after,.x-grid .x-grid-viewoptions .x-column-options-leaf:after{line-height:52px;content:"o"}.x-grid .x-grid-viewoptions .x-column-options-leaf:after{content:"F"}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl{background:transparent}.x-grid .x-grid-viewoptions .x-list-item.x-item-selected.x-list-item-tpl .x-innerhtml{background:transparent}.x-grid .x-grid-viewoptions .x-column-options-text{display:block;height:30px;margin:10px 50px 5px 80px;position:relative;vertical-align:middle;line-height:28px}.x-grid .x-grid-columnoptions{border-width:0 0 1px}.x-grid .x-grid-multiselection-column{position:relative;padding:0}.x-grid .x-grid-multiselection-column:after{position:absolute;top:0;left:0;width:60px;height:64px;line-height:64px;font-family:'Pictos';font-size:26px;text-align:center;content:"2"}.x-grid .x-grid-multiselection-cell{position:relative;padding:0}.x-grid .x-grid-multiselection-cell:after{position:absolute;top:0;left:0;width:60px;height:60px;line-height:60px;font-family:'Pictos';font-size:20px;text-align:center;content:"_"}.x-grid .x-item-selected .x-grid-multiselection-cell:after{content:"3"}.x-grid .x-grid-pagingtoolbar>.x-body{padding:0 30px 0 50px}.x-grid .x-grid-pagingtoolbar-currentpage{position:relative;height:22px}.x-grid .x-grid-pagingtoolbar-currentpage span{position:absolute;right:0;top:0;line-height:22px;height:22px}.x-grid .x-grid-summaryrow{height:32px;font-size:0.8em;position:relative}.x-grid .x-grid-summaryrow .x-grid-cell{height:32px;line-height:30px;border-width:0 0 1px;border-style:solid}.x-grid .x-grid-summaryrow .x-grid-multiselection-cell:after{content:''}.x-ie .x-grid-grouped .x-translatable-container .x-grid-row:before,.x-ie .x-grid-grouped .x-translatable-container .x-grid-header:before{content:". .";color:transparent;position:absolute;left:0px;word-spacing:3000px;opacity:0}.x-grid-header{line-height:44px;font-weight:bold;position:absolute;left:0;width:100%;z-index:2 !important}.x-ios .x-grid-header{-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.x-grid-grouped .x-grid-row.x-grid-header-wrap .x-dock-horizontal,.x-grid-grouped .x-grid-row-tpl.x-grid-header-wrap{border-top:0}.x-scroll-view{position:relative;display:block;overflow:hidden}.x-scroll-container{position:absolute;width:100%;height:100%}.x-scroll-scroller{position:absolute;min-width:100%;min-height:100%;height:auto !important;width:auto !important}.x-scroll-stretcher{position:absolute;visibility:hidden}.x-scroll-bar-grid-wrapper{position:absolute;width:100%;height:100%}.x-scroll-bar-grid{display:table;width:100%;height:100%}.x-scroll-bar-grid>*{display:table-row}.x-scroll-bar-grid>*>*{display:table-cell}.x-scroll-bar-grid>:first-child>:first-child{width:100%;height:100%}.x-scroll-bar-grid>:first-child>:nth-child(2){padding:3px 3px 0 0}.x-scroll-bar-grid>:nth-child(2)>:first-child{padding:0 0 3px 3px}.x-scroll-bar{position:relative;overflow:hidden}.x-scroll-bar-stretcher{position:absolute;visibility:hidden;width:100%;height:100%}.x-scroll-bar-x{width:100%}.x-scroll-bar-x>.x-scroll-bar-stretcher{width:300%}.x-scroll-bar-x.active{height:6px}.x-scroll-bar-y{height:100%}.x-scroll-bar-y>.x-scroll-bar-stretcher{height:300%}.x-scroll-bar-y.active{width:6px}.x-scroll-indicator{background:#333;position:absolute;z-index:3}.x-scroll-indicator-x{height:100%}.x-scroll-indicator-y{width:100%}.x-scroll-indicator.rounded{background:none}.x-scroll-indicator.rounded>*{position:absolute;background-color:#333}.x-scroll-indicator.rounded>:nth-child(2){-webkit-transform-origin:0% 0%;background:none;content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAxhgAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-light>*{background-color:#eee}.x-scroll-indicator.rounded.x-scroll-indicator-light>:nth-child(2){content:url(data:image/bmp;base64,Qk08AAAAAAAAADYAAAAoAAAAAQAAAAEAAAABABAAAAAAAAYAAAASCwAAEgsAAAAAAAAAAAAAvXcAAAAA)}.x-scroll-indicator.rounded.x-scroll-indicator-y>*{width:100%}.x-scroll-indicator.rounded.x-scroll-indicator-y>:first-child{height:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:nth-child(2){height:1px}.x-scroll-indicator.rounded.x-scroll-indicator-y>:last-child{height:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>*{height:100%}.x-scroll-indicator.rounded.x-scroll-indicator-x>:first-child{width:3px;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:nth-child(2){width:1px}.x-scroll-indicator.rounded.x-scroll-indicator-x>:last-child{width:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.x-list-light .x-scroll-indicator,.x-dataview-light .x-scroll-indicator{background:#fff}.x-ios .x-scroll-scroller{-webkit-transform:translate3d(0, 0, 0)}.x-ie .x-scroll-bar-y{position:absolute;margin-left:-5px}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:.5em .5em;transform-origin:.5em .5em}.x-loading-spinner>span,.x-loading-spinner>span:before,.x-loading-spinner>span:after{display:block;position:absolute;width:.1em;height:.25em;top:0;-webkit-transform-origin:.05em .5em;transform-origin:.05em .5em;content:" "}.x-loading-spinner>span{left:50%;margin-left:-0.05em}.x-loading-spinner>span.x-loading-top{background-color:rgba(170,170,170,0.99)}.x-loading-spinner>span.x-loading-top::after{background-color:rgba(170,170,170,0.9)}.x-loading-spinner>span.x-loading-left::before{background-color:rgba(170,170,170,0.8)}.x-loading-spinner>span.x-loading-left{background-color:rgba(170,170,170,0.7)}.x-loading-spinner>span.x-loading-left::after{background-color:rgba(170,170,170,0.6)}.x-loading-spinner>span.x-loading-bottom::before{background-color:rgba(170,170,170,0.5)}.x-loading-spinner>span.x-loading-bottom{background-color:rgba(170,170,170,0.4)}.x-loading-spinner>span.x-loading-bottom::after{background-color:rgba(170,170,170,0.35)}.x-loading-spinner>span.x-loading-right::before{background-color:rgba(170,170,170,0.3)}.x-loading-spinner>span.x-loading-right{background-color:rgba(170,170,170,0.25)}.x-loading-spinner>span.x-loading-right::after{background-color:rgba(170,170,170,0.2)}.x-loading-spinner>span.x-loading-top::before{background-color:rgba(170,170,170,0.15)}.x-loading-spinner>span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg)}.x-loading-spinner>span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg)}.x-loading-spinner>span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg)}.x-loading-spinner>span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg)}.x-loading-spinner>span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg)}.x-loading-spinner>span::after{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);-ms-transform:rotate(-30deg)}.x-loading-spinner{-webkit-animation-name:x-loading-spinner-rotate;-webkit-animation-duration:.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-name:x-loading-spinner-rotate;animation-duration:.5s;animation-timing-function:linear;animation-iteration-count:infinite}html,body{font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}.x-layout-card-item{background:#eee}.x-button{-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em;min-height:1.8em;padding:.3em .6em}.x-button,.x-toolbar .x-button{border:1px solid #999;border-top-color:#a6a6a6;background-color:#ccc;color:#000}.x-button.x-button-back:before,.x-button.x-button-forward:before,.x-toolbar .x-button.x-button-back:before,.x-toolbar .x-button.x-button-forward:before{background:#999}.x-button,.x-button.x-button-back:after,.x-button.x-button-forward:after,.x-toolbar .x-button,.x-toolbar .x-button.x-button-back:after,.x-toolbar .x-button.x-button-forward:after{background-image:none;background-color:#ccc;background-image:-webkit-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-moz-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-o-linear-gradient(top, #f2f2f2,#d9d9d9 3%,#bfbfbf);background-image:-ms-linear-gradient(to bottom, #f2f2f2,#d9d9d9 3%,#bfbfbf)}.x-button.x-button-pressing,.x-button.x-button-pressing:after,.x-button.x-button-pressed,.x-button.x-button-pressed:after,.x-button.x-button-active,.x-button.x-button-active:after,.x-toolbar .x-button.x-button-pressing,.x-toolbar .x-button.x-button-pressing:after,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-pressed:after,.x-toolbar .x-button.x-button-active,.x-toolbar .x-button.x-button-active:after{background-image:none;background-color:#c4c4c4;background-image:-webkit-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-moz-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-o-linear-gradient(top, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6);background-image:-ms-linear-gradient(to bottom, #ababab,#b8b8b8 10%,#c4c4c4 65%,#c6c6c6)}.x-button .x-button-icon{width:1.5em;height:1.5em}.x-button .x-button-icon:before{font-size:1.6em;line-height:1em}.x-button.x-item-disabled .x-button-label,.x-button.x-item-disabled .x-badge,.x-button.x-item-disabled .x-button-icon{opacity:.5}.x-button-round{-moz-border-radius:.9em;-webkit-border-radius:.9em;border-radius:.9em}.x-ie .x-button{height:0px}.x-ie .x-button .x-button-label,.x-ie .x-button .x-badge{overflow:visible}.x-iconalign-left .x-button-label,.x-iconalign-left .x-badge{margin-left:.6em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-badge{margin-right:.6em}.x-iconalign-top,.x-iconalign-bottom{padding-top:.2em !important;padding-bottom:.2em !important}.x-button-label,.x-badge,.x-hasbadge .x-badge{font-weight:bold;line-height:1.2em;font-family:"Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;font-size:1em}.x-toolbar .x-button{margin:6px .2em;padding:0 .6em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge{font-size:.7em}.x-toolbar .x-button .x-button-label,.x-toolbar .x-button .x-badge,.x-toolbar .x-button .x-hasbadge .x-badge{line-height:1.6em}.x-toolbar .x-button .x-button-icon:before{font-size:1.3em;line-height:1.3em}.x-ie .x-toolbar .x-button .x-button-icon::before{font-size:.6em;line-height:1em}.x-button-small,.x-toolbar .x-button-small{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button-small .x-badge{font-size:.6em}.x-button-small .x-button-icon,.x-toolbar .x-button-small .x-button-icon{width:.75em;height:.75em}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.7em;z-index:1}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-button-back:before,.x-webkit .x-button-back:after{content:'';position:absolute;width:15px;height:auto;top:-2px;left:auto;bottom:-2px;z-index:2;-webkit-mask:4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrEWb9LQlEUvj5BcHoQvMnVKXD1D3CLwqBJbHJsazQaWoSCxgbHJiMIAiNok6AhCDdXVycnJ8EQOgeOYaG+d39998KH+HyP753zzjnfd325xfdSgVeV8B6BScuEV0IRSbxHeCMk/AVFXCA8ScQKSXxPqK0fQBBfE5r/D+Y8VzUT9jb94DPimqRYIYkrhGcpKhhxIqTxrpNcExdlQJTTTnRJnCc8ykhUSOIOoZ71ZFfEZ4S2zgUu+rguxZRHEnPbfKRVsOtUl0RtYpOLTYljIS2Z3nVk2DY9SbNCEt8RDm0rUpe4La1jvXSqmtum72raZI24KuNQIYl/nSGSOJb0Jq61M0pxhjwK9304hUjHGSKILzc5Q5drUzttdYY+I97pDH1FzG0zNFUb04gTG4kzJS5kdYauiZtZnaFr4ooKsCIVaDHxKAQxt1NBnGIVHfGCcEQYh3jGU8KBfMKLiyM+lgzAq/qT0ArVTg+Ei1B9fEPoovV4fcfQd2HedScX39GprwGTNjJn0maTELN6IuSzECLB6T5x2eM66jQgnIeSxa60GnS3uL56tr7b1Ai0JPVwYi6yho2U2lgfKym19VxjMRHzEGbvS9K+RBPzetGVUpf29lZHSl2/DMnLvwh1ZMQrKW3Ic4fvJOZS6ZMQW5hpmpT63DvtlFLfm7bBNruM2C2yXb7y3U6ZpRS5P/4jpUjihRTbCJ3q1eL3GMMfAQYAJmB6SBO619IAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:15px 100%;overflow:hidden}.x-webkit .x-button-back,.x-webkit .x-toolbar .x-button-back{margin-left:.77217em;padding-left:.4em}.x-webkit .x-button-back:before,.x-webkit .x-toolbar .x-button-back:before{left:-15px}.x-webkit .x-button-back:after,.x-webkit .x-toolbar .x-button-back:after{left:-14px}.x-webkit .x-button-forward,.x-webkit .x-toolbar .x-button-forward{margin-right:.78217em;padding-right:.4em}.x-webkit .x-button-forward:before,.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:after{-webkit-mask:-4px 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:15px 100%}.x-webkit .x-button-forward:before,.x-webkit .x-toolbar .x-button-forward:before{right:-15px}.x-webkit .x-button-forward:after,.x-webkit .x-toolbar .x-button-forward:after{right:-14px}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;min-height:0;text-shadow:none;line-height:auto;height:1.9em;padding:0 0.5em;-moz-border-radius:none;-webkit-border-radius:none;border-radius:none}.x-button.x-button-plain>*,.x-toolbar .x-button.x-button-plain>*{overflow:visible}.x-button.x-button-plain.x-button-pressing,.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressing,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;background-image:-webkit-radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px);background-image:-moz-radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px);background-image:radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px);background-image:-ms-radial-gradient(rgba(236,240,225,0.7),rgba(236,240,225,0) 24px)}.x-segmentedbutton .x-button{margin:0;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-segmentedbutton .x-button.x-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-segmentedbutton .x-button.x-last{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-segmentedbutton .x-button:not(.x-first){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{border-color:#900;min-width:2em;line-height:1.2em;top:-.2em;padding:.1em .3em;-moz-background-clip:padding;-o-background-clip:padding-box;-webkit-background-clip:padding;background-clip:padding-box;color:#fcc;background-image:none;background-color:#c00;background-image:-webkit-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-moz-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-o-linear-gradient(top, #ff1a1a,#e60000 3%,#b30000);background-image:-ms-linear-gradient(to bottom, #ff1a1a,#e60000 3%,#b30000);-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0.1em}.x-panel.x-floating,.x-msgbox,.x-form.x-floating{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;-webkit-box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;box-shadow:rgba(0,0,0,0.8) 0 0.2em 0.6em;background-image:none;background-color:#656565}.x-panel.x-floating.x-floating-light,.x-msgbox.x-floating-light,.x-form.x-floating.x-floating-light{background-image:none;background-color:#cbcbcb}.x-panel.x-floating .x-panel-inner,.x-panel.x-floating>.x-body,.x-msgbox .x-panel-inner,.x-msgbox>.x-body,.x-form.x-floating .x-panel-inner,.x-form.x-floating>.x-body{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-webkit .x-anchor{position:absolute;overflow:hidden}.x-webkit .x-anchor.x-anchor-top{margin-top:-.68em;margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAPCAYAAABut3YUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/PX7LwOFwAyIG6HseiA+Ra5BjBQ6xg+IVwAxJ5T/HYgjgHgTOYYxUeCQUiBeh+QQBih7HVSOLiHDDMSTgTiTgLrpQJwLxH9p5RhOaLT4EakeFF3RQPyF2o6RhkaBGYkheRmIPYH4KbXSjC4QnyTDIch6danhGCcgPgwNGXKBNNQMb0ocEwXE24GYn4FyADJjI76Ej88x7UC8FIjZGKgHQDlxGtRsZmISMMjy+dBQoSXYBC0gv+NyDD80xzgx0AeAqg4fIH6NHk0qQHyMjg6B1WvHYDkNFjIgwS1ALMowMOAjEAeBHINe2Q0U+AUQYACQ10C2QNhRogAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-bottom{margin-left:-.8155em;width:1.631em;height:.7em;-webkit-mask:0 0 url('data:image/png;base64,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') no-repeat;-webkit-mask-size:1.631em .7em;background-color:#656565}.x-webkit .x-anchor.x-anchor-left{margin-left:-.6655em;margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAjCAYAAABLuFAHAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAcxJREFUSA2dlb9LAzEUx1/urlcPhE5OXZ2Erv0DuolQoZO4OfYPcHASwcFd6H+gOBUUoZsUBAdX/4ZOTgXxuFwvz/cOUnJHcr0YOJK8fD/59c0lgIjg+6V5PspkkQkGfZKUMACh3gGwF/iAPwAHBM4ZZC7ygJM4L15Jf6iZtiOHUhZPBA01yHkrWEp1CwLGJsjlnRuW5WoqAGd1cCecZcWJCMQzbVDoBZuW2ECOWdecptBHUAttiQu2WbUfRiXYd0E6Xh+ZLXmgEQda0JRXYNrZe5slrg62cLZRl2TJ1CW0xUufyZIxWcJn1mqJDeSYkFIOEcIlgYlL5IoHiMHNf0DucLtmV+9N8UAIdU2zT5tErrag0+l8osIz6qBwiVzxctrdbviCAq5cIle88kvSIZn5eF2BaQQ+nvO2p6wO8wwTmRdLyitXDjfUk82qtNiEE0SxqovrdRsMSQIrAcExObCuA2bdCrMgjuFLCTXhE2wCZtkJs2gvit7oLbowAbPcCLMwjsNHQHFnQrps223dVsnJAbph4NwMtoYJirO8WAiAke7AB2amJ3P1Qb/wEVd2rplFRlqjCk4RxHcZ833YWc+3Dz3uv77T3k6C770/uskEUnmGkqsAAAAASUVORK5CYII=') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-webkit .x-anchor.x-anchor-right{margin-top:-.35em;height:1.631em;width:.7em;-webkit-mask:0 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAjCAYAAABLuFAHAAAEJGlDQ1BJQ0MgUHJvZmlsZQAAOBGFVd9v21QUPolvUqQWPyBYR4eKxa9VU1u5GxqtxgZJk6XtShal6dgqJOQ6N4mpGwfb6baqT3uBNwb8AUDZAw9IPCENBmJ72fbAtElThyqqSUh76MQPISbtBVXhu3ZiJ1PEXPX6yznfOec7517bRD1fabWaGVWIlquunc8klZOnFpSeTYrSs9RLA9Sr6U4tkcvNEi7BFffO6+EdigjL7ZHu/k72I796i9zRiSJPwG4VHX0Z+AxRzNRrtksUvwf7+Gm3BtzzHPDTNgQCqwKXfZwSeNHHJz1OIT8JjtAq6xWtCLwGPLzYZi+3YV8DGMiT4VVuG7oiZpGzrZJhcs/hL49xtzH/Dy6bdfTsXYNY+5yluWO4D4neK/ZUvok/17X0HPBLsF+vuUlhfwX4j/rSfAJ4H1H0qZJ9dN7nR19frRTeBt4Fe9FwpwtN+2p1MXscGLHR9SXrmMgjONd1ZxKzpBeA71b4tNhj6JGoyFNp4GHgwUp9qplfmnFW5oTdy7NamcwCI49kv6fN5IAHgD+0rbyoBc3SOjczohbyS1drbq6pQdqumllRC/0ymTtej8gpbbuVwpQfyw66dqEZyxZKxtHpJn+tZnpnEdrYBbueF9qQn93S7HQGGHnYP7w6L+YGHNtd1FJitqPAR+hERCNOFi1i1alKO6RQnjKUxL1GNjwlMsiEhcPLYTEiT9ISbN15OY/jx4SMshe9LaJRpTvHr3C/ybFYP1PZAfwfYrPsMBtnE6SwN9ib7AhLwTrBDgUKcm06FSrTfSj187xPdVQWOk5Q8vxAfSiIUc7Z7xr6zY/+hpqwSyv0I0/QMTRb7RMgBxNodTfSPqdraz/sDjzKBrv4zu2+a2t0/HHzjd2Lbcc2sG7GtsL42K+xLfxtUgI7YHqKlqHK8HbCCXgjHT1cAdMlDetv4FnQ2lLasaOl6vmB0CMmwT/IPszSueHQqv6i/qluqF+oF9TfO2qEGTumJH0qfSv9KH0nfS/9TIp0Wboi/SRdlb6RLgU5u++9nyXYe69fYRPdil1o1WufNSdTTsp75BfllPy8/LI8G7AUuV8ek6fkvfDsCfbNDP0dvRh0CrNqTbV7LfEEGDQPJQadBtfGVMWEq3QWWdufk6ZSNsjG2PQjp3ZcnOWWing6noonSInvi0/Ex+IzAreevPhe+CawpgP1/pMTMDo64G0sTCXIM+KdOnFWRfQKdJvQzV1+Bt8OokmrdtY2yhVX2a+qrykJfMq4Ml3VR4cVzTQVz+UoNne4vcKLoyS+gyKO6EHe+75Fdt0Mbe5bRIf/wjvrVmhbqBN97RD1vxrahvBOfOYzoosH9bq94uejSOQGkVM6sN/7HelL4t10t9F4gPdVzydEOx83Gv+uNxo7XyL/FtFl8z9ZAHF4bBsrEwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAb5JREFUSA2dlb1OwzAQx+/y4VIJqRMTK2vXbkgVG0srdWJl7AMgwc6AxMjAExQxMVSgssADdEXiDTqxUAmRxkl8nNMGuW2aOImU+Gzf7/5nnxVDKJMwiKITIoKqL4QyJg7wHYbUrgo7kD7UAlRPPwAHy77ddwVrZzoSUfLMRtMOBTDgFOlImTyy5doE2IQBEHpSqut6sKaQLsNIDcsCoN7tfCdMSFG/0XBf8udZYzesEZwDOcdCwEdegO01r3lRi0BNggAO14ZXnRKYtZEOXU9N2H9/M0ApvASozSUcsb1WQkuYMS4hV+DOVLeHU56GYawusgAlu525mW1awgGXcFwD1oEwQEi6NWHmCV4rrdlMPtUvPmGb7ll/mXYN5XTDznzfn1aGCeFK77TOoRJMgPcNz7n9T956zQRjIdwBg0lVeCp8t8tQkIG6LU2bCGdJnCqugRYwzhGc02YTZqZiZhcoo1SoBrv+IsXKROd7nveeqeS1Xt4gEN4I4TzkzpmDulQb78j2zlpddMsACxm/MShsYSNt/Gz4jj4E0sysyE5hPnZfoJw+O86LnLfm+G7+lVJ2bFM1/WCxiHvmQBX7D24MnWFZVIC2AAAAAElFTkSuQmCC') no-repeat;-webkit-mask-size:.7em 1.631em;background-color:#656565}.x-floating.x-panel-light:after{background-color:#cbcbcb}.x-sheet,.x-picker,.x-sheet-action{padding:.7em;border-top:1px solid #7f7f7f;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-sheet-inner>.x-button,.x-sheet-action-inner>.x-button{margin-bottom:.5em}.x-sheet-inner>.x-button:last-child,.x-sheet-action-inner>.x-button:last-child{margin-bottom:0}.x-msgbox{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-msgbox .x-icon{margin:0 0.8em 0 0.5em;background:#fff;-webkit-mask-size:100%}.x-msgbox .x-msgbox-info{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-warning{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAGXElEQVRoBeWa2Y8UVRSHpxEBEUYURUEdxhA2hbgQiVtgJIgbQpQQBRSi7AF88MknX30m/gP6YIiaGI34YkxcEo1xfTDikmgk7gtGAQFBHb+v6Wp6uquqq7rqtjpzkl+q6y7nnN9dzj230pXBwcGekSSjRhJZuY44wqO7NcOVSuU0bJ0PLgXnggo4CPaBr9laJ3gGl0o39jBkHdi54BawDswDEv4KPAmeAx/iyzGeYUXCIYH3kr0K7AV/AaNkM96k7GYwJqQv6g5KtmrgJNnnY0g2k36XNgNgVEjSQQnj/ETwNGgml/T+Km2nhiQcLEqzb9W9FLhvs8oNNFxJ39OzdsjbLhhhHDEiPwCc5axiJN8EZmXtkLddEMK1GbobZ5bldYj2C8A6dIzvoG/7LiH2C1bng/0gaa+2Kz9A35tC+Fb6DDMzZ+LsVtAHOpVz6LgTXZM6VZDUr1TCOGgysQiYXBSVJSi4E5Xu69KkVMJ4dRF4EJQxMxPQsw3MAaVJaYSZCY+SDWBxad719FyJrq3oHlOWztII41A/WAPOAGWJg3gHMPcuRcxzC0ttBlahKGn5GZW/aWPIYHd2TJvplG3AxsdE7aMx9bmKSrkt4Yxn5x4wM8G6jj4M/k6ot9jLw/KE+u8pXwvhVxLqsxcXPeuwdAF4ETiLSfDe25dmi/pHU/qr9y0wI01HlrpCe5iZ9RhaC24EaaIdByZWanoS62udXEUbaVsogBUijANG0Q2gXaDSjl85ksSBm5pUWSs33ji4nvMdS8eEGemxWN0IZmewrrNeJtIkS+58MQo2Y9sA15F0TBhrfsVYASTeTpzBuAgc9dOPdkvatrZz+wxAuqMMrCPCGOvF6FZgZpVFdK7dkj0viyLa2G5n7Zmxy6lmHRGm+63A2c0qzvBZKY0nU5fHl8W0X8XAqzeX5DFSVYwN9+IOkLZE45yYEldYK3M551miBsltIOncr6ltfeQiDNlxqDAqX92qqm1JGmEHL+9s+X17Ez7lCmC5CGPAQLUFSDyvjKsNWFw/93feNFffPaZc3pklM2Gc9brm7PZn1j60ocsw6dro/s47w2p3oExGMm+vTIRRqDMLgTeXPHuN5nXx5jOx/jb0h5E3ky9Du1X7DFC2qOZjU3Xra1Yjzsx60O5oabVwqsRtYDSOE/d3pwPp5yBXXpZzvP2oMnIOyu3Ao6iImAMnEc68JBMcWEL5mpqvCU1OFmeZYdM5j6G0KJtqpFYp4aQ9PC2LgpQ2xgCDqZE7VVIJM2Luu/uBN5WiYtBqyaZqs2JALCqeyVvQl5rqphJGgUTvBRIvKh47cUHLNLWTY67ZH7ncBa5vrmh8TyTMSLn8toO+xg4FfhvpW2aYMgehDMK6Zha4C98Tr6KJhOl4LbgNlDG7qKmes3HByYF1f5chrqKlwNtULLfYQho7Uu7dxJGirhPpRbeYGAEl/cD9XZYYDzaDC+MUtqRzOOJ5uBIsi+tQsGwu/XcB/wmgDAIja6582I5tZID61XDZzXeuyNbJLs0fvii9DLwHdKZsHEfnz+CnBvzGb79mlm1rHzoXtPBrLKCBS2sPCOFAROgH9L8AHgcfgD9BVFf28yV0TxrCcchLT899NPglkAMO4kdgNZgHZoDrwG5wCJRNVn2HwTZQ/f4u1/p/PCg0QL0OQs2uy9gz3VVU/eMKT+OFwWUvCGX3HXRPjya2SpgCDd8DjoAQI63Ot0FvZLjxSfl68AcIYfsYeneA6l+iomOpj4KHgKMfSn6F5MEE5Z9RfiKhrmixqeZ2MFNFowjdHk3LwRUWBJQp2Eq6ws3BbssRWaIvs9Hlv4OqCY657MsgxHJq1Ol2eQSMbVrOOvMaCLWHIx/ex0avozoeXANCi9vFpXWIkX6Dp2eygdL9tRCYa4cUE5ypGrkEfBHSUpPub3k3YhtMXF39IGTsQH1dVjjDLqVuyjSMCe1GQbNb9o9o8Hewv1sWG+x0m6yr6nONmuU81eDIcP1pOvtjlHjM4uUZEEW04fZ8Fm6Xg0pE2ExrPngMfAeGC2GX8RPAHGO0x2H9Ty0cFZL2u7OJ/QJgMuCxYYCxzkH4L0sF57z7egp4Bf0EeBv7FHwJ2eq9uE6Ywh5I28lUTKKTgcfFBOBe/z8QNvIfBkfBASDx45Ctn0RDCFM57KXbR8O/PqAjjvA/zIVqEDmIpQQAAAAASUVORK5CYII=')}.x-msgbox .x-msgbox-question{-webkit-mask-image:url('data:image/png;base64,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')}.x-msgbox .x-msgbox-error{-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFGUlEQVRoBe2bzW8VVRxAeS0UMZggaARtGgtNU5pIRCMaEsPChrgh7FhCjHtdEBKNLvwjdOHShSHGmEiMiVFw4cL4EcFoolRSuqBiRDQqCLRS6znDzPP1dub1fbbzLv6S05m57829vzN3Pu+8VhYWFtZ0KyqVygbqHoA74QEYhnmojX4WpuFHuAZz5HSdaVei0mlhJBW7Hx6GJ+AheAwaiS/50rfwGXwNF8nPDdGx6JgwonvJ6hE4CI/DXdBOXGHlz+EEnEb803Yqq65rD7cDFSn4NvwKHh/dwLpt42A7ubpuS7I03Ad74C24DP9AN0Rr67QN27JN2+5rRb5pYRraBC+Bx9ZKiNZKO2+bM/AKbG5WuilhGtgNb4Jn0zCRlV42B3PZ3Yx0w8JUfAQmwcvKSssVtWcu5nSkUemGhKnwKFyE1diFi2SzcnMyt6ONSNcVphJvCl4ATxZZA2WdmqO59tcTLxRmRc/Ez8AvUFbJMC9zNefCM3g9YW8kvocyHbOhYLhsrua8t6iXc4VZYRQ+hJsQVlr2ZXM299E86SXCfNEb/tfhTyi7XFF+5q7DhlB6kTBfqMCzMA1FlfVKuQ66JM8LmXgoPM4XTsIs9IpYUZ466DKeyTr1TJwETztegg7BLhhICnv7jw66HErdEpuqMEvb4Um4O/kkjj+66KRbEokwW2AtS/tgBzgfS+ii077UsbpL30fhBNwLsYVOuum4pg9zz8xj4P7u2FNsoZNuY7q6S3twPwUx9i5aSeim44DC68CxKB/sYw3ddFyn8BBsg5hOVugsCt10HFJ4BGLuXfSS0HFE80HYmBQt/XOdIseJfwfvaDzBlTGy3JRyHNzngTB0HFR4KxSdnS/w2ctwFhxZKHO4t3q1eRV82gtDx60Kb4E7wk/T5d+YTnIPqnjpI73EmnNe6LjFrVJvN3VXya7VeZWUpiyV1ceciyK5Dhd9GGW5W+S2iv+Fg+72eKh3TARfX/XFZfO1h+eg6JLjbec8Z+nSS6c5/k2+/ZAXOs55WboEvqfJu/nYTvlznAHPM3UItMxh5w3BgwVJ6nhJYa+xVyFP2Gv0MYghdLzgVpmCP2IwWsZBxymFz8FlKP1xSo6thm46nlPYrp6EvyDW0E3HqwrPwinwRVSsoZuOs75l83R9Bn4G52MLnXQ7o6s9bMzAR+B+HlvopJuOt4ZpMb/CvF3ulogtdDqVOlbHpZX8DnzQd5QjltBFJ92SyHZpX6p5YB+HH2A++bS3/+igy/HULbGpCqdu7zP9BLxU9XrooItO/wX24SvTnXz6MXgjnj199NrU3HXYucQvLHCZOAzT0GuiWb7mfjjXLbfw1qD886zUiz97MGdzX5vrlldoGbEZ3gAfq7ItV/apuZpz4W8wFx2/oTwrOkh/Am5A2WXN0VwHQ4/a5brCaU+PUMm7UGZpczPHkVq5vPllhWuk3ymptLLmtqxs4pK3FfLKqND3Ni+Ct2rekK/2Lm4O5mJOm/JyzitrqIezFal4PTwNp+EmrJa0bZuDuazP8mtk2pRwViGNDMNr4BPISva2bdmmbQ9n+TQzbUk4a4BGJ8Azo/fh3RS3btuwrYms/Vambf8bD0O4jgM/CgfAXcyfFoT36BS1FIq6634A78FXSLb1YNO2MEkkgbiD9l63x2E/2Ptj0Ky8kmfhJPirWB/tZhD1/rjt6JhwbSbIe3LzBfQ22AV7YAfck+K8MQWOSIjzX8A38BNcQ9Lxto7Gv+RtOqJ9fOwKAAAAAElFTkSuQmCC')}.x-msgbox .x-title{font-size:.9em;line-height:1.4em}.x-msgbox .x-body{background:transparent !important}.x-msgbox .x-toolbar{background:transparent none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.x-msgbox .x-toolbar.x-docked-top{height:1.3em}.x-msgbox .x-field{min-height:2em;background:#fff;-moz-border-radius:.2em;-webkit-border-radius:.2em;border-radius:.2em}.x-msgbox .x-form-field{min-height:1.5em;padding-right:0 !important;-webkit-appearance:none}.x-msgbox .x-field-input{padding-right:2.2em}.x-msgbox-text{padding:6px 0;line-height:1.4em}.x-msgbox-buttons{padding:0.4em 0;height:auto}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-toolbar{padding:0 .2em}.x-toolbar.x-docked-left{width:7em;padding:.2em}.x-toolbar.x-docked-right{width:7em;padding:.2em}.x-title{line-height:2.1em;font-size:1.2em;margin:0 0.3em;padding:0 .3em}.x-spinner .x-input-el,.x-field-select .x-input-el{-webkit-text-fill-color:#000;-webkit-opacity:1}.x-spinner.x-item-disabled .x-input-el,.x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:currentcolor}.x-toolbar .x-field-select .x-input-el{-webkit-text-fill-color:#fff}.x-toolbar .x-field-select.x-item-disabled .x-input-el{-webkit-text-fill-color:rgba(255,255,255,0.6)}.x-toolbar .x-form-field-container{padding:0 .3em}.x-toolbar .x-slider-field .x-component-outer,.x-toolbar .x-toggle-field .x-component-outer{padding:0em .3em}.x-toolbar .x-field{width:13em;padding:.5em;min-height:0;border-bottom:0;background:transparent}.x-toolbar .x-field .x-clear-icon{background-size:50% 50%;right:-0.8em;margin-top:-1.06em}.x-toolbar .x-field-input{padding-right:1.6em !important}.x-toolbar .x-field-textarea .x-component-outer,.x-toolbar .x-field-text .x-component-outer,.x-toolbar .x-field-number .x-component-outer,.x-toolbar .x-field-search .x-component-outer{background-color:#fff;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;-webkit-box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset;box-shadow:rgba(0,0,0,0.5) 0 0.1em 0 inset,rgba(0,0,0,0.5) 0 -0.1em 0 inset,rgba(0,0,0,0.5) 0.1em 0 0 inset,rgba(0,0,0,0.5) -0.1em 0 0 inset,rgba(0,0,0,0.5) 0 0.15em 0.4em inset}.x-toolbar .x-form-label{background:transparent;border:0;padding:0;line-height:1.4em}.x-toolbar .x-form-field{height:1.6em;color:#6e6e6e;background:transparent;min-height:0;-webkit-appearance:none;padding:0em .3em;margin:0}.x-toolbar .x-form-field:focus{color:#000}.x-toolbar .x-field-select .x-component-outer,.x-toolbar .x-field-search .x-component-outer{-moz-border-radius:.8em;-webkit-border-radius:.8em;border-radius:.8em}.x-toolbar .x-field-search .x-field-input{background-position:.5em 50%}.x-toolbar .x-field-select{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-form-field{height:1.4em}.x-toolbar .x-field-select{background:transparent}.x-toolbar .x-field-select .x-component-outer:after{right:.4em}.x-toolbar .x-field-select.x-item-disabled .x-component-outer:after{opacity:.6}.x-toolbar .x-field-select .x-component-outer:before{width:3em;border-left:none;-moz-border-radius-topright:.8em;-webkit-border-top-right-radius:.8em;border-top-right-radius:.8em;-moz-border-radius-bottomright:.8em;-webkit-border-bottom-right-radius:.8em;border-bottom-right-radius:.8em;-webkit-mask:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAABCAYAAACc0f2yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADJJREFUeNpi/P//PwMjIyMbAwMDOxRzAjEXFHMDMQ8a5kXC6HLcSHo5kcwEmU9TABBgAOcTBAFcRiSpAAAAAElFTkSuQmCC');-webkit-mask-position:right top;-webkit-mask-repeat:repeat-y;-webkit-mask-size:3em 0.05em}.x-toolbar .x-field-select .x-input-text{color:#fff}.x-android .x-field-search .x-field-input{padding-left:.2em !important;padding-right:2.2em !important}.x-toast{margin:.5em;border:0.15em solid #cbcbcb;-moz-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-webkit-box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;box-shadow:rgba(0,0,0,0.4) 0 0.1em 0.5em;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-toast .x-toast-text{padding:6px 0;line-height:1.4em}.x-msgbox-dark .x-msgbox-text{color:rgba(255,255,255,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-image:none;background-color:rgba(255,255,255,0.9);background-image:-webkit-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-moz-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-o-linear-gradient(top, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));background-image:-ms-linear-gradient(to bottom, rgba(230,230,230,0.9),rgba(242,242,242,0.9) 10%,rgba(255,255,255,0.9) 65%,rgba(255,255,255,0.9));border:0.1em solid rgba(203,203,203,0.9)}.x-menu{padding:.7em;background-image:none;background-color:rgba(101,101,101,0.9);background-image:-webkit-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-moz-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-o-linear-gradient(top, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9));background-image:-ms-linear-gradient(to bottom, rgba(139,139,139,0.9),rgba(114,114,114,0.9) 3%,rgba(88,88,88,0.9))}.x-menu .x-button{margin-bottom:.7em}.x-menu .x-button:last-child{margin-bottom:0}.x-form .x-scroll-container{background-color:#eee}.x-form .x-toolbar .x-scroll-container{background-color:transparent}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;padding:.6em;background-color:#f7f7f7;color:#080808}.x-form-label span{font-size:.8em}.x-form-fieldset{margin:.5em .5em 1.5em}.x-form-fieldset .x-form-label{border-top:1px solid #fff}.x-form-fieldset .x-form-fieldset-inner{border:1px solid #ddd;background:#fff;padding:0;-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-form-fieldset .x-field{border-bottom:1px solid #ddd;background:transparent}.x-form-fieldset .x-field:first-child{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-form-fieldset .x-field:last-child{border-bottom:0;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#333;margin:1em .7em 0.3em;color:#333}.x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#333;color:gray;margin:1em .7em 0.3em;font-size:.8em}.x-label-align-left:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em}.x-label-align-left:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em}.x-label-align-right:first-child .x-form-label{-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-right:last-child{border-bottom:0}.x-label-align-right:last-child .x-form-label{-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-label-align-top:first-child .x-form-label{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-label-align-bottom:last-child .x-form-label{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-field{min-height:2.5em;background:#fff}.x-field:last-child{border-bottom:0}.x-field-label{background-color:#f7f7f7;color:#080808}.x-field-input .x-clear-icon{background:url('data:image/png;base64,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') no-repeat;background-position:center center;background-size:55% 55%;width:2.2em;height:2.2em;margin:.5em;margin-top:-1.1em;right:-.5em}.x-field-clearable .x-field-input{padding-right:2.2em}.x-input-el{padding:.4em;min-height:2.5em;border-width:0;-webkit-appearance:none}.x-ie .x-input-el{background:transparent}.x-item-disabled .x-form-label,.x-item-disabled input,.x-item-disabled .x-input-el,.x-item-disabled .x-spinner-body,.x-item-disabled select,.x-item-disabled textarea,.x-item-disabled .x-field-clear-container{color:#b3b3b3;pointer-events:none}.x-item-disabled .x-form-label{color:#aaa}.x-item-disabled .x-form-label:after{color:#666 !important}.x-checkmark-base,.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after,.x-select-overlay .x-item-selected.x-list-item::after{position:absolute;top:0;right:10px;bottom:0;content:'3';font-family:'Pictos';font-size:1.6em;text-align:right;line-height:1.6em}.x-field-checkbox .x-field-mask::after,.x-field-radio .x-field-mask::after{color:#ddd}.x-input-checkbox,.x-input-radio{visibility:hidden}.x-input-el:checked+.x-field-mask::after{color:#798d45}.x-item-disabled.x-field-checkbox .x-input-checkbox:checked+.x-field-mask::after{color:#b5bda0}.x-field-radio .x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0}.x-field-radio .x-field-mask::after{content:'';position:absolute;width:16px;height:16px;top:16px;left:auto;right:16px;background-color:#d0d0d0;-moz-border-radius:16px;-webkit-border-radius:16px;border-radius:16px}.x-field-radio .x-field-mask::before{content:'';position:absolute;width:26px;height:26px;top:11px;left:auto;right:11px;background-color:#ddd;-moz-border-radius:26px;-webkit-border-radius:26px;border-radius:26px}.x-input-radio:checked+.x-field-mask::after{background:#798d45}.x-item-disabled.x-field-radio .x-input-radio:checked+.x-field-mask::after{background:#b5bda0}.x-field-search .x-field-input{position:relative}.x-field-search .x-field-input:before{position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;font-family:"Pictos";content:"s"}.x-field-search .x-field-input:before{color:#ccc;top:.7em;left:.5em;font-size:1.1em;right:auto}.x-toolbar .x-field-search .x-field-input:before{top:.3em}.x-field-search .x-field-input .x-form-field{margin-left:1em}.x-webkit .x-selectmark-base,.x-webkit .x-field-select .x-component-outer:after,.x-field-select .x-webkit .x-component-outer:after{content:'';position:absolute;width:1em;height:1em;top:50%;left:auto;right:.7em;-webkit-mask-size:1em;-webkit-mask-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGRTdGMTE3NDA3MjA2ODExOTJDQUMyNUQwRUE4NjdEQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQTFBMDFDQ0I5NEYxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMkRCMDIxMkI5NEUxMURGQUU1RjlGMEFERUNDQTVEMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMwRTE0QzVBNDIyMjY4MTFCQ0ZCOTAzOTcwNzcyRkVCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZFN0YxMTc0MDcyMDY4MTE5MkNBQzI1RDBFQTg2N0RCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+HfrH/AAAAeVJREFUeNrs2cFHBGEUAPA3zYqIiIhOnTpFRHSKrp26RqeuEV077R/QqWtE166dOkVERHRa9hQRnZalFcv0Hk/W1Mx+38z3vvlm5j3eZW+/9+abne+9KEkSaFPMQMtCwQpWsIIVrGAFK1jBClawgo2ik/4hiqJGwLKuvfpIc5xSkWqYr5hzU1s/mRNxXTPsJ+ZqluvXlwOmSj3XBDvG3M1rpAmYYoUrFzr4ZNqTawqm2MH8Dhh7ZXJUbcAUx4FinzBnJcAUl4FhP/jIgRSYKvkYCJaO2LbNv08RMMUy5nsA4COTLy0XYIqtil9iF6aflq7AwBWuAvuQ9ZKSBgNX2ieWjtKSzeXBNZgqfe8J+4W5aXtbcg0GrvibB/BhkeuhBJhigzsghT0veh+WAlMcCGHvMOMQwcCdcIntYy6WmXhIg2PuiAvsEHO97IhHGgzckb4D8L6LmZYPMHBnhiWwXVdDPF9g4A4Vwd66nFr6BAN3ygbbw1yoMzjmjplgB5hrrufSvsHAHesZDOD2JAbxVYCBOzfIAZ9JbR6qAgN3cPwP9kZy1VIlGLiTdluCmoOBO/pnS9Bk8DzmS3pL4BMcpZEe1qX0GI/atC4dQYXRMa1MU0IX4gpWsIIVrGAFK1jBCnYUPwIMAPUPAyFL+nRdAAAAAElFTkSuQmCC');margin-top:-.5em}.x-field-select{position:relative;z-index:1}.x-field-select .x-component-outer:after{z-index:2;background-color:#ddd}.x-field-select .x-component-outer:before,.x-field-select .x-component-outer:after{pointer-events:none;position:absolute;display:block}.x-select-overlay .x-list-item-label{height:2.6em}.x-select-overlay .x-item-selected .x-list-label{margin-right:2.6em}.x-select-overlay .x-item-selected.x-list-item::after{color:#ddd}.x-list{background-color:#f7f7f7}.x-list .x-list-disclosure{position:relative;overflow:visible;border:0;-moz-border-radius:32px;-webkit-border-radius:32px;border-radius:32px;background-image:none;background-color:#7e983b;background-image:-webkit-linear-gradient(top, #a5c15e,#8daa42 3%,#6e8533);background-image:-moz-linear-gradient(top, #a5c15e,#8daa42 3%,#6e8533);background-image:-o-linear-gradient(top, #a5c15e,#8daa42 3%,#6e8533);background-image:-ms-linear-gradient(to bottom, #a5c15e,#8daa42 3%,#6e8533);width:32px;height:32px;margin:7px 7px 0 0}.x-list .x-list-disclosure:before{position:absolute;top:0;right:0;bottom:0;left:0;content:']';font-family:'Pictos';color:#fff;font-size:24px;text-align:center;line-height:35px;text-shadow:0 0 0}.x-list.x-list-indexed .x-list-disclosure{margin-right:1.8em}.x-list .x-item-selected .x-list-disclosure{background:#fff none}.x-list .x-item-selected .x-list-disclosure:before{color:#798d45}.x-list .x-list-item{color:#000}.x-list .x-list-item.x-item-selected .x-dock-horizontal,.x-list .x-list-item.x-item-selected.x-list-item-tpl{background-image:none;background-color:#798d45;background-image:-webkit-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-moz-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-o-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-ms-linear-gradient(to bottom, #a0b669,#889e4d 3%,#6a7c3d);color:#fff}.x-list .x-list-item.x-item-pressed.x-list-item-tpl,.x-list .x-list-item.x-item-pressed .x-dock-horizontal{background:#ecf0e1 none}.x-list .x-list-item .x-list-item-body,.x-list .x-list-item.x-list-item-tpl .x-innerhtml{padding:12px 15px}.x-list-normal .x-list-header{background-image:none;background-color:#fefefe;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#f3f0f0);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#f3f0f0);color:#b9aaaa;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;border-top:1px solid #fefefe;border-bottom:1px solid #d0c6c6;font-weight:bold;font-size:0.8em;padding:0.2em 1.02em}.x-list-normal .x-list-item.x-list-item-tpl,.x-list-normal .x-list-item .x-dock-horizontal{border-top:1px solid #dedede}.x-list-normal .x-list-item.x-list-item-tpl.x-list-footer-wrap,.x-list-normal .x-list-item.x-list-footer-wrap .x-dock-horizontal{border-bottom:1px solid #dedede}.x-list-normal .x-list-item.x-item-pressed.x-list-item-tpl,.x-list-normal .x-list-item.x-item-pressed .x-dock-horizontal{border-top-color:#ecf0e1;background-color:#ecf0e1}.x-list-normal .x-list-item.x-item-selected.x-list-item-tpl,.x-list-normal .x-list-item.x-item-selected .x-dock-horizontal{border-top-color:#798d45}.x-list-round .x-scroll-view{background-color:#eee}.x-list-round .x-list-header-swap{padding-right:13px}.x-list-round .x-list-inner .x-scroll-container{top:13px;left:13px;bottom:13px;right:13px;width:auto !important;height:auto !important}.x-list-round .x-list-header{color:#777;font-size:1em;font-weight:bold;padding-left:26px;line-height:1.7em;background-image:-webkit-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-moz-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-o-linear-gradient(top, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4));background-image:-ms-linear-gradient(to bottom, #eeeeee,rgba(238,238,238,0.9) 30%,rgba(238,238,238,0.4))}.x-list-round .x-list-container{padding:13px 13px 0 13px}.x-list-round .x-list-container .x-list-header{padding-left:13px;background-image:none}.x-list-round.x-list-ungrouped .x-list-item-tpl,.x-list-round.x-list-ungrouped .x-list-item .x-dock-horizontal,.x-list-round.x-list-grouped .x-list-item-tpl,.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #dedede;border-width:1px 1px 0 1px;background:#f7f7f7}.x-list-round.x-list-ungrouped .x-list-item-first{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-ungrouped .x-list-item-last{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;border-width:1px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-header-wrap.x-list-header{border:1px solid #dedede;border-width:1px 1px 0 1px;-moz-border-radius-topleft:.4em;-webkit-border-top-left-radius:.4em;border-top-left-radius:.4em;-moz-border-radius-topright:.4em;-webkit-border-top-right-radius:.4em;border-top-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap{background:transparent}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13px;margin-bottom:13px}.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-tpl>.x-dock-body,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #dedede;background:#f7f7f7;-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed>.x-dock-body{background:#ecf0e1 none}.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-innerhtml,.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-selected>.x-dock-body{background-image:none;background-color:#798d45;background-image:-webkit-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-moz-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-o-linear-gradient(top, #a0b669,#889e4d 3%,#6a7c3d);background-image:-ms-linear-gradient(to bottom, #a0b669,#889e4d 3%,#6a7c3d);color:#fff}.x-list-round .x-indexbar-vertical{margin-right:20px}.x-list-round .x-list-footer-wrap.x-list-item-last.x-list-item-odd.x-list-item.x-list-item-tpl{background-color:transparent !important}.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-innerhtml,.x-list-round.x-list-grouped .x-list-item-odd.x-list-footer-wrap>.x-dock-body{background-color:#eaeaea !important}.x-list .x-list-item-odd.x-list-item-tpl,.x-list .x-list-item-odd .x-dock-horizontal{background-color:#eaeaea !important;border-bottom:1px solid #eaeaea}.x-toggle{width:4.4em;border:1px solid #b7b7b7;background-image:none;background-color:#ddd;background-image:-webkit-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-moz-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-o-linear-gradient(top, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:-ms-linear-gradient(to bottom, #c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);-moz-border-radius:1.1em;-webkit-border-radius:1.1em;border-radius:1.1em}.x-toggle .x-thumb.x-dragging{opacity:1}.x-toggle .x-thumb:before{top:.175em}.x-toggle-on{background-image:none;background-color:#92cf00;background-image:-webkit-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-moz-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-o-linear-gradient(top, #6e9c00,#80b600 10%,#92cf00 65%,#94d200);background-image:-ms-linear-gradient(to bottom, #6e9c00,#80b600 10%,#92cf00 65%,#94d200)}.x-button.border-radius-10{-moz-border-radius:10px !important;-webkit-border-radius:10px;border-radius:10px !important}.x-dataview.color .x-dataview-inner.x-scroll-scroller{width:auto !important;height:auto !important;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-dataview.color .x-dataview-inner.x-scroll-scroller .x-dataview-container{margin-top:12px;margin-left:12px}.x-dataview.color .x-dataview-item{display:inline-block}.x-dataview.color .x-dataview-item.x-item-selected .item-inner{-moz-box-shadow:#c9d200 0 0 0 4px;-webkit-box-shadow:#c9d200 0 0 0 4px;box-shadow:#c9d200 0 0 0 4px}.x-dataview.color .x-dataview-item .item-inner{display:inline-block;width:50px;height:50px;border:1px solid #d8d8d8;margin:6px}.x-list.settings{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round .x-scroll-view{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-dock-horizontal{padding-top:0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap .x-list-header{display:none}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-list-item-last .x-dock-horizontal{padding-bottom:0}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal{border:1px solid #bcbcbc;border-width:1px 1px 0 1px;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item .x-dock-horizontal .x-innerhtml{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal{background-image:-webkit-linear-gradient(top, #889e4d,#5c6b34);background-image:-moz-linear-gradient(top, #889e4d,#5c6b34);background-image:-o-linear-gradient(top, #889e4d,#5c6b34);background-image:-ms-linear-gradient(to bottom, #889e4d,#5c6b34);color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-pressed .x-dock-horizontal .disclosure{background-position:-24px 0}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal{color:inherit}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal .x-list-item-body{padding-right:1.2em}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected .x-dock-horizontal:after{content:"";width:24px;height:24px;position:absolute;top:11px;right:11px;background-image:url("../img/icons/list-retina.png");background-size:72px 48px;background-position:0 -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal{color:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-item.x-item-selected.x-item-pressed .x-dock-horizontal:after{background-position:-24px -24px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .list-icon{width:24px;height:24px;position:absolute}.x-list.settings.x-list-round.x-list-grouped .x-list-item .icon-offset{margin-left:30px}.x-list.settings.x-list-round.x-list-grouped .x-list-item .disclosure{right:12px;background-image:url("../img/icons/list-retina.png");background-size:72px 48px;background-position:0 0}.x-list.settings.x-list-round.x-list-grouped .x-list-header-wrap.x-list-footer-wrap .x-dock-body{-moz-border-radius:.4em;-webkit-border-radius:.4em;border-radius:.4em}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal{border:none;background:transparent;padding-bottom:13.8px}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap .x-dock-horizontal>.x-dock-body{border:1px solid #bcbcbc;background:#fff}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal{background:transparent}.x-list.settings.x-list-round.x-list-grouped .x-list-footer-wrap.x-item-pressed .x-dock-horizontal>.x-dock-body{-moz-border-radius-bottomleft:.4em;-webkit-border-bottom-left-radius:.4em;border-bottom-left-radius:.4em;-moz-border-radius-bottomright:.4em;-webkit-border-bottom-right-radius:.4em;border-bottom-right-radius:.4em;background-image:-webkit-linear-gradient(top, #889e4d,#5c6b34);background-image:-moz-linear-gradient(top, #889e4d,#5c6b34);background-image:-o-linear-gradient(top, #889e4d,#5c6b34);background-image:-ms-linear-gradient(to bottom, #889e4d,#5c6b34);color:#fff}.x-msgbox{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-moz-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-o-linear-gradient(top, #989898,#656565 10%,#656565);background-image:-ms-linear-gradient(to bottom, #989898,#656565 10%,#656565)}.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-button-label,.x-msgbox .x-toolbar.x-docked-bottom .x-button .x-badge{font-size:.9em;line-height:2em}.x-msgbox .x-title{font-size:1em;line-height:1.4em;color:#ffffff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-panel.x-panel-settings{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ececec,#cbcbcb);background-image:-moz-linear-gradient(top, #ececec,#cbcbcb);background-image:-o-linear-gradient(top, #ececec,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ececec,#cbcbcb);-moz-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;-webkit-box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;box-shadow:#fff 0 1px 0 inset,rgba(0,0,0,0.3) 0 0.2em 0.6em;border:1px solid #797979}.x-panel.x-panel-settings .x-anchor-top{background-color:#797979;margin-top:-.62em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-top:after{content:'';position:absolute;width:1.631em;height:.7em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #f1f1f1,#ececec);background-image:-moz-linear-gradient(top, #f1f1f1,#ececec);background-image:-o-linear-gradient(top, #f1f1f1,#ececec);background-image:-ms-linear-gradient(to bottom, #f1f1f1,#ececec);top:1px !important}.x-panel.x-panel-settings .x-anchor-bottom{height:.8em;background-color:#797979;margin-top:-0.15em;-moz-box-shadow:#fff 0 -1px 0 0 inset;-webkit-box-shadow:#fff 0 -1px 0 0 inset;box-shadow:#fff 0 -1px 0 0 inset}.x-panel.x-panel-settings .x-anchor-bottom:after{content:'';position:absolute;width:1.631em;height:.8em;-webkit-mask-size:1.631em .7em;background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#bebebe);background-image:-moz-linear-gradient(top, #cbcbcb,#bebebe);background-image:-o-linear-gradient(top, #cbcbcb,#bebebe);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#bebebe);top:-1px !important}.x-panel.x-panel-settings .x-panel-inner{background:transparent}.x-panel.x-panel-settings .x-navigation-bar{border-bottom:none;margin-top:-6px;background:transparent;overflow:hidden}.x-panel.x-panel-settings .x-navigation-bar .x-title{color:#323232;text-shadow:#fff 0 0.08em 0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner{background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.x-panel.x-panel-settings .x-navigationview.plain .x-navigationview-inner:after{content:none}.x-panel.x-panel-settings .x-navigationview-inner{background-color:#efefef;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-panel.x-panel-settings .x-navigationview-inner:after{content:'';position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em;-moz-box-shadow:inset 0 1px 2px 2px #c8c8c8;-webkit-box-shadow:inset 0 1px 2px 2px #c8c8c8;box-shadow:inset 0 1px 2px 2px #c8c8c8;border:1px solid #797979}.x-label.info .x-innerhtml{color:#7f7f7f;text-shadow:0 1px 0 #fff;text-align:center}.btn-input-image input[type="file"]{opacity:0;position:absolute;left:0;top:0}.x-mask.transparent{background:transparent}.round{-moz-border-radius:.3em;-webkit-border-radius:.3em;border-radius:.3em}.x-spinner.planar-spinner.x-field-grouped-buttons{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons.x-field{min-height:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{background:transparent}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label span{font-size:inherit}.x-spinner.planar-spinner.x-field-grouped-buttons .x-button{margin-top:9px;margin-bottom:9px;padding:0 8px !important}.x-spinner.planar-spinner.x-field-grouped-buttons .x-form-label{padding:0.16em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input{-moz-box-shadow:#b2b2b2 0 3px 4px -2px inset;-webkit-box-shadow:#b2b2b2 0 3px 4px -2px inset;box-shadow:#b2b2b2 0 3px 4px -2px inset;background:#fff;min-width:2.3em}.x-spinner.planar-spinner.x-field-grouped-buttons .x-field-input .x-input-el{text-align:center;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;padding:3px 0 4px;min-height:0;border-top:1px solid #898989;border-bottom:1px solid #898989}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button{width:auto;border:1px solid #939393 !important;margin:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-down{margin-right:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.x-spinner.planar-spinner.x-field-grouped-buttons .x-spinner-button-up{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0}.x-toolbar-edit{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb);border-color:#4c4c4c}.x-toolbar-edit .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-edit.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-edit .x-button.x-button-back:before,.x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-button.x-button-back:before,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-edit .x-button,.x-toolbar-edit .x-button.x-button-back:after,.x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-button,.x-toolbar .x-toolbar-edit .x-button.x-button-back:after,.x-toolbar .x-toolbar-edit .x-button.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-edit .x-button.x-button-pressing,.x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar-edit .x-button.x-button-pressed,.x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar-edit .x-button.x-button-active,.x-toolbar-edit .x-button.x-button-active:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing,.x-toolbar .x-toolbar-edit .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed,.x-toolbar .x-toolbar-edit .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-button.x-button-active,.x-toolbar .x-toolbar-edit .x-button.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-edit .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-edit .x-label,.x-toolbar-edit .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-toolbar-search{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-moz-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-o-linear-gradient(top, #cbcbcb,#e7e7e7 20%,#e7e7e7);background-image:-ms-linear-gradient(to bottom, #cbcbcb,#e7e7e7 20%,#e7e7e7);border-color:#4c4c4c}.x-toolbar-search .x-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-search.x-docked-top{border-bottom:1px solid #939393}.x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before{border:1px solid #8b8b8b;border-top-color:#989898;background-color:#bebebe;color:#000}.x-toolbar-search .x-button.x-button-back:before,.x-toolbar-search .x-button.x-button-forward:before,.x-toolbar .x-toolbar-search .x-button.x-button-back:before,.x-toolbar .x-toolbar-search .x-button.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:before{background:#8b8b8b}.x-toolbar-search .x-button,.x-toolbar-search .x-button.x-button-back:after,.x-toolbar-search .x-button.x-button-forward:after,.x-toolbar .x-toolbar-search .x-button,.x-toolbar .x-toolbar-search .x-button.x-button-back:after,.x-toolbar .x-toolbar-search .x-button.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer,.x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-forward:after,.x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-back:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-forward:after{background-image:none;background-color:#bebebe;background-image:-webkit-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-moz-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-o-linear-gradient(top, #e5e5e5,#cbcbcb 3%,#b2b2b2);background-image:-ms-linear-gradient(to bottom, #e5e5e5,#cbcbcb 3%,#b2b2b2)}.x-toolbar-search .x-button.x-button-pressing,.x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar-search .x-button.x-button-pressed,.x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar-search .x-button.x-button-active,.x-toolbar-search .x-button.x-button-active:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressing,.x-toolbar .x-toolbar-search .x-button.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-button.x-button-pressed,.x-toolbar .x-toolbar-search .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-button.x-button-active,.x-toolbar .x-toolbar-search .x-button.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer.x-button-active:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressing:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-pressed:after,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active,.x-toolbar .x-toolbar-search .x-field-select .x-component-outer:before.x-button-active:after{background-image:none;background-color:#b7b7b7;background-image:-webkit-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-moz-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-o-linear-gradient(top, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8);background-image:-ms-linear-gradient(to bottom, #9d9d9d,#aaaaaa 10%,#b7b7b7 65%,#b8b8b8)}.x-toolbar-search .x-label,.x-toolbar-search .x-form-label{font-weight:normal;color:#4c4c4c;text-shadow:0 1px 0 #fff}.x-button-icon.share,.list-icon.share{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -48px;background-size:72px 624px}.x-button-pressing .x-button-icon.share,.x-button-pressing .list-icon.share,.x-button-pressed .x-button-icon.share,.x-button-pressed .list-icon.share,.x-button-active .x-button-icon.share,.x-button-active .list-icon.share,.x-item-pressed .x-button-icon.share,.x-item-pressed .list-icon.share{background-position:-24px -48px}.x-button-icon.pages,.list-icon.pages{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -288px;background-size:72px 624px}.x-button-pressing .x-button-icon.pages,.x-button-pressing .list-icon.pages,.x-button-pressed .x-button-icon.pages,.x-button-pressed .list-icon.pages,.x-button-active .x-button-icon.pages,.x-button-active .list-icon.pages,.x-item-pressed .x-button-icon.pages,.x-item-pressed .list-icon.pages{background-position:-24px -288px}.x-button-icon.search-prev,.list-icon.search-prev{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -312px;background-size:72px 624px}.x-button-pressing .x-button-icon.search-prev,.x-button-pressing .list-icon.search-prev,.x-button-pressed .x-button-icon.search-prev,.x-button-pressed .list-icon.search-prev,.x-button-active .x-button-icon.search-prev,.x-button-active .list-icon.search-prev,.x-item-pressed .x-button-icon.search-prev,.x-item-pressed .list-icon.search-prev{background-position:-24px -312px}.x-button-icon.search-next,.list-icon.search-next{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -336px;background-size:72px 624px}.x-button-pressing .x-button-icon.search-next,.x-button-pressing .list-icon.search-next,.x-button-pressed .x-button-icon.search-next,.x-button-pressed .list-icon.search-next,.x-button-active .x-button-icon.search-next,.x-button-active .list-icon.search-next,.x-item-pressed .x-button-icon.search-next,.x-item-pressed .list-icon.search-next{background-position:-24px -336px}.x-button-icon.search,.list-icon.search{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -384px;background-size:72px 624px}.x-button-pressing .x-button-icon.search,.x-button-pressing .list-icon.search,.x-button-pressed .x-button-icon.search,.x-button-pressed .list-icon.search,.x-button-active .x-button-icon.search,.x-button-active .list-icon.search,.x-item-pressed .x-button-icon.search,.x-item-pressed .list-icon.search{background-position:-24px -384px}.x-button-icon.fullscreen,.list-icon.fullscreen{background-image:url("../img/icons/icons-retina.png");background-color:transparent;background-position:0 -408px;background-size:72px 624px}.x-button-pressing .x-button-icon.fullscreen,.x-button-pressing .list-icon.fullscreen,.x-button-pressed .x-button-icon.fullscreen,.x-button-pressed .list-icon.fullscreen,.x-button-active .x-button-icon.fullscreen,.x-button-active .list-icon.fullscreen,.x-item-pressed .x-button-icon.fullscreen,.x-item-pressed .list-icon.fullscreen{background-position:-24px -408px}.x-button.x-button-base{padding:.3em 8px}.x-button.x-button-base,.x-toolbar .x-button.x-button-base{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-base .x-button-icon,.x-toolbar .x-button.x-button-base .x-button-icon{width:24px;height:24px}.x-button.x-button-base.x-button-forward:before,.x-button.x-button-base.x-button-forward:after,.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base .x-button-label,.x-button.x-button-base .x-badge,.x-toolbar .x-button.x-button-base .x-button-label,.x-toolbar .x-button.x-button-base .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-base.x-button-back:before,.x-button.x-button-base.x-button-forward:before,.x-toolbar .x-button.x-button-base.x-button-back:before,.x-toolbar .x-button.x-button-base.x-button-forward:before{background:#989898}.x-button.x-button-base,.x-button.x-button-base.x-button-back:after,.x-button.x-button-base.x-button-forward:after,.x-toolbar .x-button.x-button-base,.x-toolbar .x-button.x-button-base.x-button-back:after,.x-toolbar .x-button.x-button-base.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-base.x-button-pressing,.x-button.x-button-base.x-button-pressing:after,.x-button.x-button-base.x-button-pressed,.x-button.x-button-base.x-button-pressed:after,.x-button.x-button-base.x-button-active,.x-button.x-button-base.x-button-active:after,.x-toolbar .x-button.x-button-base.x-button-pressing,.x-toolbar .x-button.x-button-base.x-button-pressing:after,.x-toolbar .x-button.x-button-base.x-button-pressed,.x-toolbar .x-button.x-button-base.x-button-pressed:after,.x-toolbar .x-button.x-button-base.x-button-active,.x-toolbar .x-button.x-button-base.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-base.x-button-pressing .x-button-label,.x-button.x-button-base.x-button-pressing .x-badge,.x-button.x-button-base.x-button-pressed .x-button-label,.x-button.x-button-base.x-button-pressed .x-badge,.x-button.x-button-base.x-button-active .x-button-label,.x-button.x-button-base.x-button-active .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-base:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-light{padding:.3em 8px}.x-button.x-button-light,.x-toolbar .x-button.x-button-light{border:1px solid #c7c7c7;border-top-color:#d9d9d9;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#262626}.x-button.x-button-light .x-button-icon,.x-toolbar .x-button.x-button-light .x-button-icon{width:24px;height:24px}.x-button.x-button-light.x-button-forward:before,.x-button.x-button-light.x-button-forward:after,.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-light .x-button-label,.x-button.x-button-light .x-badge,.x-toolbar .x-button.x-button-light .x-button-label,.x-toolbar .x-button.x-button-light .x-badge{color:#666;text-shadow:#fff 0 0.09em 0}.x-button.x-button-light.x-button-back:before,.x-button.x-button-light.x-button-forward:before,.x-toolbar .x-button.x-button-light.x-button-back:before,.x-toolbar .x-button.x-button-light.x-button-forward:before{background:#ccc}.x-button.x-button-light,.x-button.x-button-light.x-button-back:after,.x-button.x-button-light.x-button-forward:after,.x-toolbar .x-button.x-button-light,.x-toolbar .x-button.x-button-light.x-button-back:after,.x-toolbar .x-button.x-button-light.x-button-forward:after{background-image:none;background-color:#fff;background-image:-webkit-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-moz-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-o-linear-gradient(top, #ffffff,#ffffff 3%,#ffffff);background-image:-ms-linear-gradient(to bottom, #ffffff,#ffffff 3%,#ffffff)}.x-button.x-button-light.x-button-pressing,.x-button.x-button-light.x-button-pressing:after,.x-button.x-button-light.x-button-pressed,.x-button.x-button-light.x-button-pressed:after,.x-button.x-button-light.x-button-active,.x-button.x-button-light.x-button-active:after,.x-toolbar .x-button.x-button-light.x-button-pressing,.x-toolbar .x-button.x-button-light.x-button-pressing:after,.x-toolbar .x-button.x-button-light.x-button-pressed,.x-toolbar .x-button.x-button-light.x-button-pressed:after,.x-toolbar .x-button.x-button-light.x-button-active,.x-toolbar .x-button.x-button-light.x-button-active:after{background-image:none;background-color:#999;background-image:-webkit-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-moz-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-o-linear-gradient(top, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a);background-image:-ms-linear-gradient(to bottom, #808080,#8c8c8c 10%,#999999 65%,#9a9a9a)}.x-button.x-button-light.x-button-pressing .x-button-label,.x-button.x-button-light.x-button-pressing .x-badge,.x-button.x-button-light.x-button-pressed .x-button-label,.x-button.x-button-light.x-button-pressed .x-badge,.x-button.x-button-light.x-button-active .x-button-label,.x-button.x-button-light.x-button-active .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-light.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-light.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-light.x-button-active .x-button-label,.x-toolbar .x-button.x-button-light.x-button-active .x-badge{color:#fff;text-shadow:gray 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-light{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-light:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-light:not(.x-first){border-left:1px solid #c7c7c7}.x-segmentedbutton-base.divided .x-button-light:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-light.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-light.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-base-blue{padding:.3em 8px}.x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue{border:1px solid #384220;border-top-color:#4d5a2c;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#fff}.x-button.x-button-base-blue .x-button-icon,.x-toolbar .x-button.x-button-base-blue .x-button-icon{width:24px;height:24px}.x-button.x-button-base-blue.x-button-forward:before,.x-button.x-button-base-blue.x-button-forward:after,.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-base-blue .x-button-label,.x-button.x-button-base-blue .x-badge,.x-toolbar .x-button.x-button-base-blue .x-button-label,.x-toolbar .x-button.x-button-base-blue .x-badge{color:#fff;text-shadow:#384220 0 -0.09em 0}.x-button.x-button-base-blue.x-button-back:before,.x-button.x-button-base-blue.x-button-forward:before,.x-toolbar .x-button.x-button-base-blue.x-button-back:before,.x-toolbar .x-button.x-button-base-blue.x-button-forward:before{background:#3e4923}.x-button.x-button-base-blue,.x-button.x-button-base-blue.x-button-back:after,.x-button.x-button-base-blue.x-button-forward:after,.x-toolbar .x-button.x-button-base-blue,.x-toolbar .x-button.x-button-base-blue.x-button-back:after,.x-toolbar .x-button.x-button-base-blue.x-button-forward:after{background-image:none;background-color:#798d45;background-image:-webkit-linear-gradient(top, #ffffff,#9cb262 3%,#798d45);background-image:-moz-linear-gradient(top, #ffffff,#9cb262 3%,#798d45);background-image:-o-linear-gradient(top, #ffffff,#9cb262 3%,#798d45);background-image:-ms-linear-gradient(to bottom, #ffffff,#9cb262 3%,#798d45)}.x-button.x-button-base-blue.x-button-pressing,.x-button.x-button-base-blue.x-button-pressing:after,.x-button.x-button-base-blue.x-button-pressed,.x-button.x-button-base-blue.x-button-pressed:after,.x-button.x-button-base-blue.x-button-active,.x-button.x-button-base-blue.x-button-active:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressing,.x-toolbar .x-button.x-button-base-blue.x-button-pressing:after,.x-toolbar .x-button.x-button-base-blue.x-button-pressed,.x-toolbar .x-button.x-button-base-blue.x-button-pressed:after,.x-toolbar .x-button.x-button-base-blue.x-button-active,.x-toolbar .x-button.x-button-base-blue.x-button-active:after{background-image:none;background-color:#5c6b34;background-image:-webkit-linear-gradient(top, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35);background-image:-moz-linear-gradient(top, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35);background-image:-o-linear-gradient(top, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35);background-image:-ms-linear-gradient(to bottom, #3e4923,#4d5a2c 10%,#5c6b34 65%,#5d6c35)}.x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-button.x-button-base-blue.x-button-pressing .x-badge,.x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-button.x-button-base-blue.x-button-pressed .x-badge,.x-button.x-button-base-blue.x-button-active .x-button-label,.x-button.x-button-base-blue.x-button-active .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-button-label,.x-toolbar .x-button.x-button-base-blue.x-button-active .x-badge{text-shadow:#384220 0 0.09em 0}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-base-blue{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-base-blue:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-first){border-left:1px solid #384220}.x-segmentedbutton-base.divided .x-button-base-blue:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-base-blue.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-base-blue.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.x-button.x-button-back{padding:.3em 8px}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{border:1px solid #939393;border-top-color:#a5a5a5;min-height:29px;padding-top:0;padding-bottom:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:rgba(255,255,255,0.35) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.35) 0 1px 0;box-shadow:rgba(255,255,255,0.35) 0 1px 0;color:#000}.x-button.x-button-back .x-button-icon,.x-toolbar .x-button.x-button-back .x-button-icon{width:24px;height:24px}.x-button.x-button-back.x-button-forward:before,.x-button.x-button-back.x-button-forward:after,.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-back:after{-webkit-mask-size:.80717em 1.75em}.x-button.x-button-back .x-button-label,.x-button.x-button-back .x-badge,.x-toolbar .x-button.x-button-back .x-button-label,.x-toolbar .x-button.x-button-back .x-badge{color:#323232;text-shadow:#fff 0 0.09em 0}.x-button.x-button-back.x-button-back:before,.x-button.x-button-back.x-button-forward:before,.x-toolbar .x-button.x-button-back.x-button-back:before,.x-toolbar .x-button.x-button-back.x-button-forward:before{background:#989898}.x-button.x-button-back,.x-button.x-button-back.x-button-back:after,.x-button.x-button-back.x-button-forward:after,.x-toolbar .x-button.x-button-back,.x-toolbar .x-button.x-button-back.x-button-back:after,.x-toolbar .x-button.x-button-back.x-button-forward:after{background-image:none;background-color:#cbcbcb;background-image:-webkit-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-moz-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-o-linear-gradient(top, #ffffff,#ececec 3%,#cbcbcb);background-image:-ms-linear-gradient(to bottom, #ffffff,#ececec 3%,#cbcbcb)}.x-button.x-button-back.x-button-pressing,.x-button.x-button-back.x-button-pressing:after,.x-button.x-button-back.x-button-pressed,.x-button.x-button-back.x-button-pressed:after,.x-button.x-button-back.x-button-active,.x-button.x-button-back.x-button-active:after,.x-toolbar .x-button.x-button-back.x-button-pressing,.x-toolbar .x-button.x-button-back.x-button-pressing:after,.x-toolbar .x-button.x-button-back.x-button-pressed,.x-toolbar .x-button.x-button-back.x-button-pressed:after,.x-toolbar .x-button.x-button-back.x-button-active,.x-toolbar .x-button.x-button-back.x-button-active:after{background-image:none;background-color:#656565;background-image:-webkit-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-moz-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-o-linear-gradient(top, #4c4c4c,#585858 10%,#656565 65%,#666666);background-image:-ms-linear-gradient(to bottom, #4c4c4c,#585858 10%,#656565 65%,#666666)}.x-button.x-button-back.x-button-pressing .x-button-label,.x-button.x-button-back.x-button-pressing .x-badge,.x-button.x-button-back.x-button-pressed .x-button-label,.x-button.x-button-back.x-button-pressed .x-badge,.x-button.x-button-back.x-button-active .x-button-label,.x-button.x-button-back.x-button-active .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressing .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressing .x-badge,.x-toolbar .x-button.x-button-back.x-button-pressed .x-button-label,.x-toolbar .x-button.x-button-back.x-button-pressed .x-badge,.x-toolbar .x-button.x-button-back.x-button-active .x-button-label,.x-toolbar .x-button.x-button-back.x-button-active .x-badge{color:#fff;text-shadow:#4c4c4c 0 0.09em 0}.x-button.x-button-back,.x-toolbar .x-button.x-button-back{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-border-radius-topleft:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px}.x-segmentedbutton-base:not(.divided){margin:0 .2em}.x-segmentedbutton-base:not(.divided) .x-button-back{margin:0;-moz-border-radius:0 !important;-webkit-border-radius:0;border-radius:0 !important}.x-segmentedbutton-base:not(.divided) .x-button-back:not(.x-first){border-left:0 !important}.x-segmentedbutton-base.divided .x-button-back:not(.x-first){border-left:1px solid #939393}.x-segmentedbutton-base.divided .x-button-back:not(.x-last){margin-right:7px}.x-segmentedbutton-base .x-button-back.x-first{-moz-border-radius-topleft:2px !important;-webkit-border-top-left-radius:2px !important;border-top-left-radius:2px !important;-moz-border-radius-bottomleft:2px !important;-webkit-border-bottom-left-radius:2px !important;border-bottom-left-radius:2px !important}.x-segmentedbutton-base .x-button-back.x-last{-moz-border-radius-topright:2px !important;-webkit-border-top-right-radius:2px !important;border-top-right-radius:2px !important;-moz-border-radius-bottomright:2px !important;-webkit-border-bottom-right-radius:2px !important;border-bottom-right-radius:2px !important}.unsuported-view{position:absolute;left:0;top:0;right:0;bottom:0;background:url(../img/ios-only.png) no-repeat center #efefef;background-attachment:fixed;z-index:90000}.x-button.text-offset-12{padding-left:12px;padding-right:12px}.x-button.text-offset-30{padding-left:30px;padding-right:30px} diff --git a/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss b/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss index 207a19ca8..2fe18a7d2 100644 --- a/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss +++ b/apps/spreadsheeteditor/mobile/resources/sass/_application-base.scss @@ -18,18 +18,36 @@ $icons-default-size : 24px; $icons-default-image-width : 72px; $icons-default-image-height : 624px; -@import 'sencha-touch/default/all'; +@import 'sencha-touch/default'; -@include sencha-panel; -@include sencha-buttons; -@include sencha-toolbar; -@include sencha-toolbar-forms; -@include sencha-indexbar; -@include sencha-list; -@include sencha-layout; -@include sencha-form; -@include sencha-msgbox; -@include sencha-loading-spinner; +@import 'sencha-touch/default/src/Class'; +@import 'sencha-touch/default/src/Button'; +@import 'sencha-touch/default/src/Panel'; +@import 'sencha-touch/default/src/Sheet'; +@import 'sencha-touch/default/src/MessageBox'; +@import 'sencha-touch/default/src/Toolbar'; +@import 'sencha-touch/default/src/Toast'; +@import 'sencha-touch/default/src/Menu'; +//@import 'sencha-touch/default/src/carousel/Carousel'; +@import 'sencha-touch/default/src/form/Panel'; +@import 'sencha-touch/default/src/form/FieldSet'; +@import 'sencha-touch/default/src/field/Field'; +@import 'sencha-touch/default/src/field/Checkbox'; +@import 'sencha-touch/default/src/field/Radio'; +@import 'sencha-touch/default/src/field/Search'; +@import 'sencha-touch/default/src/field/Select'; +//@import 'sencha-touch/default/src/field/Slider'; +//@import 'sencha-touch/default/src/field/Spinner'; +//@import 'sencha-touch/default/src/field/TextArea'; +//@import 'sencha-touch/default/src/dataview/IndexBar'; +@import 'sencha-touch/default/src/dataview/List'; +//@import 'sencha-touch/default/src/picker/Picker'; +//@import 'sencha-touch/default/src/plugin/ListPaging'; +//@import 'sencha-touch/default/src/plugin/PullRefresh'; +//@import 'sencha-touch/default/src/slider/Slider'; +@import 'sencha-touch/default/src/slider/Toggle'; +//@import 'sencha-touch/default/src/tab/Panel'; +//@import 'sencha-touch/default/src/grid/Grid'; @import 'common-buttons'; @import 'common-dataview'; @@ -48,32 +66,32 @@ $icons-default-image-height : 624px; @include common-toolbar-ui('edit', $base-color); @include common-toolbar-ui('search', $base-color); -@include application-icon-normal('save', 0); -@include application-icon-normal('undo', 1); +//@include application-icon-normal('save', 0); +//@include application-icon-normal('undo', 1); @include application-icon-normal('share', 2); -@include application-icon-normal('font-style', 3); -@include application-icon-normal('font-color', 4); -@include application-icon-normal('bold', 5); -@include application-icon-normal('italic', 6); -@include application-icon-normal('underline', 7); -@include application-icon-normal('align-left', 8); -@include application-icon-normal('align-center', 9); -@include application-icon-normal('align-right', 10); -@include application-icon-normal('align-fill', 11); +//@include application-icon-normal('font-style', 3); +//@include application-icon-normal('font-color', 4); +//@include application-icon-normal('bold', 5); +//@include application-icon-normal('italic', 6); +//@include application-icon-normal('underline', 7); +//@include application-icon-normal('align-left', 8); +//@include application-icon-normal('align-center', 9); +//@include application-icon-normal('align-right', 10); +//@include application-icon-normal('align-fill', 11); @include application-icon-normal('pages', 12); @include application-icon-normal('search-prev', 13); @include application-icon-normal('search-next', 14); -@include application-icon-normal('insert', 15); +//@include application-icon-normal('insert', 15); @include application-icon-normal('search', 16); @include application-icon-normal('fullscreen', 17); -@include application-icon-normal('spinner-down', 18); -@include application-icon-normal('spinner-up', 19); -@include application-icon-normal('table', 20); -@include application-icon-normal('picture', 21); -@include application-icon-normal('insert-row', 22); -@include application-icon-normal('insert-column', 23); -@include application-icon-normal('textbigger', 24); -@include application-icon-normal('textless', 25); +//@include application-icon-normal('spinner-down', 18); +//@include application-icon-normal('spinner-up', 19); +//@include application-icon-normal('table', 20); +//@include application-icon-normal('picture', 21); +//@include application-icon-normal('insert-row', 22); +//@include application-icon-normal('insert-column', 23); +//@include application-icon-normal('textbigger', 24); +//@include application-icon-normal('textless', 25); @include common-button-ui('base', $base-color); diff --git a/apps/spreadsheeteditor/mobile/resources/sass/config.rb b/apps/spreadsheeteditor/mobile/resources/sass/config.rb index 55bd3f69c..11b745b4b 100644 --- a/apps/spreadsheeteditor/mobile/resources/sass/config.rb +++ b/apps/spreadsheeteditor/mobile/resources/sass/config.rb @@ -4,8 +4,12 @@ dir = File.dirname(__FILE__) # Load the sencha-touch framework automatically. load File.join(dir, '..', '..', '..', '..', '..', 'vendor', 'touch', 'resources', 'themes') +# Add include path for command styles +add_import_path File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'sass') + # Compass configurations sass_path = dir css_path = File.join(dir, "..", "css") +fonts_path = File.join(dir, '..', '..', '..', '..', '..', 'apps', 'common', 'mobile', 'resources', 'fonts') environment = :production output_style = :compressed \ No newline at end of file diff --git a/vendor/touch/SETUP.html b/vendor/touch/SETUP.html new file mode 100644 index 000000000..218e71cdc --- /dev/null +++ b/vendor/touch/SETUP.html @@ -0,0 +1,78 @@ + + + + + + + +

Sencha Touch Setup Guide

+

Topics:

+ + +

Introduction

+

Sencha Touch, a high-performance HTML5 mobile application framework, is the cornerstone + of the Sencha HTML5 platform. Built for enabling world-class user experiences, + Sencha Touch is the only framework that enables developers to build powerful apps + that work on iOS, Android, BlackBerry, Windows Phone, and Internet Explorer 10. +
Learn more at What's New. +
Learn about new APIs in the "New in this version" + section near the end of the API page.

+ + +

Installing Sencha Touch

+

To install Sencha Touch:

+
    +
  1. Download Sencha Cmd. + Sencha Cmd enables you to publish, package, and simulate an application, as well as to upgrade Sencha software. + Sencha Cmd also installs Apache Ant, Compass, and Sass.
  2. +
  3. Download Ruby +
      +
    • Mac OS: Ruby is pre-installed. You can verify + it with the ruby -v command.
    • +
    • Windows Download the open source 7-Zip archiver. + Download Ruby (any version) from rubyinstaller.org. + Set the Path environment variable to point to the directory in which you unzip the installer file.
    • +
    • Ubuntu: Use sudo apt-get install ruby2.0.0 to download and install Ruby.
    • +
    +
  4. +
  5. Start your web server. + If using the Sencha Cmd web server, change directory to where you want to serve + your application, open a new command line window and start the server with the + sencha web start command. You can stop the server by typing + CTRL+c or opening another command line and typing the sencha web stop command. + You can access the Sencha Cmd web server using + the http://localhost:1841/<app_name> URL.
  6. +
  7. If you are using Windows and running the IIS web server, add "application/x-json" + as a MIME type; otherwise, IIS returns the JSON file with an error when you preview + your project. In Windows, enable IIS from the add/remove programs or programs and features dialog + (add/remove windows features), you can also add extra functionality by downloading the web platform + toolkit to make config of IIS features extra simple. + For information on adding this MIME type, see this + Stackoverflow article.
  8. +
  9. Use a modern web browser such as + Chrome + or Safari.
  10. +
+ + +

Sencha Touch Information

+ + + diff --git a/vendor/touch/SenchaLogo.png b/vendor/touch/SenchaLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..ec04f17c445c30d5c91db35de86b1381995b597c GIT binary patch literal 5241 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 literal 0 HcmV?d00001 diff --git a/vendor/touch/index.html b/vendor/touch/index.html index 92b6fba4b..fe3c1fb2d 100644 --- a/vendor/touch/index.html +++ b/vendor/touch/index.html @@ -6,12 +6,7 @@ Welcome to Sencha Touch 2 diff --git a/vendor/touch/license.txt b/vendor/touch/license.txt index 4d4798a34..66aed1463 100644 --- a/vendor/touch/license.txt +++ b/vendor/touch/license.txt @@ -1,48 +1,28 @@ -Sencha Touch & Sencha Touch Charts - JavaScript Libraries -Copyright (c) 2010-2012, Sencha, Inc. +Sencha Touch - JavaScript Library +Copyright (c) 2010-2015, Sencha, Inc. All rights reserved. licensing@sencha.com http://www.sencha.com/products/touch/license.php -Open Source License +Commercial License ------------------------------------------------------------------------------------------ -This version of Sencha Touch and Sencha Touch Charts is licensed under the terms of the Open -Source GPL 3.0 license. - -http://www.gnu.org/licenses/gpl.html - -There are several FLOSS exceptions available for use with this release for -open source applications that are distributed under a license other than the GPL. - -* Open Source License Exception for Applications - - http://www.sencha.com/products/floss-exception.php - -* Open Source License Exception for Development - - http://www.sencha.com/products/ux-exception.php - - -Alternate Licensing for Sencha Touch ------------------------------------------------------------------------------------------- -Commercial and OEM Licenses are available for an alternate download of Sencha Touch. +This version of Sencha Touch is licensed commercially. This is the appropriate option if you are creating proprietary applications and you are not prepared to distribute and share the source code of your application under the GPL v3 license. Please visit http://www.sencha.com/store/touch/license.php for more details. -Alternate Licensing for Sencha Touch Charts +OEM / Reseller License ------------------------------------------------------------------------------------------ -Commercial and OEM Licenses are available for an alternate download of Sencha Touch Charts. -This is the appropriate option if you are creating proprietary applications and you are -not prepared to distribute and share the source code of your application under the -GPL v3 license. +For more details, please visit: http://www.sencha.com/products/touch/license.php -Sencha Touch Charts is available commercially only as a part of Sencha Complete or Sencha -Complete Team. Please visit http://www.sencha.com/products/complete/license or -http://www.sencha.com/products/complete-team/license for more details. + +Open Source Licensing +------------------------------------------------------------------------------------------ +Open Source Licensing is available for an alternate download of Sencha Touch. +For more details, please visit http://www.sencha.com/store/touch/license.php for more details. Third Party Content diff --git a/vendor/touch/microloader/development.js b/vendor/touch/microloader/development.js new file mode 100644 index 000000000..4906c58c4 --- /dev/null +++ b/vendor/touch/microloader/development.js @@ -0,0 +1,185 @@ +/** + * Sencha Blink - Development + * @author Jacky Nguyen + */ +(function() { + var head = document.head; + + function write(content) { + document.write(content); + } + + function addMeta(name, content) { + var meta = document.createElement('meta'); + + meta.setAttribute('name', name); + meta.setAttribute('content', content); + head.appendChild(meta); + } + + var xhr = new XMLHttpRequest(); + xhr.open('GET', 'app.json', false); + xhr.send(null); + + var options = eval("(" + xhr.responseText + ")"), + scripts = options.js || [], + styleSheets = options.css || [], + i, ln, path, platform, theme, exclude; + + if(options.platform && options.platforms && options.platforms[options.platform] && options.platforms[options.platform].js) { + scripts = options.platforms[options.platform].js.concat(scripts); + } + + if (navigator.userAgent.match(/IEMobile\/10\.0/)) { + var msViewportStyle = document.createElement("style"); + msViewportStyle.appendChild( + document.createTextNode( + "@media screen and (orientation: portrait) {" + + "@-ms-viewport {width: 320px !important;}" + + "}" + + "@media screen and (orientation: landscape) {" + + "@-ms-viewport {width: 560px !important;}" + + "}" + ) + ); + document.getElementsByTagName("head")[0].appendChild(msViewportStyle); + } + + addMeta('viewport', 'width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no'); + addMeta('apple-mobile-web-app-capable', 'yes'); + addMeta('apple-touch-fullscreen', 'yes'); + + if (!window.Ext) { + window.Ext = {}; + } + Ext.microloaded = true; + + var filterPlatform = window.Ext.filterPlatform = function(platform) { + var profileMatch = false, + ua = navigator.userAgent, + j, jln; + + platform = [].concat(platform); + + function isPhone(ua) { + var isMobile = /Mobile(\/|\s)/.test(ua); + + // Either: + // - iOS but not iPad + // - Android 2 + // - Android with "Mobile" in the UA + + return /(iPhone|iPod)/.test(ua) || + (!/(Silk)/.test(ua) && (/(Android)/.test(ua) && (/(Android 2)/.test(ua) || isMobile))) || + (/(BlackBerry|BB)/.test(ua) && isMobile) || + /(Windows Phone)/.test(ua); + } + + function isTablet(ua) { + return !isPhone(ua) && (/iPad/.test(ua) || /Android|Silk/.test(ua) || /(RIM Tablet OS)/.test(ua) || + (/MSIE 10/.test(ua) && /; Touch/.test(ua))); + } + + // Check if the ?platform parameter is set in the URL + var paramsString = window.location.search.substr(1), + paramsArray = paramsString.split("&"), + params = {}, + testPlatform, i; + + for (i = 0; i < paramsArray.length; i++) { + var tmpArray = paramsArray[i].split("="); + params[tmpArray[0]] = tmpArray[1]; + } + + testPlatform = params.platform; + if (testPlatform) { + return platform.indexOf(testPlatform) != -1; + } + + for (j = 0, jln = platform.length; j < jln; j++) { + switch (platform[j]) { + case 'phone': + profileMatch = isPhone(ua); + break; + case 'tablet': + profileMatch = isTablet(ua); + break; + case 'desktop': + profileMatch = !isPhone(ua) && !isTablet(ua); + break; + case 'ios': + profileMatch = /(iPad|iPhone|iPod)/.test(ua); + break; + case 'android': + profileMatch = /(Android|Silk)/.test(ua); + break; + case 'blackberry': + profileMatch = /(BlackBerry|BB)/.test(ua); + break; + case 'safari': + profileMatch = /Safari/.test(ua) && !(/(BlackBerry|BB)/.test(ua)); + break; + case 'chrome': + profileMatch = /Chrome/.test(ua); + break; + case 'ie10': + profileMatch = /MSIE 10/.test(ua); + break; + case 'windows': + profileMatch = /MSIE 10/.test(ua) || /Trident/.test(ua); + break; + case 'tizen': + profileMatch = /Tizen/.test(ua); + break; + case 'firefox': + profileMatch = /Firefox/.test(ua); + } + if (profileMatch) { + return true; + } + } + return false; + }; + + + for (i = 0,ln = styleSheets.length; i < ln; i++) { + path = styleSheets[i]; + + if (typeof path != 'string') { + platform = path.platform; + exclude = path.exclude; + theme = path.theme; + path = path.path; + } + + if (platform) { + if (!filterPlatform(platform) || filterPlatform(exclude)) { + continue; + } + Ext.theme = { + name: theme || 'Default' + }; + } + + write(''); + } + + for (i = 0,ln = scripts.length; i < ln; i++) { + path = scripts[i]; + + if (typeof path != 'string') { + platform = path.platform; + exclude = path.exclude; + path = path.path; + } + + if (platform) { + if (!filterPlatform(platform) || filterPlatform(exclude)) { + continue; + } + } + + write('