From f8f7d13fc8b95e489ef03d23590b336726b56266 Mon Sep 17 00:00:00 2001 From: ups-tla Date: Fri, 13 Jan 2012 00:57:50 -0700 Subject: [PATCH] Added StudentInfo and Student controller --- app/app.js | 5 +- app/controllers/student/Student.js | 36 +++++++++ app/models/StudentInfo.js | 18 +++++ app/stores/StudentInfo.js | 4 + app/views/SelectUserType.js | 24 ++++-- app/views/Viewport.js | 53 ++++++++----- app/views/student/StudentHome.js | 52 +++++++++++++ app/views/student/StudentInfo.js | 71 ++++++++++++++++++ app/views/student/StudentLogin.js | 49 ++++++++++++ index.html | 11 +++ sencha/resources/css/upsstyle.css | 2 +- .../stylesheets/upsstyle/_studentinfo.scss | 31 ++++++++ .../_studentinfo.scssc | Bin 0 -> 3275 bytes .../upsstyle.scssc | Bin 6787 -> 7568 bytes .../upsstyle/images/icons/dollarsign.png | Bin 3831 -> 3276 bytes .../upsstyle/images/icons/gradcap.png | Bin 3831 -> 3473 bytes .../upsstyle/images/icons/scroll.png | Bin 0 -> 9057 bytes .../upsstyle/images/icons/studentparent.png | Bin 0 -> 9151 bytes sencha/resources/upsstyle/upsstyle.scss | 29 ++++--- styles/upsstyle.css | 0 20 files changed, 349 insertions(+), 36 deletions(-) create mode 100644 app/controllers/student/Student.js create mode 100644 app/models/StudentInfo.js create mode 100644 app/stores/StudentInfo.js create mode 100644 app/views/student/StudentHome.js create mode 100644 app/views/student/StudentInfo.js create mode 100644 app/views/student/StudentLogin.js create mode 100644 sencha/resources/themes/stylesheets/upsstyle/_studentinfo.scss create mode 100644 sencha/resources/upsstyle/.sass-cache/9b674e4a5cc1c95889b7de450ab92b9d75a4c9f4/_studentinfo.scssc rename gradcap.png => sencha/resources/upsstyle/images/icons/dollarsign.png (70%) create mode 100644 sencha/resources/upsstyle/images/icons/scroll.png create mode 100644 sencha/resources/upsstyle/images/icons/studentparent.png delete mode 100644 styles/upsstyle.css diff --git a/app/app.js b/app/app.js index 1b75f4a..89e502c 100644 --- a/app/app.js +++ b/app/app.js @@ -1,10 +1,13 @@ +var User; Ext.regApplication('UPSApp', { defaultTarget:'viewport', name:'UPSApp', launch: function() { - + User = new UPSUser(); // The Ext.regApplication call automatically creates our 'views' namespace this.views.viewport = new this.views.Viewport(); + + this.views.viewport.onStart(); } }); diff --git a/app/controllers/student/Student.js b/app/controllers/student/Student.js new file mode 100644 index 0000000..735668e --- /dev/null +++ b/app/controllers/student/Student.js @@ -0,0 +1,36 @@ +Ext.regController('Student', { + info: function() { + // Just show the info pane + UPSApp.views.viewport.setActiveItem('studentinfo'); + }, + login: function(params) { + + // TODO: Attempt to login and store a session cookie + // For now, we just create some fake user info + + if(!params) + console.log("No username or password passed to login, assuming we're resuming session"); + else + console.log("Username and password supplied \"logging in\""); + + if(!UPSApp.stores.studentinfo.first()) + UPSApp.stores.studentinfo.add({username:''}); + + var student = UPSApp.stores.studentinfo.first(); + + student.set("username", 'TestUsername'); + student.set("name","Test T. Testington"); + student.set("dinerdollars","100.00"); + student.set("paymentdue","1000"); + + + // Update the student info panel + console.log(UPSApp.stores.studentinfo.first()); + UPSApp.views.studentInfo.update(UPSApp.stores.studentinfo.first().data); + UPSApp.views.studentInfo.doLayout(); + + // Switch to StudentHome panel + UPSApp.views.viewport.setActiveItem('studenthome'); + UPSApp.views.studentInfo.doLayout(); + } +}); \ No newline at end of file diff --git a/app/models/StudentInfo.js b/app/models/StudentInfo.js new file mode 100644 index 0000000..ef5d42d --- /dev/null +++ b/app/models/StudentInfo.js @@ -0,0 +1,18 @@ +UPSApp.models.StudentInfo = Ext.regModel('StudentInfo', { + fields: [ + { + name:'username', + type:'string' + } , { + name:'name', + type:'string' + }, { + name:'dinerdollars', + type:'string' + }, { + name:'paymentdue', + type:'string' + } + ] + +}) \ No newline at end of file diff --git a/app/stores/StudentInfo.js b/app/stores/StudentInfo.js new file mode 100644 index 0000000..b71d8b7 --- /dev/null +++ b/app/stores/StudentInfo.js @@ -0,0 +1,4 @@ +UPSApp.stores.studentinfo = new Ext.data.Store({ + model:'StudentInfo', + autoLoad:false +}) \ No newline at end of file diff --git a/app/views/SelectUserType.js b/app/views/SelectUserType.js index 0b24e5a..bceafa6 100644 --- a/app/views/SelectUserType.js +++ b/app/views/SelectUserType.js @@ -1,4 +1,5 @@ UPSApp.views.SelectUserType = Ext.extend(Ext.Panel, { + id:'selectusertype', layout:'card', items:[ { @@ -10,16 +11,18 @@ UPSApp.views.SelectUserType = Ext.extend(Ext.Panel, { defaults: { xtype: 'button', ui: 'maroon', + style: { marginBottom:'1%'} }, items:[ { xtype:'panel', height:32, align:'center', - html:"How are you affiliated with UPS?" + html:"How are you affiliated with UPS?", }, { - text:"I'm a Parent", + html:'
Parent
', + cls:'imageButton', flex: 1, width:"96%", handler:function() { @@ -28,20 +31,25 @@ UPSApp.views.SelectUserType = Ext.extend(Ext.Panel, { } }, { cls:'imageButton', - html:'
Student
', + html:'
Student
', flex: 1, - width:"96%" + width:"96%", + handler:function() { + User.SetUserType('student'); + UPSApp.views.viewport.setActiveItem('studentlogin'); + } + }, { - cls:'btn-imastudent', + cls:'imageButton', + html:'
Alumnus
', flex: 1, - width:"96%", - text:"I'm an Alumnus" + width:"96%" }] } ], initComponent: function() { - UPSApp.views.Viewport.superclass.initComponent.apply(this, arguments); + UPSApp.views.SelectUserType.superclass.initComponent.apply(this, arguments); } }); \ No newline at end of file diff --git a/app/views/Viewport.js b/app/views/Viewport.js index f50c6b7..7493969 100644 --- a/app/views/Viewport.js +++ b/app/views/Viewport.js @@ -1,9 +1,6 @@ -var User; - UPSApp.views.Viewport = Ext.extend(Ext.Panel, { fullscreen:true, layout: 'card', - cardSwitchAnimation:'pop', align:'stretch', scroll:false, dockedItems:[ @@ -20,11 +17,43 @@ UPSApp.views.Viewport = Ext.extend(Ext.Panel, { ] }) ], - items:[], + items:[ + { + xtype:'panel', + html:'Loading...' + } + ], activeItem:0, + onStart: function() { + + UPSApp.views.selectUserType = new UPSApp.views.SelectUserType(); + UPSApp.views.parentHome = new UPSApp.views.ParentHome(); + UPSApp.views.studentLogin = new UPSApp.views.StudentLogin(); + UPSApp.views.studentInfo = new UPSApp.views.StudentInfo(); + UPSApp.views.studentHome = new UPSApp.views.StudentHome(); + + this.add(UPSApp.views.selectUserType); + this.add(UPSApp.views.parentHome); + this.add(UPSApp.views.studentLogin); + this.add(UPSApp.views.studentInfo); + this.add(UPSApp.views.studentHome); + + if(User.GetUserType() == "none") // Go to the select user type panel + this.setActiveItem('selectusertype'); + else if(User.GetUserType() == "parent") // DEBUG: just reset to none, otherwise we will probably go to school website + { + User.SetUserType("none"); + this.setActiveItem('selectusertype'); + } + else if(User.GetUserType() == "student") // Log in + Ext.dispatch({ + controller: 'Student', + action:'login' + }); + }, initComponent: function() { - User = new UPSUser(); + UPSApp.views.toolbar = new Ext.Toolbar({ title:'University of Puget Sound' @@ -32,19 +61,9 @@ UPSApp.views.Viewport = Ext.extend(Ext.Panel, { this.dockedItems[1] = UPSApp.views.toolbar; - UPSApp.views.selectUserType = new UPSApp.views.SelectUserType(); - UPSApp.views.parentHome = new UPSApp.views.ParentHome(); - - this.items[0] = UPSApp.views.selectUserType; - this.items[1] = UPSApp.views.parentHome; - - if(User.GetUserType() == "none") - Ext.apply(this, { - activeItem:0 - }) - else if(User.GetUserType() == "parent") - User.SetUserType("none"); + UPSApp.views.Viewport.superclass.initComponent.apply(this, arguments); + } }); \ No newline at end of file diff --git a/app/views/student/StudentHome.js b/app/views/student/StudentHome.js new file mode 100644 index 0000000..afe49ee --- /dev/null +++ b/app/views/student/StudentHome.js @@ -0,0 +1,52 @@ +UPSApp.views.StudentHome = Ext.extend(Ext.Panel, { + id:'studenthome', + layout:'card', + items:[ ], + initComponent: function() { + var header = { + xtype:'panel', + html:'Student Home', + height:25 + }; + + var elements = [ + {xtype:'button',text:'Student Info',handler:function(){Ext.dispatch({controller: 'Student',action:'info'});}}, + {xtype:'button',text:'News'}, + {xtype:'button',text:'Events'}, + {xtype:'button',text:'Finances'}, + {xtype:'button',text:'Fifth element'} + ]; + + var idx = 0; var hboxes = [header]; + for(var i = 1; i <= Math.ceil(elements.length / 2); i++) + { + var temp = [] + temp[0] = elements[idx++]; + + if(elements[idx]) + temp[1] = elements[idx++]; + hboxes[i] = { + flex:1, + xtype:'container', + layout:{type:'hbox',align:'stretch',pack:'stretch',}, + defaults:{flex:1,marginBottom:'1%'}, + items:temp + } + } + + + var vbox = { + xtype: 'container', + layout: { + type: 'vbox', + align: 'stretch', + pack: 'stretch', + }, + items:hboxes + } + + Ext.apply(this, {items:vbox}); + + UPSApp.views.StudentInfo.superclass.initComponent.apply(this, arguments); + } +}); \ No newline at end of file diff --git a/app/views/student/StudentInfo.js b/app/views/student/StudentInfo.js new file mode 100644 index 0000000..b06d5bd --- /dev/null +++ b/app/views/student/StudentInfo.js @@ -0,0 +1,71 @@ +UPSApp.views.StudentInfo = Ext.extend(Ext.Panel, { + id:'studentinfo', + width:'100%', + tpl:'
' + + '

' + + 'Hello, {name}.' + + '


' + + 'You have {dinerdollars} diner dollars.' + + '
' + + 'Your next payment due is ${paymentdue} on January 25th' + + '

' + + '
', + + items:[], + initComponent: function() { + + + UPSApp.views.StudentInfo.superclass.initComponent.apply(this, arguments); + } +}); + +/*UPSApp.views.StudentInfo = Ext.extend(Ext.form.FormPanel, { + id:'studentinfo', + layout: + { + type:'vbox', + align:'stretch', + pack:'stretch' + }, + width:'100%', + items:[ + { + xtype:'fieldset', + layout: + { + type:'fit', + align:'stretch', + pack:'stretch' + }, + title:'Student Info', + width:"100%", + instructions:'Your current student info', + defaults: { + xtype:'textfield', + useClearIcon:false, + autoCapitalize:false, + cls:'readonlyform', + disabled:true + }, + items: [ + { + name:'username', + label:'username' + }, + { + name:'dinerdollars', + label:'Diner Dollars' + }, + { + name:'paymentdue', + label:'Payment Due' + } + ] + } + ], + initComponent: function() { + + + UPSApp.views.StudentInfo.superclass.initComponent.apply(this, arguments); + } +});*/ \ No newline at end of file diff --git a/app/views/student/StudentLogin.js b/app/views/student/StudentLogin.js new file mode 100644 index 0000000..7e7ca31 --- /dev/null +++ b/app/views/student/StudentLogin.js @@ -0,0 +1,49 @@ +UPSApp.views.StudentLogin = Ext.extend(Ext.form.FormPanel, { + id:'studentlogin', + layout:'vbox', + items:[ + { + xtype:'fieldset', + title:'Student Login', + instructions:'Enter your student account info.', + defaults: { + xtype:'textfield', + required:true, + useClearIcon:true, + autoCapitalize:false + }, + items: [ + { + name:'username', + label:'username' + }, + { + xtype:'passwordfield', + name:'password', + label:'password' + } + ] + }, + { + ui:'action', + xtype:'button', + text:'Login', + handler:function() + { + Ext.dispatch({ + controller: 'Student', + action:'login', + data: this.ownerCt.getValues() + }); + } + } + ], + initComponent: function() { + + + UPSApp.views.StudentLogin.superclass.initComponent.apply(this, arguments); + }, + onLoginAction: function() { + + } +}); \ No newline at end of file diff --git a/index.html b/index.html index ab8bcaa..4676e49 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,18 @@ + + + + + + + + + + + diff --git a/sencha/resources/css/upsstyle.css b/sencha/resources/css/upsstyle.css index 53b9acb..07aab89 100644 --- a/sencha/resources/css/upsstyle.css +++ b/sencha/resources/css/upsstyle.css @@ -1 +1 @@ -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}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;position:relative}*,*:after,*:before{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-webkit-text-size-adjust:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}html,body,.x-body-stretcher{width:100%;height:100%}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-ios{-webkit-backface-visibility:hidden}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}input,textarea{-webkit-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-slider .x-field-mask,.x-field-toggle .x-field-mask,.x-field-checkbox .x-field-mask,.x-field-radio .x-field-mask,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-fullscreen{position:absolute !important;top:0px;left:0px}.x-desktop .x-body-stretcher{margin-bottom:0px}.x-scroller-parent{overflow:hidden !important}.x-scroller-parent,.x-scroller{position:relative}.x-ios .x-scroller,.x-ios .x-scroller > *{-webkit-transform:translate3d(0, 0, 0)}.x-draggable{z-index:1}.x-scrollbar{position:absolute;z-index:10;-webkit-transition-property:opacity;-webkit-transition-duration:250ms;-webkit-border-radius:4px;opacity:0}.x-android .x-scrollbar{-webkit-transition-property:none;-webkit-transition-duration:0ms;-webkit-border-radius:0px}.x-scrollbar-dark{background-color:rgba(0,0,0,0.6);border:1px solid rgba(255,255,255,0.2)}.x-scrollbar-light{background-color:rgba(255,255,255,0.6);border:1px solid rgba(0,0,0,0.2)}.x-scrollbar-vertical{top:0;right:4px;width:4px}.x-scrollbar-horizontal{left:0;bottom:4px;height:4px}.x-mask{position:absolute;top:0;left:0;z-index:8000;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}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask .x-mask-loading{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;-webkit-border-radius:0.5em;border-radius:0.5em;color:#fff;text-align:center;padding:.4em;font-weight:bold;display:block;width:8.5em;height:8.5em;background:rgba(0,0,0,0.25)}.x-mask .x-loading-spinner{margin:1em auto .2em}.x-mask .x-loading-msg{font-size:.95em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-floating{position:absolute !important;z-index:10000 !important;top:0;left:0}.x-dragging{opacity:0.7}.x-panel-list{background-color:#ff8080}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;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{display:inline;float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{display:inline;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:#004c99}.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}.x-video{background-color:#000}.x-sortable .x-dragging{opacity:1;z-index:5}.x-fullscreen{background:#fff}.x-map{background-color:#edeae2;width:100%;height:100%}.x-mask-map{background:transparent !important}.x-panel,.x-panel-body{position:relative}.x-floating.x-panel,.x-floating.x-carousel{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;background-color:#000;background-image:none}.x-floating.x-panel.x-panel-light,.x-floating.x-carousel.x-panel-light{background-color:maroon;background-image:none}.x-floating .x-panel-body,.x-floating .x-carousel-body{background-color:#fff;-webkit-border-radius:0.3em;border-radius:0.3em}.x-anchor{width:1.631em;height:0.7em;position:absolute;z-index:1;-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;overflow:hidden;background-color:#000}.x-anchor.x-anchor-bottom{-webkit-transform:rotate(180deg);background-color:#000}.x-anchor.x-anchor-left{-webkit-transform:rotate(270deg)}.x-anchor.x-anchor-right{-webkit-transform:rotate(90deg)}.x-floating.x-panel-light:after{background-color:maroon}.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}.x-button,.x-toolbar .x-button{border:0.1em solid #999;border-top-color:#a6a6a6;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.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-color:#ccc;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #f2f2f2), color-stop(30%, #e0e0e0), color-stop(65%, #cccccc), color-stop(100%, #b3b3b3));background-image:-webkit-linear-gradient(#ffffff,#f2f2f2 2%,#e0e0e0 30%,#cccccc 65%,#b3b3b3);background-image:linear-gradient(#ffffff,#f2f2f2 2%,#e0e0e0 30%,#cccccc 65%,#b3b3b3)}.x-button img.x-icon-mask,.x-toolbar .x-button img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-button.x-button-pressed,.x-button.x-button-active,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-active{-webkit-box-shadow:inset #aaa1a1 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.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-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-color:#bababa;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1a1a1), color-stop(10%, #adadad), color-stop(65%, #bababa), color-stop(100%, #bbbbbb));background-image:-webkit-linear-gradient(#a1a1a1,#adadad 10%,#bababa 65%,#bbbbbb);background-image:linear-gradient(#a1a1a1,#adadad 10%,#bababa 65%,#bbbbbb)}.x-button img{width:2.1em;height:2.1em;background-repeat:no-repeat;background-position:center;display:block}.x-button img.x-icon-mask{width:1.3em;height:1.3em;-webkit-mask-size:1.3em}.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 img{opacity:.5}.x-button-round,.x-button.x-button-action-round,.x-button.x-button-confirm-round,.x-button.x-button-decline-round,.x-button.x-button-maroon-round,.x-button.x-button-white-round{-webkit-border-radius:0.9em;border-radius:0.9em;padding:0.1em 0.9em}.x-button-small,.x-button.x-button-action-small,.x-button.x-button-confirm-small,.x-button.x-button-decline-small,.x-button.x-button-maroon-small,.x-button.x-button-white-small,.x-toolbar .x-button-small,.x-toolbar .x-button.x-button-action-small,.x-toolbar .x-button.x-button-confirm-small,.x-toolbar .x-button.x-button-decline-small,.x-toolbar .x-button.x-button-maroon-small,.x-toolbar .x-button.x-button-white-small{-webkit-border-radius:0.3em;border-radius:0.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button.x-button-action-small .x-button-label,.x-button.x-button-confirm-small .x-button-label,.x-button.x-button-decline-small .x-button-label,.x-button.x-button-maroon-small .x-button-label,.x-button.x-button-white-small .x-button-label,.x-button-small .x-hasbadge .x-badge,.x-hasbadge .x-button-small .x-badge,.x-button.x-button-action-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-action-small .x-badge,.x-button.x-button-confirm-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-confirm-small .x-badge,.x-button.x-button-decline-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-decline-small .x-badge,.x-button.x-button-maroon-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-maroon-small .x-badge,.x-button.x-button-white-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-white-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button.x-button-action-small .x-button-label,.x-toolbar .x-button.x-button-confirm-small .x-button-label,.x-toolbar .x-button.x-button-decline-small .x-button-label,.x-toolbar .x-button.x-button-maroon-small .x-button-label,.x-toolbar .x-button.x-button-white-small .x-button-label,.x-toolbar .x-button-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button-small .x-badge,.x-toolbar .x-button.x-button-action-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-action-small .x-badge,.x-toolbar .x-button.x-button-confirm-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-confirm-small .x-badge,.x-toolbar .x-button.x-button-decline-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-decline-small .x-badge,.x-toolbar .x-button.x-button-maroon-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-maroon-small .x-badge,.x-toolbar .x-button.x-button-white-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-white-small .x-badge{font-size:.6em}.x-button-small img,.x-button.x-button-action-small img,.x-button.x-button-confirm-small img,.x-button.x-button-decline-small img,.x-button.x-button-maroon-small img,.x-button.x-button-white-small img,.x-toolbar .x-button-small img,.x-toolbar .x-button.x-button-action-small img,.x-toolbar .x-button.x-button-confirm-small img,.x-toolbar .x-button.x-button-decline-small img,.x-toolbar .x-button.x-button-maroon-small img,.x-toolbar .x-button.x-button-white-small img{width:.75em;height:.75em}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-direction:reverse;box-direction:reverse}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;box-orient:vertical}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:normal;box-direction:normal}.x-iconalign-left,.x-iconalign-top{-webkit-box-direction:reverse;box-direction:reverse}.x-iconalign-left .x-button-label,.x-iconalign-left .x-hasbadge .x-badge,.x-hasbadge .x-iconalign-left .x-badge{margin-left:0.3em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-hasbadge .x-badge,.x-hasbadge .x-iconalign-right .x-badge{margin-right:0.3em}.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}.x-toolbar .x-button{margin:0 .2em;padding:.3em .6em}.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}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.8em;z-index:1}.x-button-forward:before,.x-button-forward:after,.x-button-back:before,.x-button-back:after{content:"";position:absolute;width:0.773em;height:1.8em;top:-0.1em;left:auto;z-index:2;-webkit-mask:0.145em 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.773em 1.8em;overflow:hidden}.x-button-back,.x-toolbar .x-button-back{margin-left:0.828em;padding-left:.4em}.x-button-back:before,.x-toolbar .x-button-back:before{left:-0.693em}.x-button-back:after,.x-toolbar .x-button-back:after{left:-0.628em}.x-button-forward,.x-toolbar .x-button-forward{margin-right:0.828em;padding-right:.4em}.x-button-forward:before,.x-button-forward:after,.x-toolbar .x-button-forward:before,.x-toolbar .x-button-forward:after{-webkit-mask:-0.145em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat}.x-button-forward:before,.x-toolbar .x-button-forward:before{right:-0.693em}.x-button-forward:after,.x-toolbar .x-button-forward:after{right:-0.628em}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;-webkit-box-shadow:none;box-shadow:none;-webkit-border-radius:none;border-radius:none;min-height:0;text-shadow:none;height:auto;line-height:auto;margin:-1.5em -0.5em;padding:1.3em 1em;height:1.8em}.x-button.x-button-plain > *,.x-toolbar .x-button.x-button-plain > *{overflow:visible;margin-top:-0.75em}.x-button.x-button-plain img,.x-toolbar .x-button.x-button-plain img{-webkit-mask-size:1.4em;width:1.4em;height:1.4em}.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;-webkit-box-shadow: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)}.x-button.x-button-plain.x-button-pressed img,.x-toolbar .x-button.x-button-plain.x-button-pressed img{background-color:#fff;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(#e6e6e6,#f2f2f2 10%,#ffffff 65%,#ffffff);background-image:linear-gradient(#e6e6e6,#f2f2f2 10%,#ffffff 65%,#ffffff)}.x-segmentedbutton .x-button{-webkit-border-radius:0;border-radius:0;margin:0}.x-segmentedbutton .x-button:first-child{-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}.x-segmentedbutton .x-button:last-child{-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}.x-segmentedbutton .x-button:not(:first-child){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{-webkit-border-radius:1em;border-radius:1em;-webkit-background-clip:padding;background-clip:padding-box;padding:.15em .25em;z-index:30;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:#000 0 .1em .2em;overflow:hidden;color:#fff;border:2px solid #fff;position:absolute;width:auto;min-width:2em;height:2em;line-height:1.2em;font-size:.6em;top:-0.15em;right:0px;max-width:100%;background-color:#900;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e60000), color-stop(50%, #b30000), color-stop(51%, #990000), color-stop(100%, #800000));background-image:-webkit-linear-gradient(#e60000,#b30000 50%,#990000 51%,#800000);background-image:linear-gradient(#e60000,#b30000 50%,#990000 51%,#800000);display:inline-block}.x-button.x-button-action,.x-toolbar .x-button.x-button-action,.x-button.x-button-action-round,.x-toolbar .x-button.x-button-action-round,.x-button.x-button-action-small,.x-toolbar .x-button.x-button-action-small{border:0.1em solid #900;border-top-color:#b30000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-action.x-button-back:before,.x-button.x-button-action.x-button-forward:before,.x-toolbar .x-button.x-button-action.x-button-back:before,.x-toolbar .x-button.x-button-action.x-button-forward:before,.x-button.x-button-action-round.x-button-back:before,.x-button.x-button-action-round.x-button-forward:before,.x-toolbar .x-button.x-button-action-round.x-button-back:before,.x-toolbar .x-button.x-button-action-round.x-button-forward:before,.x-button.x-button-action-small.x-button-back:before,.x-button.x-button-action-small.x-button-forward:before,.x-toolbar .x-button.x-button-action-small.x-button-back:before,.x-toolbar .x-button.x-button-action-small.x-button-forward:before{background:#900}.x-button.x-button-action,.x-button.x-button-action.x-button-back:after,.x-button.x-button-action.x-button-forward:after,.x-toolbar .x-button.x-button-action,.x-toolbar .x-button.x-button-action.x-button-back:after,.x-toolbar .x-button.x-button-action.x-button-forward:after,.x-button.x-button-action-round,.x-button.x-button-action-round.x-button-back:after,.x-button.x-button-action-round.x-button-forward:after,.x-toolbar .x-button.x-button-action-round,.x-toolbar .x-button.x-button-action-round.x-button-back:after,.x-toolbar .x-button.x-button-action-round.x-button-forward:after,.x-button.x-button-action-small,.x-button.x-button-action-small.x-button-back:after,.x-button.x-button-action-small.x-button-forward:after,.x-toolbar .x-button.x-button-action-small,.x-toolbar .x-button.x-button-action-small.x-button-back:after,.x-toolbar .x-button.x-button-action-small.x-button-forward:after{background-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9999), color-stop(2%, #ff4d4d), color-stop(30%, #ff2929), color-stop(65%, #ff0000), color-stop(100%, #cc0000));background-image:-webkit-linear-gradient(#ff9999,#ff4d4d 2%,#ff2929 30%,#ff0000 65%,#cc0000);background-image:linear-gradient(#ff9999,#ff4d4d 2%,#ff2929 30%,#ff0000 65%,#cc0000)}.x-button.x-button-action img.x-icon-mask,.x-toolbar .x-button.x-button-action img.x-icon-mask,.x-button.x-button-action-round img.x-icon-mask,.x-toolbar .x-button.x-button-action-round img.x-icon-mask,.x-button.x-button-action-small img.x-icon-mask,.x-toolbar .x-button.x-button-action-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-button.x-button-action.x-button-pressed,.x-button.x-button-action.x-button-active,.x-toolbar .x-button.x-button-action.x-button-pressed,.x-toolbar .x-button.x-button-action.x-button-active,.x-button.x-button-action-round.x-button-pressed,.x-button.x-button-action-round.x-button-active,.x-toolbar .x-button.x-button-action-round.x-button-pressed,.x-toolbar .x-button.x-button-action-round.x-button-active,.x-button.x-button-action-small.x-button-pressed,.x-button.x-button-action-small.x-button-active,.x-toolbar .x-button.x-button-action-small.x-button-pressed,.x-toolbar .x-button.x-button-action-small.x-button-active{-webkit-box-shadow:inset #b30000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-action.x-button-pressed,.x-button.x-button-action.x-button-pressed:after,.x-button.x-button-action.x-button-active,.x-button.x-button-action.x-button-active:after,.x-toolbar .x-button.x-button-action.x-button-pressed,.x-toolbar .x-button.x-button-action.x-button-pressed:after,.x-toolbar .x-button.x-button-action.x-button-active,.x-toolbar .x-button.x-button-action.x-button-active:after,.x-button.x-button-action-round.x-button-pressed,.x-button.x-button-action-round.x-button-pressed:after,.x-button.x-button-action-round.x-button-active,.x-button.x-button-action-round.x-button-active:after,.x-toolbar .x-button.x-button-action-round.x-button-pressed,.x-toolbar .x-button.x-button-action-round.x-button-pressed:after,.x-toolbar .x-button.x-button-action-round.x-button-active,.x-toolbar .x-button.x-button-action-round.x-button-active:after,.x-button.x-button-action-small.x-button-pressed,.x-button.x-button-action-small.x-button-pressed:after,.x-button.x-button-action-small.x-button-active,.x-button.x-button-action-small.x-button-active:after,.x-toolbar .x-button.x-button-action-small.x-button-pressed,.x-toolbar .x-button.x-button-action-small.x-button-pressed:after,.x-toolbar .x-button.x-button-action-small.x-button-active,.x-toolbar .x-button.x-button-action-small.x-button-active:after{background-color:#db0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a80000), color-stop(10%, #c20000), color-stop(65%, #db0000), color-stop(100%, #de0000));background-image:-webkit-linear-gradient(#a80000,#c20000 10%,#db0000 65%,#de0000);background-image:linear-gradient(#a80000,#c20000 10%,#db0000 65%,#de0000)}.x-button.x-button-confirm,.x-toolbar .x-button.x-button-confirm,.x-button.x-button-confirm-round,.x-toolbar .x-button.x-button-confirm-round,.x-button.x-button-confirm-small,.x-toolbar .x-button.x-button-confirm-small{border:0.1em solid #263501;border-top-color:#374e02;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-confirm.x-button-back:before,.x-button.x-button-confirm.x-button-forward:before,.x-toolbar .x-button.x-button-confirm.x-button-back:before,.x-toolbar .x-button.x-button-confirm.x-button-forward:before,.x-button.x-button-confirm-round.x-button-back:before,.x-button.x-button-confirm-round.x-button-forward:before,.x-toolbar .x-button.x-button-confirm-round.x-button-back:before,.x-toolbar .x-button.x-button-confirm-round.x-button-forward:before,.x-button.x-button-confirm-small.x-button-back:before,.x-button.x-button-confirm-small.x-button-forward:before,.x-toolbar .x-button.x-button-confirm-small.x-button-back:before,.x-toolbar .x-button.x-button-confirm-small.x-button-forward:before{background:#263501}.x-button.x-button-confirm,.x-button.x-button-confirm.x-button-back:after,.x-button.x-button-confirm.x-button-forward:after,.x-toolbar .x-button.x-button-confirm,.x-toolbar .x-button.x-button-confirm.x-button-back:after,.x-toolbar .x-button.x-button-confirm.x-button-forward:after,.x-button.x-button-confirm-round,.x-button.x-button-confirm-round.x-button-back:after,.x-button.x-button-confirm-round.x-button-forward:after,.x-toolbar .x-button.x-button-confirm-round,.x-toolbar .x-button.x-button-confirm-round.x-button-back:after,.x-toolbar .x-button.x-button-confirm-round.x-button-forward:after,.x-button.x-button-confirm-small,.x-button.x-button-confirm-small.x-button-back:after,.x-button.x-button-confirm-small.x-button-forward:after,.x-toolbar .x-button.x-button-confirm-small,.x-toolbar .x-button.x-button-confirm-small.x-button-back:after,.x-toolbar .x-button.x-button-confirm-small.x-button-forward:after{background-color:#6c9804;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c2fa3b), color-stop(2%, #a2e306), color-stop(30%, #89c005), color-stop(65%, #6c9804), color-stop(100%, #496603));background-image:-webkit-linear-gradient(#c2fa3b,#a2e306 2%,#89c005 30%,#6c9804 65%,#496603);background-image:linear-gradient(#c2fa3b,#a2e306 2%,#89c005 30%,#6c9804 65%,#496603)}.x-button.x-button-confirm img.x-icon-mask,.x-toolbar .x-button.x-button-confirm img.x-icon-mask,.x-button.x-button-confirm-round img.x-icon-mask,.x-toolbar .x-button.x-button-confirm-round img.x-icon-mask,.x-button.x-button-confirm-small img.x-icon-mask,.x-toolbar .x-button.x-button-confirm-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #f4fedc));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#f4fedc);background-image:linear-gradient(#ffffff,#ffffff 2%,#f4fedc)}.x-button.x-button-confirm.x-button-pressed,.x-button.x-button-confirm.x-button-active,.x-toolbar .x-button.x-button-confirm.x-button-pressed,.x-toolbar .x-button.x-button-confirm.x-button-active,.x-button.x-button-confirm-round.x-button-pressed,.x-button.x-button-confirm-round.x-button-active,.x-toolbar .x-button.x-button-confirm-round.x-button-pressed,.x-toolbar .x-button.x-button-confirm-round.x-button-active,.x-button.x-button-confirm-small.x-button-pressed,.x-button.x-button-confirm-small.x-button-active,.x-toolbar .x-button.x-button-confirm-small.x-button-pressed,.x-toolbar .x-button.x-button-confirm-small.x-button-active{-webkit-box-shadow:inset #384f00 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-confirm.x-button-pressed,.x-button.x-button-confirm.x-button-pressed:after,.x-button.x-button-confirm.x-button-active,.x-button.x-button-confirm.x-button-active:after,.x-toolbar .x-button.x-button-confirm.x-button-pressed,.x-toolbar .x-button.x-button-confirm.x-button-pressed:after,.x-toolbar .x-button.x-button-confirm.x-button-active,.x-toolbar .x-button.x-button-confirm.x-button-active:after,.x-button.x-button-confirm-round.x-button-pressed,.x-button.x-button-confirm-round.x-button-pressed:after,.x-button.x-button-confirm-round.x-button-active,.x-button.x-button-confirm-round.x-button-active:after,.x-toolbar .x-button.x-button-confirm-round.x-button-pressed,.x-toolbar .x-button.x-button-confirm-round.x-button-pressed:after,.x-toolbar .x-button.x-button-confirm-round.x-button-active,.x-toolbar .x-button.x-button-confirm-round.x-button-active:after,.x-button.x-button-confirm-small.x-button-pressed,.x-button.x-button-confirm-small.x-button-pressed:after,.x-button.x-button-confirm-small.x-button-active,.x-button.x-button-confirm-small.x-button-active:after,.x-toolbar .x-button.x-button-confirm-small.x-button-pressed,.x-toolbar .x-button.x-button-confirm-small.x-button-pressed:after,.x-toolbar .x-button.x-button-confirm-small.x-button-active,.x-toolbar .x-button.x-button-confirm-small.x-button-active:after{background-color:#547503;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #304402), color-stop(10%, #425c02), color-stop(65%, #547503), color-stop(100%, #557803));background-image:-webkit-linear-gradient(#304402,#425c02 10%,#547503 65%,#557803);background-image:linear-gradient(#304402,#425c02 10%,#547503 65%,#557803)}.x-button.x-button-decline,.x-toolbar .x-button.x-button-decline,.x-button.x-button-decline-round,.x-toolbar .x-button.x-button-decline-round,.x-button.x-button-decline-small,.x-toolbar .x-button.x-button-decline-small{border:0.1em solid #630303;border-top-color:#7c0303;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-decline.x-button-back:before,.x-button.x-button-decline.x-button-forward:before,.x-toolbar .x-button.x-button-decline.x-button-back:before,.x-toolbar .x-button.x-button-decline.x-button-forward:before,.x-button.x-button-decline-round.x-button-back:before,.x-button.x-button-decline-round.x-button-forward:before,.x-toolbar .x-button.x-button-decline-round.x-button-back:before,.x-toolbar .x-button.x-button-decline-round.x-button-forward:before,.x-button.x-button-decline-small.x-button-back:before,.x-button.x-button-decline-small.x-button-forward:before,.x-toolbar .x-button.x-button-decline-small.x-button-back:before,.x-toolbar .x-button.x-button-decline-small.x-button-forward:before{background:#630303}.x-button.x-button-decline,.x-button.x-button-decline.x-button-back:after,.x-button.x-button-decline.x-button-forward:after,.x-toolbar .x-button.x-button-decline,.x-toolbar .x-button.x-button-decline.x-button-back:after,.x-toolbar .x-button.x-button-decline.x-button-forward:after,.x-button.x-button-decline-round,.x-button.x-button-decline-round.x-button-back:after,.x-button.x-button-decline-round.x-button-forward:after,.x-toolbar .x-button.x-button-decline-round,.x-toolbar .x-button.x-button-decline-round.x-button-back:after,.x-toolbar .x-button.x-button-decline-round.x-button-forward:after,.x-button.x-button-decline-small,.x-button.x-button-decline-small.x-button-back:after,.x-button.x-button-decline-small.x-button-forward:after,.x-toolbar .x-button.x-button-decline-small,.x-toolbar .x-button.x-button-decline-small.x-button-back:after,.x-toolbar .x-button.x-button-decline-small.x-button-forward:after{background-color:#c70505;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fb6a6a), color-stop(2%, #f91f1f), color-stop(30%, #ef0606), color-stop(65%, #c70505), color-stop(100%, #950404));background-image:-webkit-linear-gradient(#fb6a6a,#f91f1f 2%,#ef0606 30%,#c70505 65%,#950404);background-image:linear-gradient(#fb6a6a,#f91f1f 2%,#ef0606 30%,#c70505 65%,#950404)}.x-button.x-button-decline img.x-icon-mask,.x-toolbar .x-button.x-button-decline img.x-icon-mask,.x-button.x-button-decline-round img.x-icon-mask,.x-toolbar .x-button.x-button-decline-round img.x-icon-mask,.x-button.x-button-decline-small img.x-icon-mask,.x-toolbar .x-button.x-button-decline-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #fedcdc));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#fedcdc);background-image:linear-gradient(#ffffff,#ffffff 2%,#fedcdc)}.x-button.x-button-decline.x-button-pressed,.x-button.x-button-decline.x-button-active,.x-toolbar .x-button.x-button-decline.x-button-pressed,.x-toolbar .x-button.x-button-decline.x-button-active,.x-button.x-button-decline-round.x-button-pressed,.x-button.x-button-decline-round.x-button-active,.x-toolbar .x-button.x-button-decline-round.x-button-pressed,.x-toolbar .x-button.x-button-decline-round.x-button-active,.x-button.x-button-decline-small.x-button-pressed,.x-button.x-button-decline-small.x-button-active,.x-toolbar .x-button.x-button-decline-small.x-button-pressed,.x-toolbar .x-button.x-button-decline-small.x-button-active{-webkit-box-shadow:inset maroon 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-decline.x-button-pressed,.x-button.x-button-decline.x-button-pressed:after,.x-button.x-button-decline.x-button-active,.x-button.x-button-decline.x-button-active:after,.x-toolbar .x-button.x-button-decline.x-button-pressed,.x-toolbar .x-button.x-button-decline.x-button-pressed:after,.x-toolbar .x-button.x-button-decline.x-button-active,.x-toolbar .x-button.x-button-decline.x-button-active:after,.x-button.x-button-decline-round.x-button-pressed,.x-button.x-button-decline-round.x-button-pressed:after,.x-button.x-button-decline-round.x-button-active,.x-button.x-button-decline-round.x-button-active:after,.x-toolbar .x-button.x-button-decline-round.x-button-pressed,.x-toolbar .x-button.x-button-decline-round.x-button-pressed:after,.x-toolbar .x-button.x-button-decline-round.x-button-active,.x-toolbar .x-button.x-button-decline-round.x-button-active:after,.x-button.x-button-decline-small.x-button-pressed,.x-button.x-button-decline-small.x-button-pressed:after,.x-button.x-button-decline-small.x-button-active,.x-button.x-button-decline-small.x-button-active:after,.x-toolbar .x-button.x-button-decline-small.x-button-pressed,.x-toolbar .x-button.x-button-decline-small.x-button-pressed:after,.x-toolbar .x-button.x-button-decline-small.x-button-active,.x-toolbar .x-button.x-button-decline-small.x-button-active:after{background-color:#a40404;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #720303), color-stop(10%, #8b0404), color-stop(65%, #a40404), color-stop(100%, #a70404));background-image:-webkit-linear-gradient(#720303,#8b0404 10%,#a40404 65%,#a70404);background-image:linear-gradient(#720303,#8b0404 10%,#a40404 65%,#a70404)}.x-sheet{padding:0.7em;border-top:1px solid #000;background-color:rgba(0,0,0,0.9);background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(153,0,0,0.9)), color-stop(2%, rgba(36,0,0,0.9)), color-stop(100%, rgba(0,0,0,0.9)));background-image:-webkit-linear-gradient(rgba(153,0,0,0.9),rgba(36,0,0,0.9) 2%,rgba(0,0,0,0.9));background-image:linear-gradient(rgba(153,0,0,0.9),rgba(36,0,0,0.9) 2%,rgba(0,0,0,0.9))}.x-sheet .x-sheet-body .x-button{margin-bottom:0.5em}.x-sheet-body{position:relative}.x-sheet.x-picker{padding:0}.x-sheet.x-picker > .x-sheet-body{position:relative;background-color:#fff;-webkit-border-radius:0.4em;border-radius:0.4em;-webkit-background-clip:padding;background-clip:padding-box;overflow:hidden;margin:0.7em}.x-sheet.x-picker > .x-sheet-body:before,.x-sheet.x-picker > .x-sheet-body:after{z-index:1;content:"";position:absolute;width:100%;height:30%;top:0;left:0}.x-sheet.x-picker > .x-sheet-body:before{top:auto;-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;bottom:0;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #bbbbbb));background-image:-webkit-linear-gradient(#ffffff,#bbbbbb);background-image:linear-gradient(#ffffff,#bbbbbb)}.x-sheet.x-picker > .x-sheet-body:after{-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;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bbbbbb), color-stop(100%, #ffffff));background-image:-webkit-linear-gradient(#bbbbbb,#ffffff);background-image:linear-gradient(#bbbbbb,#ffffff)}.x-picker-slot{z-index:2;position:relative;-webkit-box-shadow:rgba(0,0,0,0.4) -1px 0 1px}.x-picker-slot:first-child{-webkit-box-shadow:none}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:-webkit-box;display:box;-webkit-box-align:stretch;box-align:stretch;-webkit-box-orient:vertical;box-orient:vertical;-webkit-box-pack:center;box-pack:center;pointer-events:none}.x-picker-bar{border-top:0.12em solid red;border-bottom:0.12em solid red;height:2.5em;background-color:rgba(242,13,13,0.3);background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(250,158,158,0.3)), color-stop(2%, rgba(244,47,47,0.3)), color-stop(100%, rgba(208,11,11,0.3)));background-image:-webkit-linear-gradient(rgba(250,158,158,0.3),rgba(244,47,47,0.3) 2%,rgba(208,11,11,0.3));background-image:linear-gradient(rgba(250,158,158,0.3),rgba(244,47,47,0.3) 2%,rgba(208,11,11,0.3));-webkit-box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em}.x-picker-slot-title{background-color:#9a0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff3333), color-stop(2%, #bd0000), color-stop(100%, #760000));background-image:-webkit-linear-gradient(#ff3333,#bd0000 2%,#760000);background-image:linear-gradient(#ff3333,#bd0000 2%,#760000);border-top:1px solid #9a0000;border-bottom:1px solid #340000;font-weight:bold;font-size:0.8em;color:#000;padding:0.2em 1.02em;-webkit-box-shadow:0px 0.1em 0.3em rgba(0,0,0,0.3);text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-picker-item{vertical-align:middle;height:2.5em;line-height:2.5em;font-weight:bold;padding:0 10px 0 10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-tabbar.x-docked-top{border-bottom:.1em solid;height:2.6em;padding:0 .8em}.x-tabbar.x-docked-top .x-tab{margin:.4em .2em;padding:0.4em 0.8em;height:1.8em;-webkit-border-radius:0.9em;border-radius:0.9em}.x-tabbar.x-docked-top .x-tab-active{-webkit-box-shadow:rgba(255,255,255,0.2) 0 0.1em 0.1em,inset rgba(0,0,0,0.3) 0 0.1em 0.2em}.x-tabbar.x-docked-top .x-button-label,.x-tabbar.x-docked-top .x-hasbadge .x-badge,.x-hasbadge .x-tabbar.x-docked-top .x-badge{font-size:.8em;line-height:1.2em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.x-tabbar.x-docked-bottom{border-top:.1em solid;height:3em}.x-tabbar.x-docked-bottom .x-tab{display:-webkit-box;display:box;-webkit-box-direction:reverse;box-direction:reverse;-webkit-box-orient:vertical;box-orient:vertical;-webkit-border-radius:0.25em;border-radius:0.25em;margin:.15em;min-width:3.3em;position:relative}.x-tabbar.x-docked-bottom .x-tab img{-webkit-mask-size:1.65em;width:1.65em;height:1.65em;display:block;margin:.4em auto .1em;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-label,.x-tabbar.x-docked-bottom .x-tab .x-hasbadge .x-badge,.x-hasbadge .x-tabbar.x-docked-bottom .x-tab .x-badge{margin:0;font-size:9px;line-height:12px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.x-tabbar.x-docked-bottom .x-tab-active{-webkit-box-shadow:inset rgba(255,255,255,0.3) 0 0 0.1em}.x-tabbar-light{background-color:#920808;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f53e3e), color-stop(2%, #b40909), color-stop(100%, #700606));background-image:-webkit-linear-gradient(#f53e3e,#b40909 2%,#700606);background-image:linear-gradient(#f53e3e,#b40909 2%,#700606);border-color:#7a0606}.x-tabbar-light .x-tab{color:#f76e6e}.x-tabbar-light .x-tab-active{color:#fff}.x-tabbar-light .x-tab-pressed{color:#fff}.x-tabbar-light.x-docked-bottom .x-tab{text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-light.x-docked-bottom .x-tab img{background-color:#f20d0d;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fa9f9f), color-stop(2%, #f42f2f), color-stop(100%, #d10b0b));background-image:-webkit-linear-gradient(#fa9f9f,#f42f2f 2%,#d10b0b);background-image:linear-gradient(#fa9f9f,#f42f2f 2%,#d10b0b)}.x-tabbar-light.x-docked-bottom .x-tab-active{background-color:#aa0909;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f65656), color-stop(2%, #cc0b0b), color-stop(100%, #880707));background-image:-webkit-linear-gradient(#f65656,#cc0b0b 2%,#880707);background-image:linear-gradient(#f65656,#cc0b0b 2%,#880707);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-light.x-docked-bottom .x-tab-active img{background-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff4d4d), color-stop(50%, #ff1a1a), color-stop(51%, #ff0000), color-stop(100%, #e60000));background-image:-webkit-linear-gradient(#ff4d4d,#ff1a1a 50%,#ff0000 51%,#e60000);background-image:linear-gradient(#ff4d4d,#ff1a1a 50%,#ff0000 51%,#e60000)}.x-tabbar-light.x-docked-top .x-tab-active{background-color:#7a0606;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #490404), color-stop(10%, #610505), color-stop(65%, #7a0606), color-stop(100%, #7c0707));background-image:-webkit-linear-gradient(#490404,#610505 10%,#7a0606 65%,#7c0707);background-image:linear-gradient(#490404,#610505 10%,#7a0606 65%,#7c0707);color:#fff}.x-tabbar-dark{background-color:#1a0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b30000), color-stop(2%, #3e0000), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#b30000,#3e0000 2%,#000000);background-image:linear-gradient(#b30000,#3e0000 2%,#000000);border-color:#000}.x-tabbar-dark .x-tab{color:#e60000}.x-tabbar-dark .x-tab-active{color:#ffe6e6}.x-tabbar-dark .x-tab-pressed{color:#fff}.x-tabbar-dark.x-docked-bottom .x-tab{text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-dark.x-docked-bottom .x-tab img{background-color:maroon;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(2%, #a40000), color-stop(100%, #5c0000));background-image:-webkit-linear-gradient(#ff1a1a,#a40000 2%,#5c0000);background-image:linear-gradient(#ff1a1a,#a40000 2%,#5c0000)}.x-tabbar-dark.x-docked-bottom .x-tab-active{background-color:#340000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cc0000), color-stop(2%, #570000), color-stop(100%, #100000));background-image:-webkit-linear-gradient(#cc0000,#570000 2%,#100000);background-image:linear-gradient(#cc0000,#570000 2%,#100000);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-dark.x-docked-bottom .x-tab-active img{background-color:#f99;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffe5e5), color-stop(50%, #ffb3b3), color-stop(51%, #ff9999), color-stop(100%, #ff8080));background-image:-webkit-linear-gradient(#ffe5e5,#ffb3b3 50%,#ff9999 51%,#ff8080);background-image:linear-gradient(#ffe5e5,#ffb3b3 50%,#ff9999 51%,#ff8080)}.x-tabbar-dark.x-docked-top .x-tab-active{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #000000), color-stop(65%, #000000), color-stop(100%, #030000));background-image:-webkit-linear-gradient(#000000,#000000 10%,#000000 65%,#030000);background-image:linear-gradient(#000000,#000000 10%,#000000 65%,#030000);color:#fff}.x-tab.x-item-disabled span.x-button-label,.x-tab.x-item-disabled .x-hasbadge span.x-badge,.x-hasbadge .x-tab.x-item-disabled span.x-badge,.x-tab.x-item-disabled img{opacity:.5}.x-tab.x-draggable{opacity:.7}.x-toolbar{height:2.6em;padding:0 0.2em;overflow:hidden;position:relative}.x-toolbar > *{z-index:1}.x-toolbar.x-docked-top{border-bottom:.1em solid}.x-toolbar.x-docked-bottom{border-top:.1em solid}.x-toolbar-title{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;line-height:2.1em;font-size:1.2em;text-align:center;font-weight:bold}.x-toolbar-dark{background-color:#4d0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e60000), color-stop(2%, #710000), color-stop(100%, #290000));background-image:-webkit-linear-gradient(#e60000,#710000 2%,#290000);background-image:linear-gradient(#e60000,#710000 2%,#290000);border-color:#000}.x-toolbar-dark .x-toolbar-title{color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-toolbar-dark .x-button,.x-toolbar .x-toolbar-dark .x-button,.x-toolbar-dark .x-field-select .x-input-text,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text,.x-toolbar-dark .x-field-select:before,.x-toolbar .x-toolbar-dark .x-field-select:before{border:0.1em solid #000;border-top-color:#000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-dark .x-button.x-button-back:before,.x-toolbar-dark .x-button.x-button-forward:before,.x-toolbar .x-toolbar-dark .x-button.x-button-back:before,.x-toolbar .x-toolbar-dark .x-button.x-button-forward:before,.x-toolbar-dark .x-field-select .x-input-text.x-button-back:before,.x-toolbar-dark .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-dark .x-field-select:before.x-button-back:before,.x-toolbar-dark .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-forward:before{background:#000}.x-toolbar-dark .x-button,.x-toolbar-dark .x-button.x-button-back:after,.x-toolbar-dark .x-button.x-button-forward:after,.x-toolbar .x-toolbar-dark .x-button,.x-toolbar .x-toolbar-dark .x-button.x-button-back:after,.x-toolbar .x-toolbar-dark .x-button.x-button-forward:after,.x-toolbar-dark .x-field-select .x-input-text,.x-toolbar-dark .x-field-select .x-input-text.x-button-back:after,.x-toolbar-dark .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-dark .x-field-select:before,.x-toolbar-dark .x-field-select:before.x-button-back:after,.x-toolbar-dark .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-dark .x-field-select:before,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-forward:after{background-color:#1a0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b30000), color-stop(2%, #3e0000), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#b30000,#3e0000 2%,#000000);background-image:linear-gradient(#b30000,#3e0000 2%,#000000)}.x-toolbar-dark .x-button img.x-icon-mask,.x-toolbar .x-toolbar-dark .x-button img.x-icon-mask,.x-toolbar-dark .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-dark .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-dark .x-field-select:before img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-toolbar-dark .x-button.x-button-pressed,.x-toolbar-dark .x-button.x-button-active,.x-toolbar .x-toolbar-dark .x-button.x-button-pressed,.x-toolbar .x-toolbar-dark .x-button.x-button-active,.x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar-dark .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-active{-webkit-box-shadow:inset #000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-dark .x-button.x-button-pressed,.x-toolbar-dark .x-button.x-button-pressed:after,.x-toolbar-dark .x-button.x-button-active,.x-toolbar-dark .x-button.x-button-active:after,.x-toolbar .x-toolbar-dark .x-button.x-button-pressed,.x-toolbar .x-toolbar-dark .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-dark .x-button.x-button-active,.x-toolbar .x-toolbar-dark .x-button.x-button-active:after,.x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar-dark .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar-dark .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-active:after,.x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar-dark .x-field-select:before.x-button-pressed:after,.x-toolbar-dark .x-field-select:before.x-button-active,.x-toolbar-dark .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-active:after{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #000000), color-stop(65%, #000000), color-stop(100%, #030000));background-image:-webkit-linear-gradient(#000000,#000000 10%,#000000 65%,#030000);background-image:linear-gradient(#000000,#000000 10%,#000000 65%,#030000)}.x-toolbar-light{background-color:maroon;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(2%, #a40000), color-stop(100%, #5c0000));background-image:-webkit-linear-gradient(#ff1a1a,#a40000 2%,#5c0000);background-image:linear-gradient(#ff1a1a,#a40000 2%,#5c0000);border-color:#000}.x-toolbar-light .x-toolbar-title{color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-toolbar-light .x-button,.x-toolbar .x-toolbar-light .x-button,.x-toolbar-light .x-field-select .x-input-text,.x-toolbar .x-toolbar-light .x-field-select .x-input-text,.x-toolbar-light .x-field-select:before,.x-toolbar .x-toolbar-light .x-field-select:before{border:0.1em solid #000;border-top-color:#000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-light .x-button.x-button-back:before,.x-toolbar-light .x-button.x-button-forward:before,.x-toolbar .x-toolbar-light .x-button.x-button-back:before,.x-toolbar .x-toolbar-light .x-button.x-button-forward:before,.x-toolbar-light .x-field-select .x-input-text.x-button-back:before,.x-toolbar-light .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-light .x-field-select:before.x-button-back:before,.x-toolbar-light .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-forward:before{background:#000}.x-toolbar-light .x-button,.x-toolbar-light .x-button.x-button-back:after,.x-toolbar-light .x-button.x-button-forward:after,.x-toolbar .x-toolbar-light .x-button,.x-toolbar .x-toolbar-light .x-button.x-button-back:after,.x-toolbar .x-toolbar-light .x-button.x-button-forward:after,.x-toolbar-light .x-field-select .x-input-text,.x-toolbar-light .x-field-select .x-input-text.x-button-back:after,.x-toolbar-light .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-light .x-field-select:before,.x-toolbar-light .x-field-select:before.x-button-back:after,.x-toolbar-light .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-light .x-field-select:before,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-forward:after{background-color:#4d0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e60000), color-stop(2%, #710000), color-stop(100%, #290000));background-image:-webkit-linear-gradient(#e60000,#710000 2%,#290000);background-image:linear-gradient(#e60000,#710000 2%,#290000)}.x-toolbar-light .x-button img.x-icon-mask,.x-toolbar .x-toolbar-light .x-button img.x-icon-mask,.x-toolbar-light .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-light .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-light .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-light .x-field-select:before img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-toolbar-light .x-button.x-button-pressed,.x-toolbar-light .x-button.x-button-active,.x-toolbar .x-toolbar-light .x-button.x-button-pressed,.x-toolbar .x-toolbar-light .x-button.x-button-active,.x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar-light .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-active{-webkit-box-shadow:inset #000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-light .x-button.x-button-pressed,.x-toolbar-light .x-button.x-button-pressed:after,.x-toolbar-light .x-button.x-button-active,.x-toolbar-light .x-button.x-button-active:after,.x-toolbar .x-toolbar-light .x-button.x-button-pressed,.x-toolbar .x-toolbar-light .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-light .x-button.x-button-active,.x-toolbar .x-toolbar-light .x-button.x-button-active:after,.x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar-light .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar-light .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-active:after,.x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar-light .x-field-select:before.x-button-pressed:after,.x-toolbar-light .x-field-select:before.x-button-active,.x-toolbar-light .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-active:after{background-color:#290000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #100000), color-stop(65%, #290000), color-stop(100%, #2c0000));background-image:-webkit-linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000);background-image:linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000)}.x-android .x-toolbar .x-input-text,.x-android .x-toolbar .x-input-search,.x-android .x-toolbar .x-input-number{-webkit-box-shadow:inset rgba(0,0,0,0.5) 0 0.1em 0.1em,inset rgba(0,0,0,0.5) 0 -0.1em 0.1em,inset rgba(0,0,0,0.5) 0.1em 0 0.1em,inset rgba(0,0,0,0.5) -0.1em 0 0.1em,inset rgba(0,0,0,0.5) 0 0.15em 0.4em}.x-desktop .x-toolbar .x-input-search{padding-left:1.06em}.x-toolbar .x-field{margin:.3em .5em;min-height:0;border-bottom:0;width:auto}.x-toolbar .x-input-text,.x-toolbar .x-input-search,.x-toolbar .x-input-number{-webkit-border-radius:0.3em;border-radius:0.3em;-webkit-background-clip:padding;background-clip:padding-box;height:1.5em;color:#6e6e6e;background-color:#fff;min-height:0;line-height:1.3em;-webkit-appearance:none;padding:0em .3em;margin:0;-webkit-box-shadow:inset 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}.x-toolbar .x-input-text:focus,.x-toolbar .x-input-search:focus,.x-toolbar .x-input-number:focus{color:#000}.x-toolbar .x-input-search,.x-toolbar .x-field-select .x-input-text{padding:0em .5em;-webkit-border-radius:0.75em;border-radius:0.75em}.x-toolbar .x-input-search{background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.6))),url('data:image/png;base64,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');-webkit-background-size:.83em .83em, .83em .83em;background-repeat:no-repeat;background-position:.5em 50%;padding-left:1.67em}.x-toolbar .x-field-select:after{top:-0.5em;right:-0.5em}.x-toolbar .x-field-select:before{width:3em;border-left:none;-webkit-border-top-right-radius:0.75em;border-top-right-radius:0.75em;-webkit-border-bottom-right-radius:0.75em;border-bottom-right-radius:0.75em;-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,.x-toolbar .x-field-select:before{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-input-text{padding-right:1.5em;display:block}.x-indexbar{padding:0 .3em;width:2.1em;display:-webkit-box;display:box;-webkit-box-orient:vertical;box-orient:vertical;-webkit-box-align:stretch;box-align:stretch;-webkit-box-pack:center;box-pack:center;position:absolute;top:1.5em;right:0;bottom:1em;z-index:3}.x-indexbar-body{padding:.3em 0}.x-indexbar-pressed .x-indexbar-body{-webkit-border-radius:0.75em;border-radius:0.75em;background-color:rgba(163,143,143,0.8)}.x-indexbar-item{color:#320101;font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-list{background-color:#f7f7f7;position:relative}.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-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9999), color-stop(2%, #ff2424), color-stop(100%, #db0000));background-image:-webkit-linear-gradient(#ff9999,#ff2424 2%,#db0000);background-image:linear-gradient(#ff9999,#ff2424 2%,#db0000);width:1.7em;height:1.7em}.x-list.x-list-indexed .x-list-disclosure{margin-right:1.3em}.x-list .x-item-selected .x-list-disclosure{background:#fff none}.x-list .x-list-item{position:relative;color:#000;padding:0.5em 0.8em;min-height:2.6em;display:-webkit-box;display:box;border-top:1px solid #d1d1d1}.x-list .x-list-item:first-child{border-top:none}.x-list .x-list-item:last-child{border-bottom:1px solid #d1d1d1}.x-list .x-list-item .x-list-item-body{-webkit-box-flex:1;box-flex:1;-webkit-box-align:center;box-align:center;-webkit-box-orient:horizontal;box-orient:horizontal}.x-list .x-list-item .x-list-item-body span{font-size:.95em}.x-list .x-list-item.x-item-pressed{border-top-color:#fff;background:#fff none}.x-list .x-list-item.x-item-selected{background-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9999), color-stop(2%, #ff2424), color-stop(100%, #db0000));background-image:-webkit-linear-gradient(#ff9999,#ff2424 2%,#db0000);background-image:linear-gradient(#ff9999,#ff2424 2%,#db0000);color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;border-top-color:#f33;border-bottom-color:#b30000}.x-list-header{background-color:#e60000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff8080), color-stop(2%, #ff0b0b), color-stop(100%, #c20000));background-image:-webkit-linear-gradient(#ff8080,#ff0b0b 2%,#c20000);background-image:linear-gradient(#ff8080,#ff0b0b 2%,#c20000);color:#ff8080;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;border-top:1px solid #e60000;border-bottom:1px solid maroon;font-weight:bold;font-size:0.8em;padding:0.2em 1.02em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:0px 0.1em 0.3em rgba(0,0,0,0.3)}.x-list-header-swap{z-index:1;position:absolute;top:0;left:0;width:100%}.x-list-round{background-color:#eaeaea}.x-list-round .x-list-group-items > *,.x-list-round.x-list-flat .x-list-parent > *{border-right:1px solid #d1d1d1;border-left:1px solid #d1d1d1;background-color:#f7f7f7;margin:0 1.2em}.x-list-round .x-list-group-items > *:first-child,.x-list-round.x-list-flat .x-list-parent > *:first-child{margin:1.2em 1.2em 0;border-top:1px solid #d1d1d1;-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}.x-list-round .x-list-group-items > *:last-child,.x-list-round.x-list-flat .x-list-parent > *:last-child{margin:0 1.2em 1.2em;border-bottom:1px solid #d1d1d1;-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}.x-list-paging{height:50px}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;color:red;padding-top:10px;-webkit-border-radius:6px;border-radius:6px}.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:-webkit-box;display:box;-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:center;box-align:center;-webkit-box-pack:center;box-pack:center;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;-webkit-mask:center center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAA8CAYAAAAUufjgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjFJREFUeNrsmU8oREEYwOexdtNuKBfFwdVhCyfuysnFiXISS+1BLopyUpKLXETkRLaUi1LK3Q2lpPbiQLnIn03a/Hm+z86Ttv0zM++bfbOar36Hbad5v535Zp7v47iuy0wOpyoEHccRHV9L9NxPkUE/bhKCOKiOSPAdn69DsJ5I8E2HYA0QJRJ8Bb50CDYRCT7pEMQD0kwk+CByUFQEW4gE73UIhoA2IsFb4ENEMCQ5MdU1IxwygpT3oKNLMGyyYFVscdhusc8tDpu+xRG7xf95BW0O2kNiV1AgIvaQ2BzUJNgJNJYZGyUU7OG1cal4Bi68oqkDPszy2teEwJp5Cdyu/lZ1g8CwIYJ7wEF+2YmrNw90Byx3BizgKhaqizEP1wg7CLLxCEzy/CtauMeBlQDyEfNuGrgU6SyM8F9SyVgHdmRaH6tAb4XkToEp2d4M5mOK0TWMigU2koa8vJMRZPxEb2ss2LEVPMpPLlMRxBgDZjQJLgNbxb6Uab9tAn3EcifAeKkBMoLY+j0GWonk7oB+lmsFkwhidAGHBPmIeTcAnJcbKCuIMQEs+hScAzZEBqoIYuzyFVCJI36lMJ2CDfxibZeUu+EX/4uMIFP8ZyLejxkgK0hG5a8kP4IYSZbr1IuQVHmAX0HGX4VuGfZVJ6cQxPd1uoRcWqDW0SroFVzZAnJZ/h0LWhAjUUAw4XdSSsH8fExRTEgtGAOuOTETBb16Jk412e+bxOSwglYw6PgWYABvLk8P7zGJFwAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:2em 3em;-webkit-transform:rotate(0deg);background-color:#111}.x-list-pullrefresh-release .x-list-pullrefresh-arrow{-webkit-transform:rotate(-180deg)}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;margin-bottom:0.1em;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-container{position:relative}.x-layout-box-inner{display:-webkit-box;position:relative}.x-fit-item{position:absolute;left:0;top:0;overflow:hidden;width:100%}.x-panel > .x-docked,.x-docked{position:absolute;z-index:5}.x-layout-fit{overflow:hidden}.x-carousel-body{overflow:hidden;position:relative}.x-carousel-item{position:absolute;width:100%;height:100%;-webkit-transition-property:matrix3d;transition-property:matrix3d;-webkit-transition-duration:0;transition-duration:0;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.x-android .x-carousel-item{-webkit-transition-property:translate;transition-property:translate;-webkit-transition-duration:0;transition-duration:0;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.x-carousel-indicator{position:absolute;z-index:1;vertical-align:middle;text-align:center;display:-webkit-box;display:box;-webkit-box-pack:center;box-pack:center;-webkit-box-align:center;box-align:center}.x-carousel-indicator span{display:block;width:0.5em;height:0.5em;-webkit-border-radius:0.25em;border-radius:0.25em;margin:0.2em}.x-carousel-indicator-horizontal{height:1.5em;bottom:0;left:0;width:100%;-webkit-box-orient:horizontal;box-orient:horizontal}.x-carousel-indicator-vertical{width:1.5em;height:100%;right:0;top:0;-webkit-box-orient:vertical;box-orient:vertical}.x-carousel-indicator-light span{background-color:rgba(255,255,255,0.1);background-image:none}.x-carousel-indicator-light span.x-carousel-indicator-active{background-color:rgba(255,255,255,0.3);background-image:none}.x-carousel-indicator-dark span{background-color:rgba(0,0,0,0.1);background-image:none}.x-carousel-indicator-dark span.x-carousel-indicator-active{background-color:rgba(0,0,0,0.3);background-image:none}.x-checkmark-base,.x-item-selected .x-list-selected:before,.x-item-selected .x-list-selected:after,.x-field .x-input-radio:after,.x-field .x-input-checkbox:after,.x-field .x-input-radio:checked:after,.x-field .x-input-checkbox:checked:after{content:"";position:absolute;width:0.75em;height:1.25em;top:50%;left:auto;-webkit-transform:rotate(45deg) skew(5deg);-webkit-transform-origin:50% 50%;right:1.1em;border:.35em solid;border-top:none;border-left:none;margin-top:-0.75em}.x-form .x-panel-body{padding:1em;background-color:#eee}.x-input-el,.x-field input,.x-field textarea,.x-field select,.x-field .x-field-slider,.x-field-toggle,.x-field-slider{min-height:2.5em;width:100%;display:block;background:#fff none;-webkit-appearance:none}.x-item-selected .x-list-label{padding-right:1.85em;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.x-item-selected .x-list-selected:before{border-color:#262626;margin-top:-0.85em}.x-item-selected .x-list-selected:after{border-color:#ddd}.x-field{overflow:hidden;position:relative;min-height:2.5em;border-bottom:1px solid #ddd}.x-field input,.x-field textarea,.x-field select,.x-field .x-field-slider{-webkit-border-radius:0;border-radius:0;padding:.4em;border:0}.x-field:last-child{border-bottom:0}.x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0}.x-form-fieldset{margin:1em 0 1.5em}.x-form-fieldset .x-panel-body{border:1px solid #ddd;padding:0;-webkit-box-shadow:rgba(255,255,255,0.7) 0 1px 0;-webkit-border-radius:0.4em;border-radius:0.4em;overflow:hidden}.x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#333;margin:1em 0.7em 0.3em;color:#333;font-weight:bold}.x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#333;color:gray;margin:1em 0.7em 0.3em;font-size:.8em;text-align:center}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;background-color:#f7f7f7;padding:0.6em;border-top:1px solid #fff;display:block}.x-form-label span{font-size:.8em;font-weight:bold}.x-form-field-container{-webkit-box-flex:1;box-flex:1;width:100%;position:relative}.x-field{display:-webkit-box;display:box}.x-input-text,.x-input,.x-input-number,.x-spinner-body,.x-input-radio,.x-input-checkbox,.x-input-email,.x-input-url,.x-input-password,.x-input-slider{-webkit-box-flex:1;box-flex:1}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:stretch;box-align:stretch}.x-form-fieldset .x-field:first-child,.x-form-fieldset .x-field:first-child > :first-child:not(.x-input-toggle),.x-form-fieldset .x-field:first-child > :first-child input,.x-form-fieldset .x-field:first-child > :first-child textarea{-webkit-border-top-left-radius:0.4em;border-top-left-radius:0.4em}.x-form-fieldset .x-field:first-child,.x-form-fieldset .x-field:first-child > :last-child:not(.x-input-toggle),.x-form-fieldset .x-field:first-child > :last-child input,.x-form-fieldset .x-field:first-child > :last-child textarea{-webkit-border-top-right-radius:0.4em;border-top-right-radius:0.4em}.x-form-fieldset .x-field:last-child,.x-form-fieldset .x-field:last-child > :first-child:not(.x-input-toggle),.x-form-fieldset .x-field:last-child > :first-child input,.x-form-fieldset .x-field:last-child > :first-child textarea{-webkit-border-bottom-left-radius:0.4em;border-bottom-left-radius:0.4em}.x-form-fieldset .x-field:last-child,.x-form-fieldset .x-field:last-child > :last-child:not(.x-input-toggle),.x-form-fieldset .x-field:last-child > :last-child input,.x-form-fieldset .x-field:last-child > :last-child textarea{-webkit-border-bottom-right-radius:0.4em;border-bottom-right-radius:0.4em}.x-label-align-right{-webkit-box-direction:reverse;box-direction:reverse;-webkit-box-pack:end;box-pack:end}.x-form-fieldset .x-label-align-right:first-child .x-form-label{-webkit-border-top-right-radius:0.4em;border-top-right-radius:0.4em}.x-form-fieldset .x-label-align-right:first-child .x-input-text,.x-form-fieldset .x-label-align-right:first-child .x-input,.x-form-fieldset .x-label-align-right:first-child .x-input-number,.x-form-fieldset .x-label-align-right:first-child .x-spinner-body,.x-form-fieldset .x-label-align-right:first-child .x-input-radio,.x-form-fieldset .x-label-align-right:first-child .x-input-checkbox,.x-form-fieldset .x-label-align-right:first-child .x-input-email,.x-form-fieldset .x-label-align-right:first-child .x-input-url,.x-form-fieldset .x-label-align-right:first-child .x-input-password,.x-form-fieldset .x-label-align-right:first-child .x-input-slider{-webkit-border-top-right-radius:0;border-top-right-radius:0}.x-form-fieldset .x-label-align-right:last-child .x-form-label{-webkit-border-bottom-right-radius:0.4em;border-bottom-right-radius:0.4em}.x-form-fieldset .x-label-align-right:last-child .x-input-text,.x-form-fieldset .x-label-align-right:last-child .x-input,.x-form-fieldset .x-label-align-right:last-child .x-input-number,.x-form-fieldset .x-label-align-right:last-child .x-spinner-body,.x-form-fieldset .x-label-align-right:last-child .x-input-radio,.x-form-fieldset .x-label-align-right:last-child .x-input-checkbox,.x-form-fieldset .x-label-align-right:last-child .x-input-email,.x-form-fieldset .x-label-align-right:last-child .x-input-url,.x-form-fieldset .x-label-align-right:last-child .x-input-password,.x-form-fieldset .x-label-align-right:last-child .x-input-slider{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;box-orient:vertical}.x-label-align-bottom{-webkit-box-direction:reverse;box-direction:reverse}.x-field-required label:after,.x-field-required .x-form-label:after{content:"*";display:inline}.x-field-select:before,.x-field-select:after{pointer-events:none;position:absolute;display:block;right:0}.x-field-select:after{content:"";position:absolute;width:0;height:0;top:0;left:auto;margin:1em;border:.4em solid transparent;border-top-color:#ddd;z-index:2}.x-field-select.x-label-align-top:after{top:auto;bottom:0}.x-field-select:before{content:"";position:absolute;width:4em;height:auto;top:0;left:auto;bottom:0;z-index:1;-webkit-border-top-right-radius:inherit;border-top-right-radius:inherit;-webkit-border-bottom-right-radius:inherit;border-bottom-right-radius:inherit;background:-webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255,255,255,0)), color-stop(0.5, #fff))}.x-item-disabled .x-form-label span,.x-item-disabled input,.x-item-disabled .x-spinner-body,.x-item-disabled select,.x-item-disabled textarea,.x-item-disabled .x-field-clear-container{color:#b3b3b3}.x-field-textarea textarea{min-height:6em;padding-top:.5em}.x-field .x-input-radio:after,.x-field .x-input-checkbox:after{border-color:#ddd}.x-field .x-input-radio:checked:after,.x-field .x-input-checkbox:checked:after{border-color:red}.x-label-align-right .x-input-radio:after,.x-label-align-right .x-input-checkbox:after{right:auto;left:0.6em}.x-spinner{border-bottom:1px solid #ddd}.x-spinner .x-spinner-body{display:-webkit-box;display:box;-webkit-box-direction:normal;box-direction:normal}.x-spinner-body{-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:stretch;box-align:stretch;width:100%;text-align:center}.x-spinner-body span{font-size:1.3em;font-weight:bold;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-spinner-body .x-form-field-container{width:3em}.x-spinner-body input{padding:0;border-right:0;border-left:0;-webkit-border-radius:0;border-radius:0;border-color:#ddd;text-align:center}.x-spinner-body .x-spinner-down,.x-spinner-body .x-spinner-up{-webkit-box-flex:1;box-flex:1;font-weight:bold;padding:.3em 0}.x-spinner-body .x-spinner-down,.x-toolbar .x-spinner-body .x-spinner-down,.x-spinner-body .x-spinner-up,.x-toolbar .x-spinner-body .x-spinner-up{border:0.1em solid #aaa;border-top-color:#b7b7b7;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-spinner-body .x-spinner-down.x-button-back:before,.x-spinner-body .x-spinner-down.x-button-forward:before,.x-toolbar .x-spinner-body .x-spinner-down.x-button-back:before,.x-toolbar .x-spinner-body .x-spinner-down.x-button-forward:before,.x-spinner-body .x-spinner-up.x-button-back:before,.x-spinner-body .x-spinner-up.x-button-forward:before,.x-toolbar .x-spinner-body .x-spinner-up.x-button-back:before,.x-toolbar .x-spinner-body .x-spinner-up.x-button-forward:before{background:#aaa}.x-spinner-body .x-spinner-down,.x-spinner-body .x-spinner-down.x-button-back:after,.x-spinner-body .x-spinner-down.x-button-forward:after,.x-toolbar .x-spinner-body .x-spinner-down,.x-toolbar .x-spinner-body .x-spinner-down.x-button-back:after,.x-toolbar .x-spinner-body .x-spinner-down.x-button-forward:after,.x-spinner-body .x-spinner-up,.x-spinner-body .x-spinner-up.x-button-back:after,.x-spinner-body .x-spinner-up.x-button-forward:after,.x-toolbar .x-spinner-body .x-spinner-up,.x-toolbar .x-spinner-body .x-spinner-up.x-button-back:after,.x-toolbar .x-spinner-body .x-spinner-up.x-button-forward:after{background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(30%, #f1f1f1), color-stop(65%, #dddddd), color-stop(100%, #c4c4c4));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#f1f1f1 30%,#dddddd 65%,#c4c4c4);background-image:linear-gradient(#ffffff,#ffffff 2%,#f1f1f1 30%,#dddddd 65%,#c4c4c4)}.x-spinner-body .x-spinner-down img.x-icon-mask,.x-toolbar .x-spinner-body .x-spinner-down img.x-icon-mask,.x-spinner-body .x-spinner-up img.x-icon-mask,.x-toolbar .x-spinner-body .x-spinner-up img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-spinner-body .x-spinner-down.x-button-pressed,.x-spinner-body .x-spinner-down.x-button-active,.x-toolbar .x-spinner-body .x-spinner-down.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-down.x-button-active,.x-spinner-body .x-spinner-up.x-button-pressed,.x-spinner-body .x-spinner-up.x-button-active,.x-toolbar .x-spinner-body .x-spinner-up.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-up.x-button-active{-webkit-box-shadow:inset #bab3b3 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-spinner-body .x-spinner-down.x-button-pressed,.x-spinner-body .x-spinner-down.x-button-pressed:after,.x-spinner-body .x-spinner-down.x-button-active,.x-spinner-body .x-spinner-down.x-button-active:after,.x-toolbar .x-spinner-body .x-spinner-down.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-down.x-button-pressed:after,.x-toolbar .x-spinner-body .x-spinner-down.x-button-active,.x-toolbar .x-spinner-body .x-spinner-down.x-button-active:after,.x-spinner-body .x-spinner-up.x-button-pressed,.x-spinner-body .x-spinner-up.x-button-pressed:after,.x-spinner-body .x-spinner-up.x-button-active,.x-spinner-body .x-spinner-up.x-button-active:after,.x-toolbar .x-spinner-body .x-spinner-up.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-up.x-button-pressed:after,.x-toolbar .x-spinner-body .x-spinner-up.x-button-active,.x-toolbar .x-spinner-body .x-spinner-up.x-button-active:after{background-color:#cbcbcb;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2b2b2), color-stop(10%, #bebebe), color-stop(65%, #cbcbcb), color-stop(100%, #cccccc));background-image:-webkit-linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc);background-image:linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc)}.x-spinner-body .x-spinner-down{border-left:0}.x-spinner-body .x-spinner-up{border-right:0}.x-field-clear-container{min-height:2.5em;background-color:#fff;display:-webkit-box;display:box;-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:center;box-align:center;-webkit-box-pack:center;box-pack:center;padding:0 .3em}.x-android .x-field-clear{line-height:1.2em;padding:0 .3em}.x-field-clear{width:1.1em;height:1.1em;-webkit-border-radius:0.55em;border-radius:0.55em;background-color:rgba(0,0,0,0.15);color:#fff;font-weight:bold;line-height:.9em;text-align:center;padding:0 .27em}.x-field-clearable input.x-field-clearable{padding-right:1.7em}.x-label-align-top .x-field-clear{top:auto;bottom:.7em}.x-label-align-right .x-field-clear{top:0.6em;right:0.6em}.x-slider{position:relative;height:2.2em;margin:0.6em;min-height:0}.x-thumb{position:absolute;height:2.2em;width:2.2em}.x-thumb:before{content:"";position:absolute;width:1.85em;height:1.85em;top:0.175em;left:0.175em;border:0.1em solid #919191;-webkit-border-radius:0.925em;border-radius:0.925em;background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #efefef), color-stop(100%, #cbcbcb));background-image:-webkit-linear-gradient(#ffffff,#efefef 2%,#cbcbcb);background-image:linear-gradient(#ffffff,#efefef 2%,#cbcbcb);-webkit-box-shadow:inset rgba(255,255,255,0.5) 0 0 0.1em,inset rgba(255,255,255,0.3) 0 -0.1em 0;-webkit-background-clip:padding;background-clip:padding-box}.x-thumb.x-dragging{opacity:1}.x-thumb.x-dragging:before{background-color:#d0d0d0;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #e2e2e2), color-stop(100%, #bebebe));background-image:-webkit-linear-gradient(#ffffff,#e2e2e2 2%,#bebebe);background-image:linear-gradient(#ffffff,#e2e2e2 2%,#bebebe)}.x-input-slider{width:auto}.x-input-slider:after{content:"";position:absolute;width:auto;height:0.8em;top:0.737em;left:0;right:0;margin:0 0.925em;background-color:#ddd;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(#c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:linear-gradient(#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;-webkit-border-radius:0.4em;border-radius:0.4em}.x-field-toggle,.x-field-slider{background-color:#fff}.x-field-toggle .x-slider{width:4.4em;-webkit-border-radius:1.1em;border-radius:1.1em;overflow:hidden;border:0.1em solid #b7b7b7;background-color:#ddd;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(#c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:linear-gradient(#c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);z-index:2}.x-field-toggle .x-slider .x-thumb .x-toggle-thumb-off,.x-field-toggle .x-slider .x-thumb .x-toggle-thumb-on{display:none}.x-field-toggle .x-slider .x-thumb.x-dragging{opacity:1}.x-field-toggle .x-slider .x-thumb:before{top:0.175em}.x-field-toggle .x-slider.x-toggle-on{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(#6e9c00,#80b500 10%,#92cf00 65%,#94d200);background-image:linear-gradient(#6e9c00,#80b500 10%,#92cf00 65%,#94d200)}.x-select-overlay{min-width:200px}div.x-sheet.x-msgbox{width:15em;-webkit-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 maroon}div.x-sheet.x-msgbox .x-toolbar-title{font-size:.9em;line-height:1.4em}div.x-sheet.x-msgbox .x-toolbar{background:transparent none;-webkit-box-shadow:none}div.x-sheet.x-msgbox .x-toolbar.x-docked-top{border-bottom:0;height:1.3em}div.x-sheet.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-msgbox-body{padding:6px 0;position:relative;text-align:center}.x-msgbox-text{font-size:.9em}.x-msgbox-buttons .x-button{min-width:4.5em}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-input{margin-top:.4em;-webkit-appearance:none;-webkit-border-radius:0.2em;border-radius:0.2em}.x-msgbox-dark .x-msgbox-text{color:rgba(255,153,153,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-color:rgba(255,153,153,0.9);background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255,102,102,0.9)), color-stop(10%, rgba(255,128,128,0.9)), color-stop(65%, rgba(255,153,153,0.9)), color-stop(100%, rgba(255,156,156,0.9)));background-image:-webkit-linear-gradient(rgba(255,102,102,0.9),rgba(255,128,128,0.9) 10%,rgba(255,153,153,0.9) 65%,rgba(255,156,156,0.9));background-image:linear-gradient(rgba(255,102,102,0.9),rgba(255,128,128,0.9) 10%,rgba(255,153,153,0.9) 65%,rgba(255,156,156,0.9));border:0.1em solid rgba(204,0,0,0.9)}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:0.5em 0.5em}.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:" "}.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{left:50%;margin-left:-0.05em}.x-loading-spinner > span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg)}.x-loading-spinner > span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg)}.x-loading-spinner > span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg)}.x-loading-spinner > span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg)}.x-loading-spinner > span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg)}.x-loading-spinner > span::after{-webkit-transform:rotate(-30deg);-moz-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}@-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)}}.x-toolbar-maroon{background-color:maroon;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(2%, #a40000), color-stop(100%, #5c0000));background-image:-webkit-linear-gradient(#ff1a1a,#a40000 2%,#5c0000);background-image:linear-gradient(#ff1a1a,#a40000 2%,#5c0000);border-color:#000}.x-toolbar-maroon .x-toolbar-title{color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-toolbar-maroon .x-button,.x-toolbar .x-toolbar-maroon .x-button,.x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar-maroon .x-field-select:before,.x-toolbar .x-toolbar-maroon .x-field-select:before{border:0.1em solid #000;border-top-color:#000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-maroon .x-button.x-button-back:before,.x-toolbar-maroon .x-button.x-button-forward:before,.x-toolbar .x-toolbar-maroon .x-button.x-button-back:before,.x-toolbar .x-toolbar-maroon .x-button.x-button-forward:before,.x-toolbar-maroon .x-field-select .x-input-text.x-button-back:before,.x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-maroon .x-field-select:before.x-button-back:before,.x-toolbar-maroon .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-forward:before{background:#000}.x-toolbar-maroon .x-button,.x-toolbar-maroon .x-button.x-button-back:after,.x-toolbar-maroon .x-button.x-button-forward:after,.x-toolbar .x-toolbar-maroon .x-button,.x-toolbar .x-toolbar-maroon .x-button.x-button-back:after,.x-toolbar .x-toolbar-maroon .x-button.x-button-forward:after,.x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar-maroon .x-field-select .x-input-text.x-button-back:after,.x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-maroon .x-field-select:before,.x-toolbar-maroon .x-field-select:before.x-button-back:after,.x-toolbar-maroon .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-maroon .x-field-select:before,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-forward:after{background-color:#4d0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e60000), color-stop(2%, #710000), color-stop(100%, #290000));background-image:-webkit-linear-gradient(#e60000,#710000 2%,#290000);background-image:linear-gradient(#e60000,#710000 2%,#290000)}.x-toolbar-maroon .x-button img.x-icon-mask,.x-toolbar .x-toolbar-maroon .x-button img.x-icon-mask,.x-toolbar-maroon .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-maroon .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-maroon .x-field-select:before img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar-maroon .x-button.x-button-active,.x-toolbar .x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-button.x-button-active,.x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar-maroon .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-active{-webkit-box-shadow:inset #000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar-maroon .x-button.x-button-pressed:after,.x-toolbar-maroon .x-button.x-button-active,.x-toolbar-maroon .x-button.x-button-active:after,.x-toolbar .x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-maroon .x-button.x-button-active,.x-toolbar .x-toolbar-maroon .x-button.x-button-active:after,.x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar-maroon .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-active:after,.x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar-maroon .x-field-select:before.x-button-pressed:after,.x-toolbar-maroon .x-field-select:before.x-button-active,.x-toolbar-maroon .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-active:after{background-color:#290000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #100000), color-stop(65%, #290000), color-stop(100%, #2c0000));background-image:-webkit-linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000);background-image:linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000)}.x-toolbar-white{background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #efefef), color-stop(100%, #cbcbcb));background-image:-webkit-linear-gradient(#ffffff,#efefef 2%,#cbcbcb);background-image:linear-gradient(#ffffff,#efefef 2%,#cbcbcb);border-color:#5e5e5e}.x-toolbar-white .x-toolbar-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-white .x-button,.x-toolbar .x-toolbar-white .x-button,.x-toolbar-white .x-field-select .x-input-text,.x-toolbar .x-toolbar-white .x-field-select .x-input-text,.x-toolbar-white .x-field-select:before,.x-toolbar .x-toolbar-white .x-field-select:before{border:0.1em solid #919191;border-top-color:#9d9d9d;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-white .x-button.x-button-back:before,.x-toolbar-white .x-button.x-button-forward:before,.x-toolbar .x-toolbar-white .x-button.x-button-back:before,.x-toolbar .x-toolbar-white .x-button.x-button-forward:before,.x-toolbar-white .x-field-select .x-input-text.x-button-back:before,.x-toolbar-white .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-white .x-field-select:before.x-button-back:before,.x-toolbar-white .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-forward:before{background:#919191}.x-toolbar-white .x-button,.x-toolbar-white .x-button.x-button-back:after,.x-toolbar-white .x-button.x-button-forward:after,.x-toolbar .x-toolbar-white .x-button,.x-toolbar .x-toolbar-white .x-button.x-button-back:after,.x-toolbar .x-toolbar-white .x-button.x-button-forward:after,.x-toolbar-white .x-field-select .x-input-text,.x-toolbar-white .x-field-select .x-input-text.x-button-back:after,.x-toolbar-white .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-white .x-field-select:before,.x-toolbar-white .x-field-select:before.x-button-back:after,.x-toolbar-white .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-white .x-field-select:before,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-forward:after{background-color:#c4c4c4;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #d5d5d5), color-stop(100%, #b2b2b2));background-image:-webkit-linear-gradient(#ffffff,#d5d5d5 2%,#b2b2b2);background-image:linear-gradient(#ffffff,#d5d5d5 2%,#b2b2b2)}.x-toolbar-white .x-button img.x-icon-mask,.x-toolbar .x-toolbar-white .x-button img.x-icon-mask,.x-toolbar-white .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-white .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-white .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-white .x-field-select:before img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-toolbar-white .x-button.x-button-pressed,.x-toolbar-white .x-button.x-button-active,.x-toolbar .x-toolbar-white .x-button.x-button-pressed,.x-toolbar .x-toolbar-white .x-button.x-button-active,.x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar-white .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-active{-webkit-box-shadow:inset #a29898 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-white .x-button.x-button-pressed,.x-toolbar-white .x-button.x-button-pressed:after,.x-toolbar-white .x-button.x-button-active,.x-toolbar-white .x-button.x-button-active:after,.x-toolbar .x-toolbar-white .x-button.x-button-pressed,.x-toolbar .x-toolbar-white .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-white .x-button.x-button-active,.x-toolbar .x-toolbar-white .x-button.x-button-active:after,.x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar-white .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar-white .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-active:after,.x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar-white .x-field-select:before.x-button-pressed:after,.x-toolbar-white .x-field-select:before.x-button-active,.x-toolbar-white .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-active:after{background-color:#b2b2b2;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #989898), color-stop(10%, #a5a5a5), color-stop(65%, #b2b2b2), color-stop(100%, #b3b3b3));background-image:-webkit-linear-gradient(#989898,#a5a5a5 10%,#b2b2b2 65%,#b3b3b3);background-image:linear-gradient(#989898,#a5a5a5 10%,#b2b2b2 65%,#b3b3b3)}.x-button.x-button-maroon,.x-toolbar .x-button.x-button-maroon,.x-button.x-button-maroon-round,.x-toolbar .x-button.x-button-maroon-round,.x-button.x-button-maroon-small,.x-toolbar .x-button.x-button-maroon-small{border:0.1em solid #1a0000;border-top-color:#340000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-maroon.x-button-back:before,.x-button.x-button-maroon.x-button-forward:before,.x-toolbar .x-button.x-button-maroon.x-button-back:before,.x-toolbar .x-button.x-button-maroon.x-button-forward:before,.x-button.x-button-maroon-round.x-button-back:before,.x-button.x-button-maroon-round.x-button-forward:before,.x-toolbar .x-button.x-button-maroon-round.x-button-back:before,.x-toolbar .x-button.x-button-maroon-round.x-button-forward:before,.x-button.x-button-maroon-small.x-button-back:before,.x-button.x-button-maroon-small.x-button-forward:before,.x-toolbar .x-button.x-button-maroon-small.x-button-back:before,.x-toolbar .x-button.x-button-maroon-small.x-button-forward:before{background:#1a0000}.x-button.x-button-maroon,.x-button.x-button-maroon.x-button-back:after,.x-button.x-button-maroon.x-button-forward:after,.x-toolbar .x-button.x-button-maroon,.x-toolbar .x-button.x-button-maroon.x-button-back:after,.x-toolbar .x-button.x-button-maroon.x-button-forward:after,.x-button.x-button-maroon-round,.x-button.x-button-maroon-round.x-button-back:after,.x-button.x-button-maroon-round.x-button-forward:after,.x-toolbar .x-button.x-button-maroon-round,.x-toolbar .x-button.x-button-maroon-round.x-button-back:after,.x-toolbar .x-button.x-button-maroon-round.x-button-forward:after,.x-button.x-button-maroon-small,.x-button.x-button-maroon-small.x-button-back:after,.x-button.x-button-maroon-small.x-button-forward:after,.x-toolbar .x-button.x-button-maroon-small,.x-toolbar .x-button.x-button-maroon-small.x-button-back:after,.x-toolbar .x-button.x-button-maroon-small.x-button-forward:after{background-color:maroon;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(2%, #cc0000), color-stop(30%, #a90000), color-stop(65%, #800000), color-stop(100%, #4d0000));background-image:-webkit-linear-gradient(#ff1a1a,#cc0000 2%,#a90000 30%,#800000 65%,#4d0000);background-image:linear-gradient(#ff1a1a,#cc0000 2%,#a90000 30%,#800000 65%,#4d0000)}.x-button.x-button-maroon img.x-icon-mask,.x-toolbar .x-button.x-button-maroon img.x-icon-mask,.x-button.x-button-maroon-round img.x-icon-mask,.x-toolbar .x-button.x-button-maroon-round img.x-icon-mask,.x-button.x-button-maroon-small img.x-icon-mask,.x-toolbar .x-button.x-button-maroon-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-button.x-button-maroon.x-button-pressed,.x-button.x-button-maroon.x-button-active,.x-toolbar .x-button.x-button-maroon.x-button-pressed,.x-toolbar .x-button.x-button-maroon.x-button-active,.x-button.x-button-maroon-round.x-button-pressed,.x-button.x-button-maroon-round.x-button-active,.x-toolbar .x-button.x-button-maroon-round.x-button-pressed,.x-toolbar .x-button.x-button-maroon-round.x-button-active,.x-button.x-button-maroon-small.x-button-pressed,.x-button.x-button-maroon-small.x-button-active,.x-toolbar .x-button.x-button-maroon-small.x-button-pressed,.x-toolbar .x-button.x-button-maroon-small.x-button-active{-webkit-box-shadow:inset #340000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-maroon.x-button-pressed,.x-button.x-button-maroon.x-button-pressed:after,.x-button.x-button-maroon.x-button-active,.x-button.x-button-maroon.x-button-active:after,.x-toolbar .x-button.x-button-maroon.x-button-pressed,.x-toolbar .x-button.x-button-maroon.x-button-pressed:after,.x-toolbar .x-button.x-button-maroon.x-button-active,.x-toolbar .x-button.x-button-maroon.x-button-active:after,.x-button.x-button-maroon-round.x-button-pressed,.x-button.x-button-maroon-round.x-button-pressed:after,.x-button.x-button-maroon-round.x-button-active,.x-button.x-button-maroon-round.x-button-active:after,.x-toolbar .x-button.x-button-maroon-round.x-button-pressed,.x-toolbar .x-button.x-button-maroon-round.x-button-pressed:after,.x-toolbar .x-button.x-button-maroon-round.x-button-active,.x-toolbar .x-button.x-button-maroon-round.x-button-active:after,.x-button.x-button-maroon-small.x-button-pressed,.x-button.x-button-maroon-small.x-button-pressed:after,.x-button.x-button-maroon-small.x-button-active,.x-button.x-button-maroon-small.x-button-active:after,.x-toolbar .x-button.x-button-maroon-small.x-button-pressed,.x-toolbar .x-button.x-button-maroon-small.x-button-pressed:after,.x-toolbar .x-button.x-button-maroon-small.x-button-active,.x-toolbar .x-button.x-button-maroon-small.x-button-active:after{background-color:#5c0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #290000), color-stop(10%, #430000), color-stop(65%, #5c0000), color-stop(100%, #5f0000));background-image:-webkit-linear-gradient(#290000,#430000 10%,#5c0000 65%,#5f0000);background-image:linear-gradient(#290000,#430000 10%,#5c0000 65%,#5f0000)}.x-button.x-button-white,.x-toolbar .x-button.x-button-white,.x-button.x-button-white-round,.x-toolbar .x-button.x-button-white-round,.x-button.x-button-white-small,.x-toolbar .x-button.x-button-white-small{border:0.1em solid #aaa;border-top-color:#b7b7b7;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-white.x-button-back:before,.x-button.x-button-white.x-button-forward:before,.x-toolbar .x-button.x-button-white.x-button-back:before,.x-toolbar .x-button.x-button-white.x-button-forward:before,.x-button.x-button-white-round.x-button-back:before,.x-button.x-button-white-round.x-button-forward:before,.x-toolbar .x-button.x-button-white-round.x-button-back:before,.x-toolbar .x-button.x-button-white-round.x-button-forward:before,.x-button.x-button-white-small.x-button-back:before,.x-button.x-button-white-small.x-button-forward:before,.x-toolbar .x-button.x-button-white-small.x-button-back:before,.x-toolbar .x-button.x-button-white-small.x-button-forward:before{background:#aaa}.x-button.x-button-white,.x-button.x-button-white.x-button-back:after,.x-button.x-button-white.x-button-forward:after,.x-toolbar .x-button.x-button-white,.x-toolbar .x-button.x-button-white.x-button-back:after,.x-toolbar .x-button.x-button-white.x-button-forward:after,.x-button.x-button-white-round,.x-button.x-button-white-round.x-button-back:after,.x-button.x-button-white-round.x-button-forward:after,.x-toolbar .x-button.x-button-white-round,.x-toolbar .x-button.x-button-white-round.x-button-back:after,.x-toolbar .x-button.x-button-white-round.x-button-forward:after,.x-button.x-button-white-small,.x-button.x-button-white-small.x-button-back:after,.x-button.x-button-white-small.x-button-forward:after,.x-toolbar .x-button.x-button-white-small,.x-toolbar .x-button.x-button-white-small.x-button-back:after,.x-toolbar .x-button.x-button-white-small.x-button-forward:after{background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(50%, #eaeaea), color-stop(51%, #dddddd), color-stop(100%, #d0d0d0));background-image:-webkit-linear-gradient(#ffffff,#eaeaea 50%,#dddddd 51%,#d0d0d0);background-image:linear-gradient(#ffffff,#eaeaea 50%,#dddddd 51%,#d0d0d0)}.x-button.x-button-white img.x-icon-mask,.x-toolbar .x-button.x-button-white img.x-icon-mask,.x-button.x-button-white-round img.x-icon-mask,.x-toolbar .x-button.x-button-white-round img.x-icon-mask,.x-button.x-button-white-small img.x-icon-mask,.x-toolbar .x-button.x-button-white-small img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-button.x-button-white.x-button-pressed,.x-button.x-button-white.x-button-active,.x-toolbar .x-button.x-button-white.x-button-pressed,.x-toolbar .x-button.x-button-white.x-button-active,.x-button.x-button-white-round.x-button-pressed,.x-button.x-button-white-round.x-button-active,.x-toolbar .x-button.x-button-white-round.x-button-pressed,.x-toolbar .x-button.x-button-white-round.x-button-active,.x-button.x-button-white-small.x-button-pressed,.x-button.x-button-white-small.x-button-active,.x-toolbar .x-button.x-button-white-small.x-button-pressed,.x-toolbar .x-button.x-button-white-small.x-button-active{-webkit-box-shadow:inset #bab3b3 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-white.x-button-pressed,.x-button.x-button-white.x-button-pressed:after,.x-button.x-button-white.x-button-active,.x-button.x-button-white.x-button-active:after,.x-toolbar .x-button.x-button-white.x-button-pressed,.x-toolbar .x-button.x-button-white.x-button-pressed:after,.x-toolbar .x-button.x-button-white.x-button-active,.x-toolbar .x-button.x-button-white.x-button-active:after,.x-button.x-button-white-round.x-button-pressed,.x-button.x-button-white-round.x-button-pressed:after,.x-button.x-button-white-round.x-button-active,.x-button.x-button-white-round.x-button-active:after,.x-toolbar .x-button.x-button-white-round.x-button-pressed,.x-toolbar .x-button.x-button-white-round.x-button-pressed:after,.x-toolbar .x-button.x-button-white-round.x-button-active,.x-toolbar .x-button.x-button-white-round.x-button-active:after,.x-button.x-button-white-small.x-button-pressed,.x-button.x-button-white-small.x-button-pressed:after,.x-button.x-button-white-small.x-button-active,.x-button.x-button-white-small.x-button-active:after,.x-toolbar .x-button.x-button-white-small.x-button-pressed,.x-toolbar .x-button.x-button-white-small.x-button-pressed:after,.x-toolbar .x-button.x-button-white-small.x-button-active,.x-toolbar .x-button.x-button-white-small.x-button-active:after{background-color:#cbcbcb;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2b2b2), color-stop(10%, #bebebe), color-stop(65%, #cbcbcb), color-stop(100%, #cccccc));background-image:-webkit-linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc);background-image:linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc)}.x-tab img.gradcap,.x-button img.x-icon-mask.gradcap{position:absolute;width:100%;height:100%;-webkit-mask-image:url('data:image/png;base64,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');-webkit-mask-size:auto 50% !important;-webkit-mask-repeat:no-repeat;-webkit-mask-origin:content;-webkit-mask-position:5% 50%}.imageButton{font-weight:bold}.imageButton > div{float:left;position:relative;left:50% !important}.imageButton > div > *{float:left;position:relative;left:-50%}.imageButton > div > img{width:auto;height:1.5em;margin:0 0.7em} +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}html,body{font-family:"Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, "BBAlpha Sans", sans-serif;font-weight:normal;position:relative}*,*:after,*:before{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-webkit-text-size-adjust:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}html,body,.x-body-stretcher{width:100%;height:100%}.x-ios.x-tablet .x-landscape *{-webkit-text-stroke:1px transparent}body{font-size:104%}body.x-ios{-webkit-backface-visibility:hidden}body.x-android.x-phone{font-size:116%}body.x-ios.x-phone{font-size:114%}body.x-desktop{font-size:114%}input,textarea{-webkit-user-select:text}.x-hidden-visibility{visibility:hidden !important}.x-hidden-display,.x-field-slider .x-field-mask,.x-field-toggle .x-field-mask,.x-field-checkbox .x-field-mask,.x-field-radio .x-field-mask,.x-field-hidden{display:none !important}.x-hidden-offsets{position:absolute !important;left:-10000em;top:-10000em;visibility:hidden}.x-fullscreen{position:absolute !important;top:0px;left:0px}.x-desktop .x-body-stretcher{margin-bottom:0px}.x-scroller-parent{overflow:hidden !important}.x-scroller-parent,.x-scroller{position:relative}.x-ios .x-scroller,.x-ios .x-scroller > *{-webkit-transform:translate3d(0, 0, 0)}.x-draggable{z-index:1}.x-scrollbar{position:absolute;z-index:10;-webkit-transition-property:opacity;-webkit-transition-duration:250ms;-webkit-border-radius:4px;opacity:0}.x-android .x-scrollbar{-webkit-transition-property:none;-webkit-transition-duration:0ms;-webkit-border-radius:0px}.x-scrollbar-dark{background-color:rgba(0,0,0,0.6);border:1px solid rgba(255,255,255,0.2)}.x-scrollbar-light{background-color:rgba(255,255,255,0.6);border:1px solid rgba(0,0,0,0.2)}.x-scrollbar-vertical{top:0;right:4px;width:4px}.x-scrollbar-horizontal{left:0;bottom:4px;height:4px}.x-mask{position:absolute;top:0;left:0;z-index:8000;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}.x-mask.x-mask-gray{background-color:rgba(0,0,0,0.5)}.x-mask .x-mask-loading{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;-webkit-border-radius:0.5em;border-radius:0.5em;color:#fff;text-align:center;padding:.4em;font-weight:bold;display:block;width:8.5em;height:8.5em;background:rgba(0,0,0,0.25)}.x-mask .x-loading-spinner{margin:1em auto .2em}.x-mask .x-loading-msg{font-size:.95em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-floating{position:absolute !important;z-index:10000 !important;top:0;left:0}.x-dragging{opacity:0.7}.x-panel-list{background-color:#ff8080}.x-html{-webkit-user-select:auto;-webkit-touch-callout:inherit;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{display:inline;float:left;margin:1.5em 1.5em 1.5em 0;padding:0}.x-html p .right{display:inline;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:#004c99}.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}.x-video{background-color:#000}.x-sortable .x-dragging{opacity:1;z-index:5}.x-fullscreen{background:maroon}.x-map{background-color:#edeae2;width:100%;height:100%}.x-mask-map{background:transparent !important}.student-info{color:#fff}.student-info p{margin:0 5px;line-height:150%}.student-info hr{border:2px solid #4d0000}.student-info b{text-shadow:#000 4px 4px 5px}.student-info b.large{font-size:64px;line-height:80px}.student-info b.medium{font-size:32px;line-height:50px}.student-info b.small{font-size:20px;line-height:30px}.student-info .dinerdollars .value{font-size:64px}.x-panel,.x-panel-body{position:relative}.x-floating.x-panel,.x-floating.x-carousel{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;background-color:#000;background-image:none}.x-floating.x-panel.x-panel-light,.x-floating.x-carousel.x-panel-light{background-color:maroon;background-image:none}.x-floating .x-panel-body,.x-floating .x-carousel-body{background-color:#fff;-webkit-border-radius:0.3em;border-radius:0.3em}.x-anchor{width:1.631em;height:0.7em;position:absolute;z-index:1;-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;overflow:hidden;background-color:#000}.x-anchor.x-anchor-bottom{-webkit-transform:rotate(180deg);background-color:#000}.x-anchor.x-anchor-left{-webkit-transform:rotate(270deg)}.x-anchor.x-anchor-right{-webkit-transform:rotate(90deg)}.x-floating.x-panel-light:after{background-color:maroon}.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}.x-button,.x-toolbar .x-button{border:0.1em solid #999;border-top-color:#a6a6a6;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.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-color:#ccc;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #dedede), color-stop(100%, #bababa));background-image:-webkit-linear-gradient(#ffffff,#dedede 2%,#bababa);background-image:linear-gradient(#ffffff,#dedede 2%,#bababa)}.x-button img.x-icon-mask,.x-toolbar .x-button img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-button.x-button-pressed,.x-button.x-button-active,.x-toolbar .x-button.x-button-pressed,.x-toolbar .x-button.x-button-active{-webkit-box-shadow:inset #aaa1a1 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.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-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-color:#bababa;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a1a1a1), color-stop(10%, #adadad), color-stop(65%, #bababa), color-stop(100%, #bbbbbb));background-image:-webkit-linear-gradient(#a1a1a1,#adadad 10%,#bababa 65%,#bbbbbb);background-image:linear-gradient(#a1a1a1,#adadad 10%,#bababa 65%,#bbbbbb)}.x-button img{width:2.1em;height:2.1em;background-repeat:no-repeat;background-position:center;display:block}.x-button img.x-icon-mask{width:1.3em;height:1.3em;-webkit-mask-size:1.3em}.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 img{opacity:.5}.x-button-round,.x-button.x-button-action-round,.x-button.x-button-confirm-round,.x-button.x-button-decline-round,.x-button.x-button-maroon-round,.x-button.x-button-white-round{-webkit-border-radius:0.9em;border-radius:0.9em;padding:0.1em 0.9em}.x-button-small,.x-button.x-button-action-small,.x-button.x-button-confirm-small,.x-button.x-button-decline-small,.x-button.x-button-maroon-small,.x-button.x-button-white-small,.x-toolbar .x-button-small,.x-toolbar .x-button.x-button-action-small,.x-toolbar .x-button.x-button-confirm-small,.x-toolbar .x-button.x-button-decline-small,.x-toolbar .x-button.x-button-maroon-small,.x-toolbar .x-button.x-button-white-small{-webkit-border-radius:0.3em;border-radius:0.3em;padding:.2em .4em;min-height:0}.x-button-small .x-button-label,.x-button.x-button-action-small .x-button-label,.x-button.x-button-confirm-small .x-button-label,.x-button.x-button-decline-small .x-button-label,.x-button.x-button-maroon-small .x-button-label,.x-button.x-button-white-small .x-button-label,.x-button-small .x-hasbadge .x-badge,.x-hasbadge .x-button-small .x-badge,.x-button.x-button-action-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-action-small .x-badge,.x-button.x-button-confirm-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-confirm-small .x-badge,.x-button.x-button-decline-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-decline-small .x-badge,.x-button.x-button-maroon-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-maroon-small .x-badge,.x-button.x-button-white-small .x-hasbadge .x-badge,.x-hasbadge .x-button.x-button-white-small .x-badge,.x-toolbar .x-button-small .x-button-label,.x-toolbar .x-button.x-button-action-small .x-button-label,.x-toolbar .x-button.x-button-confirm-small .x-button-label,.x-toolbar .x-button.x-button-decline-small .x-button-label,.x-toolbar .x-button.x-button-maroon-small .x-button-label,.x-toolbar .x-button.x-button-white-small .x-button-label,.x-toolbar .x-button-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button-small .x-badge,.x-toolbar .x-button.x-button-action-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-action-small .x-badge,.x-toolbar .x-button.x-button-confirm-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-confirm-small .x-badge,.x-toolbar .x-button.x-button-decline-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-decline-small .x-badge,.x-toolbar .x-button.x-button-maroon-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-maroon-small .x-badge,.x-toolbar .x-button.x-button-white-small .x-hasbadge .x-badge,.x-hasbadge .x-toolbar .x-button.x-button-white-small .x-badge{font-size:.6em}.x-button-small img,.x-button.x-button-action-small img,.x-button.x-button-confirm-small img,.x-button.x-button-decline-small img,.x-button.x-button-maroon-small img,.x-button.x-button-white-small img,.x-toolbar .x-button-small img,.x-toolbar .x-button.x-button-action-small img,.x-toolbar .x-button.x-button-confirm-small img,.x-toolbar .x-button.x-button-decline-small img,.x-toolbar .x-button.x-button-maroon-small img,.x-toolbar .x-button.x-button-white-small img{width:.75em;height:.75em}.x-iconalign-left,.x-icon-align-right{-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-direction:reverse;box-direction:reverse}.x-iconalign-top,.x-iconalign-bottom{-webkit-box-orient:vertical;box-orient:vertical}.x-iconalign-bottom,.x-iconalign-right{-webkit-box-direction:normal;box-direction:normal}.x-iconalign-left,.x-iconalign-top{-webkit-box-direction:reverse;box-direction:reverse}.x-iconalign-left .x-button-label,.x-iconalign-left .x-hasbadge .x-badge,.x-hasbadge .x-iconalign-left .x-badge{margin-left:0.3em}.x-iconalign-right .x-button-label,.x-iconalign-right .x-hasbadge .x-badge,.x-hasbadge .x-iconalign-right .x-badge{margin-right:0.3em}.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}.x-toolbar .x-button{margin:0 .2em;padding:.3em .6em}.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}.x-button-forward,.x-button-back{position:relative;overflow:visible;height:1.8em;z-index:1}.x-button-forward:before,.x-button-forward:after,.x-button-back:before,.x-button-back:after{content:"";position:absolute;width:0.773em;height:1.8em;top:-0.1em;left:auto;z-index:2;-webkit-mask:0.145em 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.773em 1.8em;overflow:hidden}.x-button-back,.x-toolbar .x-button-back{margin-left:0.828em;padding-left:.4em}.x-button-back:before,.x-toolbar .x-button-back:before{left:-0.693em}.x-button-back:after,.x-toolbar .x-button-back:after{left:-0.628em}.x-button-forward,.x-toolbar .x-button-forward{margin-right:0.828em;padding-right:.4em}.x-button-forward:before,.x-button-forward:after,.x-toolbar .x-button-forward:before,.x-toolbar .x-button-forward:after{-webkit-mask:-0.145em 0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABGCAYAAADb7SQ4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUaN7lmTFqAlEQhh8EhFSCYJXW1law9QAewMrWAwQWAmmtbPcGHiCQ1gPYCla2QsDKSsgmQecvFqImu2/fzry/2OLb9mt23vwz47Kvn5MwEFxM8DkLB6HHEIOd0GGIwUpoMcRgyRKDOUsMJizxpzBiiMFR6DPEeZl1GWKwFh4ZYvAmPDDEqmVWVQxmLPG3MGaIVcosVAz2whNDDDZCmyEG7yFlpiEGKUsMEpb4XKXMtMXeiVVb7J1YLcRgW1ZmVuLSxGopLkys1mLwwhL/mVhjie8Sayxx3kp7DPFVYo0tzhNriyEGU5Z40TjxtDE/F6WcDowHBE/msDFNImG0xZQRBAonDCvxhhH2vKZIZ9Ds+7EDfaWFnKZ4xhja5owxdcnYCAQv1p1Gi4sprn08cZbDt6ZYZasXIn5mLFHTjLCvVt1V+4rVt/M+4r3FPaJMbHaBKRKb3pyKxKZXtv/Er4yjZpRL6q042u34tzh4xV9H/FHnqBHKBQeEd6aqqwD6AAAAAElFTkSuQmCC') no-repeat}.x-button-forward:before,.x-toolbar .x-button-forward:before{right:-0.693em}.x-button-forward:after,.x-toolbar .x-button-forward:after{right:-0.628em}.x-button.x-button-plain,.x-toolbar .x-button.x-button-plain{background:none;border:0 none;-webkit-box-shadow:none;box-shadow:none;-webkit-border-radius:none;border-radius:none;min-height:0;text-shadow:none;height:auto;line-height:auto;margin:-1.5em -0.5em;padding:1.3em 1em;height:1.8em}.x-button.x-button-plain > *,.x-toolbar .x-button.x-button-plain > *{overflow:visible;margin-top:-0.75em}.x-button.x-button-plain img,.x-toolbar .x-button.x-button-plain img{-webkit-mask-size:1.4em;width:1.4em;height:1.4em}.x-button.x-button-plain.x-button-pressed,.x-toolbar .x-button.x-button-plain.x-button-pressed{background:none;-webkit-box-shadow: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)}.x-button.x-button-plain.x-button-pressed img,.x-toolbar .x-button.x-button-plain.x-button-pressed img{background-color:#fff;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(#e6e6e6,#f2f2f2 10%,#ffffff 65%,#ffffff);background-image:linear-gradient(#e6e6e6,#f2f2f2 10%,#ffffff 65%,#ffffff)}.x-segmentedbutton .x-button{-webkit-border-radius:0;border-radius:0;margin:0}.x-segmentedbutton .x-button:first-child{-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}.x-segmentedbutton .x-button:last-child{-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}.x-segmentedbutton .x-button:not(:first-child){border-left:0}.x-hasbadge{overflow:visible}.x-hasbadge .x-badge{-webkit-border-radius:1em;border-radius:1em;-webkit-background-clip:padding;background-clip:padding-box;padding:.15em .25em;z-index:30;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:#000 0 .1em .2em;overflow:hidden;color:#fff;border:2px solid #fff;position:absolute;width:auto;min-width:2em;height:2em;line-height:1.2em;font-size:.6em;top:-0.15em;right:0px;max-width:100%;background-color:#900;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e60000), color-stop(50%, #b30000), color-stop(51%, #990000), color-stop(100%, #800000));background-image:-webkit-linear-gradient(#e60000,#b30000 50%,#990000 51%,#800000);background-image:linear-gradient(#e60000,#b30000 50%,#990000 51%,#800000);display:inline-block}.x-button.x-button-action,.x-toolbar .x-button.x-button-action,.x-button.x-button-action-round,.x-toolbar .x-button.x-button-action-round,.x-button.x-button-action-small,.x-toolbar .x-button.x-button-action-small{border:0.1em solid #900;border-top-color:#b30000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-action.x-button-back:before,.x-button.x-button-action.x-button-forward:before,.x-toolbar .x-button.x-button-action.x-button-back:before,.x-toolbar .x-button.x-button-action.x-button-forward:before,.x-button.x-button-action-round.x-button-back:before,.x-button.x-button-action-round.x-button-forward:before,.x-toolbar .x-button.x-button-action-round.x-button-back:before,.x-toolbar .x-button.x-button-action-round.x-button-forward:before,.x-button.x-button-action-small.x-button-back:before,.x-button.x-button-action-small.x-button-forward:before,.x-toolbar .x-button.x-button-action-small.x-button-back:before,.x-toolbar .x-button.x-button-action-small.x-button-forward:before{background:#900}.x-button.x-button-action,.x-button.x-button-action.x-button-back:after,.x-button.x-button-action.x-button-forward:after,.x-toolbar .x-button.x-button-action,.x-toolbar .x-button.x-button-action.x-button-back:after,.x-toolbar .x-button.x-button-action.x-button-forward:after,.x-button.x-button-action-round,.x-button.x-button-action-round.x-button-back:after,.x-button.x-button-action-round.x-button-forward:after,.x-toolbar .x-button.x-button-action-round,.x-toolbar .x-button.x-button-action-round.x-button-back:after,.x-toolbar .x-button.x-button-action-round.x-button-forward:after,.x-button.x-button-action-small,.x-button.x-button-action-small.x-button-back:after,.x-button.x-button-action-small.x-button-forward:after,.x-toolbar .x-button.x-button-action-small,.x-toolbar .x-button.x-button-action-small.x-button-back:after,.x-toolbar .x-button.x-button-action-small.x-button-forward:after{background-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9999), color-stop(2%, #ff2424), color-stop(100%, #db0000));background-image:-webkit-linear-gradient(#ff9999,#ff2424 2%,#db0000);background-image:linear-gradient(#ff9999,#ff2424 2%,#db0000)}.x-button.x-button-action img.x-icon-mask,.x-toolbar .x-button.x-button-action img.x-icon-mask,.x-button.x-button-action-round img.x-icon-mask,.x-toolbar .x-button.x-button-action-round img.x-icon-mask,.x-button.x-button-action-small img.x-icon-mask,.x-toolbar .x-button.x-button-action-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-button.x-button-action.x-button-pressed,.x-button.x-button-action.x-button-active,.x-toolbar .x-button.x-button-action.x-button-pressed,.x-toolbar .x-button.x-button-action.x-button-active,.x-button.x-button-action-round.x-button-pressed,.x-button.x-button-action-round.x-button-active,.x-toolbar .x-button.x-button-action-round.x-button-pressed,.x-toolbar .x-button.x-button-action-round.x-button-active,.x-button.x-button-action-small.x-button-pressed,.x-button.x-button-action-small.x-button-active,.x-toolbar .x-button.x-button-action-small.x-button-pressed,.x-toolbar .x-button.x-button-action-small.x-button-active{-webkit-box-shadow:inset #b30000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-action.x-button-pressed,.x-button.x-button-action.x-button-pressed:after,.x-button.x-button-action.x-button-active,.x-button.x-button-action.x-button-active:after,.x-toolbar .x-button.x-button-action.x-button-pressed,.x-toolbar .x-button.x-button-action.x-button-pressed:after,.x-toolbar .x-button.x-button-action.x-button-active,.x-toolbar .x-button.x-button-action.x-button-active:after,.x-button.x-button-action-round.x-button-pressed,.x-button.x-button-action-round.x-button-pressed:after,.x-button.x-button-action-round.x-button-active,.x-button.x-button-action-round.x-button-active:after,.x-toolbar .x-button.x-button-action-round.x-button-pressed,.x-toolbar .x-button.x-button-action-round.x-button-pressed:after,.x-toolbar .x-button.x-button-action-round.x-button-active,.x-toolbar .x-button.x-button-action-round.x-button-active:after,.x-button.x-button-action-small.x-button-pressed,.x-button.x-button-action-small.x-button-pressed:after,.x-button.x-button-action-small.x-button-active,.x-button.x-button-action-small.x-button-active:after,.x-toolbar .x-button.x-button-action-small.x-button-pressed,.x-toolbar .x-button.x-button-action-small.x-button-pressed:after,.x-toolbar .x-button.x-button-action-small.x-button-active,.x-toolbar .x-button.x-button-action-small.x-button-active:after{background-color:#db0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #a80000), color-stop(10%, #c20000), color-stop(65%, #db0000), color-stop(100%, #de0000));background-image:-webkit-linear-gradient(#a80000,#c20000 10%,#db0000 65%,#de0000);background-image:linear-gradient(#a80000,#c20000 10%,#db0000 65%,#de0000)}.x-button.x-button-confirm,.x-toolbar .x-button.x-button-confirm,.x-button.x-button-confirm-round,.x-toolbar .x-button.x-button-confirm-round,.x-button.x-button-confirm-small,.x-toolbar .x-button.x-button-confirm-small{border:0.1em solid #263501;border-top-color:#374e02;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-confirm.x-button-back:before,.x-button.x-button-confirm.x-button-forward:before,.x-toolbar .x-button.x-button-confirm.x-button-back:before,.x-toolbar .x-button.x-button-confirm.x-button-forward:before,.x-button.x-button-confirm-round.x-button-back:before,.x-button.x-button-confirm-round.x-button-forward:before,.x-toolbar .x-button.x-button-confirm-round.x-button-back:before,.x-toolbar .x-button.x-button-confirm-round.x-button-forward:before,.x-button.x-button-confirm-small.x-button-back:before,.x-button.x-button-confirm-small.x-button-forward:before,.x-toolbar .x-button.x-button-confirm-small.x-button-back:before,.x-toolbar .x-button.x-button-confirm-small.x-button-forward:before{background:#263501}.x-button.x-button-confirm,.x-button.x-button-confirm.x-button-back:after,.x-button.x-button-confirm.x-button-forward:after,.x-toolbar .x-button.x-button-confirm,.x-toolbar .x-button.x-button-confirm.x-button-back:after,.x-toolbar .x-button.x-button-confirm.x-button-forward:after,.x-button.x-button-confirm-round,.x-button.x-button-confirm-round.x-button-back:after,.x-button.x-button-confirm-round.x-button-forward:after,.x-toolbar .x-button.x-button-confirm-round,.x-toolbar .x-button.x-button-confirm-round.x-button-back:after,.x-toolbar .x-button.x-button-confirm-round.x-button-forward:after,.x-button.x-button-confirm-small,.x-button.x-button-confirm-small.x-button-back:after,.x-button.x-button-confirm-small.x-button-forward:after,.x-toolbar .x-button.x-button-confirm-small,.x-toolbar .x-button.x-button-confirm-small.x-button-back:after,.x-toolbar .x-button.x-button-confirm-small.x-button-forward:after{background-color:#6c9804;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c2fa3b), color-stop(2%, #85bb05), color-stop(100%, #547503));background-image:-webkit-linear-gradient(#c2fa3b,#85bb05 2%,#547503);background-image:linear-gradient(#c2fa3b,#85bb05 2%,#547503)}.x-button.x-button-confirm img.x-icon-mask,.x-toolbar .x-button.x-button-confirm img.x-icon-mask,.x-button.x-button-confirm-round img.x-icon-mask,.x-toolbar .x-button.x-button-confirm-round img.x-icon-mask,.x-button.x-button-confirm-small img.x-icon-mask,.x-toolbar .x-button.x-button-confirm-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #f4fedc));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#f4fedc);background-image:linear-gradient(#ffffff,#ffffff 2%,#f4fedc)}.x-button.x-button-confirm.x-button-pressed,.x-button.x-button-confirm.x-button-active,.x-toolbar .x-button.x-button-confirm.x-button-pressed,.x-toolbar .x-button.x-button-confirm.x-button-active,.x-button.x-button-confirm-round.x-button-pressed,.x-button.x-button-confirm-round.x-button-active,.x-toolbar .x-button.x-button-confirm-round.x-button-pressed,.x-toolbar .x-button.x-button-confirm-round.x-button-active,.x-button.x-button-confirm-small.x-button-pressed,.x-button.x-button-confirm-small.x-button-active,.x-toolbar .x-button.x-button-confirm-small.x-button-pressed,.x-toolbar .x-button.x-button-confirm-small.x-button-active{-webkit-box-shadow:inset #384f00 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-confirm.x-button-pressed,.x-button.x-button-confirm.x-button-pressed:after,.x-button.x-button-confirm.x-button-active,.x-button.x-button-confirm.x-button-active:after,.x-toolbar .x-button.x-button-confirm.x-button-pressed,.x-toolbar .x-button.x-button-confirm.x-button-pressed:after,.x-toolbar .x-button.x-button-confirm.x-button-active,.x-toolbar .x-button.x-button-confirm.x-button-active:after,.x-button.x-button-confirm-round.x-button-pressed,.x-button.x-button-confirm-round.x-button-pressed:after,.x-button.x-button-confirm-round.x-button-active,.x-button.x-button-confirm-round.x-button-active:after,.x-toolbar .x-button.x-button-confirm-round.x-button-pressed,.x-toolbar .x-button.x-button-confirm-round.x-button-pressed:after,.x-toolbar .x-button.x-button-confirm-round.x-button-active,.x-toolbar .x-button.x-button-confirm-round.x-button-active:after,.x-button.x-button-confirm-small.x-button-pressed,.x-button.x-button-confirm-small.x-button-pressed:after,.x-button.x-button-confirm-small.x-button-active,.x-button.x-button-confirm-small.x-button-active:after,.x-toolbar .x-button.x-button-confirm-small.x-button-pressed,.x-toolbar .x-button.x-button-confirm-small.x-button-pressed:after,.x-toolbar .x-button.x-button-confirm-small.x-button-active,.x-toolbar .x-button.x-button-confirm-small.x-button-active:after{background-color:#547503;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #304402), color-stop(10%, #425c02), color-stop(65%, #547503), color-stop(100%, #557803));background-image:-webkit-linear-gradient(#304402,#425c02 10%,#547503 65%,#557803);background-image:linear-gradient(#304402,#425c02 10%,#547503 65%,#557803)}.x-button.x-button-decline,.x-toolbar .x-button.x-button-decline,.x-button.x-button-decline-round,.x-toolbar .x-button.x-button-decline-round,.x-button.x-button-decline-small,.x-toolbar .x-button.x-button-decline-small{border:0.1em solid #630303;border-top-color:#7c0303;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-decline.x-button-back:before,.x-button.x-button-decline.x-button-forward:before,.x-toolbar .x-button.x-button-decline.x-button-back:before,.x-toolbar .x-button.x-button-decline.x-button-forward:before,.x-button.x-button-decline-round.x-button-back:before,.x-button.x-button-decline-round.x-button-forward:before,.x-toolbar .x-button.x-button-decline-round.x-button-back:before,.x-toolbar .x-button.x-button-decline-round.x-button-forward:before,.x-button.x-button-decline-small.x-button-back:before,.x-button.x-button-decline-small.x-button-forward:before,.x-toolbar .x-button.x-button-decline-small.x-button-back:before,.x-toolbar .x-button.x-button-decline-small.x-button-forward:before{background:#630303}.x-button.x-button-decline,.x-button.x-button-decline.x-button-back:after,.x-button.x-button-decline.x-button-forward:after,.x-toolbar .x-button.x-button-decline,.x-toolbar .x-button.x-button-decline.x-button-back:after,.x-toolbar .x-button.x-button-decline.x-button-forward:after,.x-button.x-button-decline-round,.x-button.x-button-decline-round.x-button-back:after,.x-button.x-button-decline-round.x-button-forward:after,.x-toolbar .x-button.x-button-decline-round,.x-toolbar .x-button.x-button-decline-round.x-button-back:after,.x-toolbar .x-button.x-button-decline-round.x-button-forward:after,.x-button.x-button-decline-small,.x-button.x-button-decline-small.x-button-back:after,.x-button.x-button-decline-small.x-button-forward:after,.x-toolbar .x-button.x-button-decline-small,.x-toolbar .x-button.x-button-decline-small.x-button-back:after,.x-toolbar .x-button.x-button-decline-small.x-button-forward:after{background-color:#c70505;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fb6a6a), color-stop(2%, #ea0606), color-stop(100%, #a40404));background-image:-webkit-linear-gradient(#fb6a6a,#ea0606 2%,#a40404);background-image:linear-gradient(#fb6a6a,#ea0606 2%,#a40404)}.x-button.x-button-decline img.x-icon-mask,.x-toolbar .x-button.x-button-decline img.x-icon-mask,.x-button.x-button-decline-round img.x-icon-mask,.x-toolbar .x-button.x-button-decline-round img.x-icon-mask,.x-button.x-button-decline-small img.x-icon-mask,.x-toolbar .x-button.x-button-decline-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #fedcdc));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#fedcdc);background-image:linear-gradient(#ffffff,#ffffff 2%,#fedcdc)}.x-button.x-button-decline.x-button-pressed,.x-button.x-button-decline.x-button-active,.x-toolbar .x-button.x-button-decline.x-button-pressed,.x-toolbar .x-button.x-button-decline.x-button-active,.x-button.x-button-decline-round.x-button-pressed,.x-button.x-button-decline-round.x-button-active,.x-toolbar .x-button.x-button-decline-round.x-button-pressed,.x-toolbar .x-button.x-button-decline-round.x-button-active,.x-button.x-button-decline-small.x-button-pressed,.x-button.x-button-decline-small.x-button-active,.x-toolbar .x-button.x-button-decline-small.x-button-pressed,.x-toolbar .x-button.x-button-decline-small.x-button-active{-webkit-box-shadow:inset maroon 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-decline.x-button-pressed,.x-button.x-button-decline.x-button-pressed:after,.x-button.x-button-decline.x-button-active,.x-button.x-button-decline.x-button-active:after,.x-toolbar .x-button.x-button-decline.x-button-pressed,.x-toolbar .x-button.x-button-decline.x-button-pressed:after,.x-toolbar .x-button.x-button-decline.x-button-active,.x-toolbar .x-button.x-button-decline.x-button-active:after,.x-button.x-button-decline-round.x-button-pressed,.x-button.x-button-decline-round.x-button-pressed:after,.x-button.x-button-decline-round.x-button-active,.x-button.x-button-decline-round.x-button-active:after,.x-toolbar .x-button.x-button-decline-round.x-button-pressed,.x-toolbar .x-button.x-button-decline-round.x-button-pressed:after,.x-toolbar .x-button.x-button-decline-round.x-button-active,.x-toolbar .x-button.x-button-decline-round.x-button-active:after,.x-button.x-button-decline-small.x-button-pressed,.x-button.x-button-decline-small.x-button-pressed:after,.x-button.x-button-decline-small.x-button-active,.x-button.x-button-decline-small.x-button-active:after,.x-toolbar .x-button.x-button-decline-small.x-button-pressed,.x-toolbar .x-button.x-button-decline-small.x-button-pressed:after,.x-toolbar .x-button.x-button-decline-small.x-button-active,.x-toolbar .x-button.x-button-decline-small.x-button-active:after{background-color:#a40404;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #720303), color-stop(10%, #8b0404), color-stop(65%, #a40404), color-stop(100%, #a70404));background-image:-webkit-linear-gradient(#720303,#8b0404 10%,#a40404 65%,#a70404);background-image:linear-gradient(#720303,#8b0404 10%,#a40404 65%,#a70404)}.x-sheet{padding:0.7em;border-top:1px solid #000;background-color:rgba(0,0,0,0.9);background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(153,0,0,0.9)), color-stop(2%, rgba(36,0,0,0.9)), color-stop(100%, rgba(0,0,0,0.9)));background-image:-webkit-linear-gradient(rgba(153,0,0,0.9),rgba(36,0,0,0.9) 2%,rgba(0,0,0,0.9));background-image:linear-gradient(rgba(153,0,0,0.9),rgba(36,0,0,0.9) 2%,rgba(0,0,0,0.9))}.x-sheet .x-sheet-body .x-button{margin-bottom:0.5em}.x-sheet-body{position:relative}.x-sheet.x-picker{padding:0}.x-sheet.x-picker > .x-sheet-body{position:relative;background-color:#fff;-webkit-border-radius:0.4em;border-radius:0.4em;-webkit-background-clip:padding;background-clip:padding-box;overflow:hidden;margin:0.7em}.x-sheet.x-picker > .x-sheet-body:before,.x-sheet.x-picker > .x-sheet-body:after{z-index:1;content:"";position:absolute;width:100%;height:30%;top:0;left:0}.x-sheet.x-picker > .x-sheet-body:before{top:auto;-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;bottom:0;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #bbbbbb));background-image:-webkit-linear-gradient(#ffffff,#bbbbbb);background-image:linear-gradient(#ffffff,#bbbbbb)}.x-sheet.x-picker > .x-sheet-body:after{-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;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bbbbbb), color-stop(100%, #ffffff));background-image:-webkit-linear-gradient(#bbbbbb,#ffffff);background-image:linear-gradient(#bbbbbb,#ffffff)}.x-picker-slot{z-index:2;position:relative;-webkit-box-shadow:rgba(0,0,0,0.4) -1px 0 1px}.x-picker-slot:first-child{-webkit-box-shadow:none}.x-picker-mask{position:absolute;top:0;left:0;right:0;bottom:0;z-index:3;display:-webkit-box;display:box;-webkit-box-align:stretch;box-align:stretch;-webkit-box-orient:vertical;box-orient:vertical;-webkit-box-pack:center;box-pack:center;pointer-events:none}.x-picker-bar{border-top:0.12em solid red;border-bottom:0.12em solid red;height:2.5em;background-color:rgba(242,13,13,0.3);background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(250,158,158,0.3)), color-stop(2%, rgba(244,47,47,0.3)), color-stop(100%, rgba(208,11,11,0.3)));background-image:-webkit-linear-gradient(rgba(250,158,158,0.3),rgba(244,47,47,0.3) 2%,rgba(208,11,11,0.3));background-image:linear-gradient(rgba(250,158,158,0.3),rgba(244,47,47,0.3) 2%,rgba(208,11,11,0.3));-webkit-box-shadow:rgba(0,0,0,0.2) 0 0.2em 0.2em}.x-picker-slot-title{background-color:#9a0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff3333), color-stop(2%, #bd0000), color-stop(100%, #760000));background-image:-webkit-linear-gradient(#ff3333,#bd0000 2%,#760000);background-image:linear-gradient(#ff3333,#bd0000 2%,#760000);border-top:1px solid #9a0000;border-bottom:1px solid #340000;font-weight:bold;font-size:0.8em;color:#000;padding:0.2em 1.02em;-webkit-box-shadow:0px 0.1em 0.3em rgba(0,0,0,0.3);text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-picker-item{vertical-align:middle;height:2.5em;line-height:2.5em;font-weight:bold;padding:0 10px 0 10px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.x-picker-right{text-align:right}.x-picker-center{text-align:center}.x-picker-left{text-align:left}.x-tabbar.x-docked-top{border-bottom:.1em solid;height:2.6em;padding:0 .8em}.x-tabbar.x-docked-top .x-tab{margin:.4em .2em;padding:0.4em 0.8em;height:1.8em;-webkit-border-radius:0.9em;border-radius:0.9em}.x-tabbar.x-docked-top .x-tab-active{-webkit-box-shadow:rgba(255,255,255,0.2) 0 0.1em 0.1em,inset rgba(0,0,0,0.3) 0 0.1em 0.2em}.x-tabbar.x-docked-top .x-button-label,.x-tabbar.x-docked-top .x-hasbadge .x-badge,.x-hasbadge .x-tabbar.x-docked-top .x-badge{font-size:.8em;line-height:1.2em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.x-tabbar.x-docked-bottom{border-top:.1em solid;height:3em}.x-tabbar.x-docked-bottom .x-tab{display:-webkit-box;display:box;-webkit-box-direction:reverse;box-direction:reverse;-webkit-box-orient:vertical;box-orient:vertical;-webkit-border-radius:0.25em;border-radius:0.25em;margin:.15em;min-width:3.3em;position:relative}.x-tabbar.x-docked-bottom .x-tab img{-webkit-mask-size:1.65em;width:1.65em;height:1.65em;display:block;margin:.4em auto .1em;position:relative}.x-tabbar.x-docked-bottom .x-tab .x-button-label,.x-tabbar.x-docked-bottom .x-tab .x-hasbadge .x-badge,.x-hasbadge .x-tabbar.x-docked-bottom .x-tab .x-badge{margin:0;font-size:9px;line-height:12px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.x-tabbar.x-docked-bottom .x-tab-active{-webkit-box-shadow:inset rgba(255,255,255,0.3) 0 0 0.1em}.x-tabbar-light{background-color:#920808;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f53e3e), color-stop(2%, #b40909), color-stop(100%, #700606));background-image:-webkit-linear-gradient(#f53e3e,#b40909 2%,#700606);background-image:linear-gradient(#f53e3e,#b40909 2%,#700606);border-color:#7a0606}.x-tabbar-light .x-tab{color:#f76e6e}.x-tabbar-light .x-tab-active{color:#fff}.x-tabbar-light .x-tab-pressed{color:#fff}.x-tabbar-light.x-docked-bottom .x-tab{text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-light.x-docked-bottom .x-tab img{background-color:#f20d0d;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fa9f9f), color-stop(2%, #f42f2f), color-stop(100%, #d10b0b));background-image:-webkit-linear-gradient(#fa9f9f,#f42f2f 2%,#d10b0b);background-image:linear-gradient(#fa9f9f,#f42f2f 2%,#d10b0b)}.x-tabbar-light.x-docked-bottom .x-tab-active{background-color:#aa0909;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f65656), color-stop(2%, #cc0b0b), color-stop(100%, #880707));background-image:-webkit-linear-gradient(#f65656,#cc0b0b 2%,#880707);background-image:linear-gradient(#f65656,#cc0b0b 2%,#880707);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-light.x-docked-bottom .x-tab-active img{background-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff4d4d), color-stop(50%, #ff1a1a), color-stop(51%, #ff0000), color-stop(100%, #e60000));background-image:-webkit-linear-gradient(#ff4d4d,#ff1a1a 50%,#ff0000 51%,#e60000);background-image:linear-gradient(#ff4d4d,#ff1a1a 50%,#ff0000 51%,#e60000)}.x-tabbar-light.x-docked-top .x-tab-active{background-color:#7a0606;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #490404), color-stop(10%, #610505), color-stop(65%, #7a0606), color-stop(100%, #7c0707));background-image:-webkit-linear-gradient(#490404,#610505 10%,#7a0606 65%,#7c0707);background-image:linear-gradient(#490404,#610505 10%,#7a0606 65%,#7c0707);color:#fff}.x-tabbar-dark{background-color:#1a0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b30000), color-stop(2%, #3e0000), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#b30000,#3e0000 2%,#000000);background-image:linear-gradient(#b30000,#3e0000 2%,#000000);border-color:#000}.x-tabbar-dark .x-tab{color:#e60000}.x-tabbar-dark .x-tab-active{color:#ffe6e6}.x-tabbar-dark .x-tab-pressed{color:#fff}.x-tabbar-dark.x-docked-bottom .x-tab{text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-dark.x-docked-bottom .x-tab img{background-color:maroon;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(2%, #a40000), color-stop(100%, #5c0000));background-image:-webkit-linear-gradient(#ff1a1a,#a40000 2%,#5c0000);background-image:linear-gradient(#ff1a1a,#a40000 2%,#5c0000)}.x-tabbar-dark.x-docked-bottom .x-tab-active{background-color:#340000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #cc0000), color-stop(2%, #570000), color-stop(100%, #100000));background-image:-webkit-linear-gradient(#cc0000,#570000 2%,#100000);background-image:linear-gradient(#cc0000,#570000 2%,#100000);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-tabbar-dark.x-docked-bottom .x-tab-active img{background-color:#f99;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffe5e5), color-stop(50%, #ffb3b3), color-stop(51%, #ff9999), color-stop(100%, #ff8080));background-image:-webkit-linear-gradient(#ffe5e5,#ffb3b3 50%,#ff9999 51%,#ff8080);background-image:linear-gradient(#ffe5e5,#ffb3b3 50%,#ff9999 51%,#ff8080)}.x-tabbar-dark.x-docked-top .x-tab-active{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #000000), color-stop(65%, #000000), color-stop(100%, #030000));background-image:-webkit-linear-gradient(#000000,#000000 10%,#000000 65%,#030000);background-image:linear-gradient(#000000,#000000 10%,#000000 65%,#030000);color:#fff}.x-tab.x-item-disabled span.x-button-label,.x-tab.x-item-disabled .x-hasbadge span.x-badge,.x-hasbadge .x-tab.x-item-disabled span.x-badge,.x-tab.x-item-disabled img{opacity:.5}.x-tab.x-draggable{opacity:.7}.x-toolbar{height:2.6em;padding:0 0.2em;overflow:hidden;position:relative}.x-toolbar > *{z-index:1}.x-toolbar.x-docked-top{border-bottom:.1em solid}.x-toolbar.x-docked-bottom{border-top:.1em solid}.x-toolbar-title{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;line-height:2.1em;font-size:1.2em;text-align:center;font-weight:bold}.x-toolbar-dark{background-color:#4d0000;background-image:none;border-color:#000}.x-toolbar-dark .x-toolbar-title{color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-toolbar-dark .x-button,.x-toolbar .x-toolbar-dark .x-button,.x-toolbar-dark .x-field-select .x-input-text,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text,.x-toolbar-dark .x-field-select:before,.x-toolbar .x-toolbar-dark .x-field-select:before{border:0.1em solid #000;border-top-color:#000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-dark .x-button.x-button-back:before,.x-toolbar-dark .x-button.x-button-forward:before,.x-toolbar .x-toolbar-dark .x-button.x-button-back:before,.x-toolbar .x-toolbar-dark .x-button.x-button-forward:before,.x-toolbar-dark .x-field-select .x-input-text.x-button-back:before,.x-toolbar-dark .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-dark .x-field-select:before.x-button-back:before,.x-toolbar-dark .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-forward:before{background:#000}.x-toolbar-dark .x-button,.x-toolbar-dark .x-button.x-button-back:after,.x-toolbar-dark .x-button.x-button-forward:after,.x-toolbar .x-toolbar-dark .x-button,.x-toolbar .x-toolbar-dark .x-button.x-button-back:after,.x-toolbar .x-toolbar-dark .x-button.x-button-forward:after,.x-toolbar-dark .x-field-select .x-input-text,.x-toolbar-dark .x-field-select .x-input-text.x-button-back:after,.x-toolbar-dark .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-dark .x-field-select:before,.x-toolbar-dark .x-field-select:before.x-button-back:after,.x-toolbar-dark .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-dark .x-field-select:before,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-forward:after{background-color:#1a0000;background-image:none}.x-toolbar-dark .x-button img.x-icon-mask,.x-toolbar .x-toolbar-dark .x-button img.x-icon-mask,.x-toolbar-dark .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-dark .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-dark .x-field-select:before img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-toolbar-dark .x-button.x-button-pressed,.x-toolbar-dark .x-button.x-button-active,.x-toolbar .x-toolbar-dark .x-button.x-button-pressed,.x-toolbar .x-toolbar-dark .x-button.x-button-active,.x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar-dark .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-active{-webkit-box-shadow:inset #000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-dark .x-button.x-button-pressed,.x-toolbar-dark .x-button.x-button-pressed:after,.x-toolbar-dark .x-button.x-button-active,.x-toolbar-dark .x-button.x-button-active:after,.x-toolbar .x-toolbar-dark .x-button.x-button-pressed,.x-toolbar .x-toolbar-dark .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-dark .x-button.x-button-active,.x-toolbar .x-toolbar-dark .x-button.x-button-active:after,.x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar-dark .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar-dark .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select .x-input-text.x-button-active:after,.x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar-dark .x-field-select:before.x-button-pressed:after,.x-toolbar-dark .x-field-select:before.x-button-active,.x-toolbar-dark .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-dark .x-field-select:before.x-button-active:after{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #000000), color-stop(65%, #000000), color-stop(100%, #030000));background-image:-webkit-linear-gradient(#000000,#000000 10%,#000000 65%,#030000);background-image:linear-gradient(#000000,#000000 10%,#000000 65%,#030000)}.x-toolbar-light{background-color:maroon;background-image:none;border-color:#000}.x-toolbar-light .x-toolbar-title{color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-toolbar-light .x-button,.x-toolbar .x-toolbar-light .x-button,.x-toolbar-light .x-field-select .x-input-text,.x-toolbar .x-toolbar-light .x-field-select .x-input-text,.x-toolbar-light .x-field-select:before,.x-toolbar .x-toolbar-light .x-field-select:before{border:0.1em solid #000;border-top-color:#000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-light .x-button.x-button-back:before,.x-toolbar-light .x-button.x-button-forward:before,.x-toolbar .x-toolbar-light .x-button.x-button-back:before,.x-toolbar .x-toolbar-light .x-button.x-button-forward:before,.x-toolbar-light .x-field-select .x-input-text.x-button-back:before,.x-toolbar-light .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-light .x-field-select:before.x-button-back:before,.x-toolbar-light .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-forward:before{background:#000}.x-toolbar-light .x-button,.x-toolbar-light .x-button.x-button-back:after,.x-toolbar-light .x-button.x-button-forward:after,.x-toolbar .x-toolbar-light .x-button,.x-toolbar .x-toolbar-light .x-button.x-button-back:after,.x-toolbar .x-toolbar-light .x-button.x-button-forward:after,.x-toolbar-light .x-field-select .x-input-text,.x-toolbar-light .x-field-select .x-input-text.x-button-back:after,.x-toolbar-light .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-light .x-field-select:before,.x-toolbar-light .x-field-select:before.x-button-back:after,.x-toolbar-light .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-light .x-field-select:before,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-forward:after{background-color:#4d0000;background-image:none}.x-toolbar-light .x-button img.x-icon-mask,.x-toolbar .x-toolbar-light .x-button img.x-icon-mask,.x-toolbar-light .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-light .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-light .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-light .x-field-select:before img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-toolbar-light .x-button.x-button-pressed,.x-toolbar-light .x-button.x-button-active,.x-toolbar .x-toolbar-light .x-button.x-button-pressed,.x-toolbar .x-toolbar-light .x-button.x-button-active,.x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar-light .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-active{-webkit-box-shadow:inset #000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-light .x-button.x-button-pressed,.x-toolbar-light .x-button.x-button-pressed:after,.x-toolbar-light .x-button.x-button-active,.x-toolbar-light .x-button.x-button-active:after,.x-toolbar .x-toolbar-light .x-button.x-button-pressed,.x-toolbar .x-toolbar-light .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-light .x-button.x-button-active,.x-toolbar .x-toolbar-light .x-button.x-button-active:after,.x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar-light .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar-light .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-light .x-field-select .x-input-text.x-button-active:after,.x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar-light .x-field-select:before.x-button-pressed:after,.x-toolbar-light .x-field-select:before.x-button-active,.x-toolbar-light .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-light .x-field-select:before.x-button-active:after{background-color:#290000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #100000), color-stop(65%, #290000), color-stop(100%, #2c0000));background-image:-webkit-linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000);background-image:linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000)}.x-android .x-toolbar .x-input-text,.x-android .x-toolbar .x-input-search,.x-android .x-toolbar .x-input-number{-webkit-box-shadow:inset rgba(0,0,0,0.5) 0 0.1em 0.1em,inset rgba(0,0,0,0.5) 0 -0.1em 0.1em,inset rgba(0,0,0,0.5) 0.1em 0 0.1em,inset rgba(0,0,0,0.5) -0.1em 0 0.1em,inset rgba(0,0,0,0.5) 0 0.15em 0.4em}.x-desktop .x-toolbar .x-input-search{padding-left:1.06em}.x-toolbar .x-field{margin:.3em .5em;min-height:0;border-bottom:0;width:auto}.x-toolbar .x-input-text,.x-toolbar .x-input-search,.x-toolbar .x-input-number{-webkit-border-radius:0.3em;border-radius:0.3em;-webkit-background-clip:padding;background-clip:padding-box;height:1.5em;color:#6e6e6e;background-color:#fff;min-height:0;line-height:1.3em;-webkit-appearance:none;padding:0em .3em;margin:0;-webkit-box-shadow:inset 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}.x-toolbar .x-input-text:focus,.x-toolbar .x-input-search:focus,.x-toolbar .x-input-number:focus{color:#000}.x-toolbar .x-input-search,.x-toolbar .x-field-select .x-input-text{padding:0em .5em;-webkit-border-radius:0.75em;border-radius:0.75em}.x-toolbar .x-input-search{background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.6))),url('data:image/png;base64,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');-webkit-background-size:.83em .83em, .83em .83em;background-repeat:no-repeat;background-position:.5em 50%;padding-left:1.67em}.x-toolbar .x-field-select:after{top:-0.5em;right:-0.5em}.x-toolbar .x-field-select:before{width:3em;border-left:none;-webkit-border-top-right-radius:0.75em;border-top-right-radius:0.75em;-webkit-border-bottom-right-radius:0.75em;border-bottom-right-radius:0.75em;-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,.x-toolbar .x-field-select:before{-webkit-box-shadow:none}.x-toolbar .x-field-select .x-input-text{padding-right:1.5em;display:block}.x-indexbar{padding:0 .3em;width:2.1em;display:-webkit-box;display:box;-webkit-box-orient:vertical;box-orient:vertical;-webkit-box-align:stretch;box-align:stretch;-webkit-box-pack:center;box-pack:center;position:absolute;top:1.5em;right:0;bottom:1em;z-index:3}.x-indexbar-body{padding:.3em 0}.x-indexbar-pressed .x-indexbar-body{-webkit-border-radius:0.75em;border-radius:0.75em;background-color:rgba(163,143,143,0.8)}.x-indexbar-item{color:#320101;font-size:0.6em;text-align:center;line-height:1.1em;font-weight:bold;display:block}.x-list{background-color:#f7f7f7;position:relative}.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-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9999), color-stop(2%, #ff2424), color-stop(100%, #db0000));background-image:-webkit-linear-gradient(#ff9999,#ff2424 2%,#db0000);background-image:linear-gradient(#ff9999,#ff2424 2%,#db0000);width:1.7em;height:1.7em}.x-list.x-list-indexed .x-list-disclosure{margin-right:1.3em}.x-list .x-item-selected .x-list-disclosure{background:#fff none}.x-list .x-list-item{position:relative;color:#000;padding:0.5em 0.8em;min-height:2.6em;display:-webkit-box;display:box;border-top:1px solid #d1d1d1}.x-list .x-list-item:first-child{border-top:none}.x-list .x-list-item:last-child{border-bottom:1px solid #d1d1d1}.x-list .x-list-item .x-list-item-body{-webkit-box-flex:1;box-flex:1;-webkit-box-align:center;box-align:center;-webkit-box-orient:horizontal;box-orient:horizontal}.x-list .x-list-item .x-list-item-body span{font-size:.95em}.x-list .x-list-item.x-item-pressed{border-top-color:#fff;background:#fff none}.x-list .x-list-item.x-item-selected{background-color:red;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff9999), color-stop(2%, #ff2424), color-stop(100%, #db0000));background-image:-webkit-linear-gradient(#ff9999,#ff2424 2%,#db0000);background-image:linear-gradient(#ff9999,#ff2424 2%,#db0000);color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;border-top-color:#f33;border-bottom-color:#b30000}.x-list-header{background-color:#e60000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff8080), color-stop(2%, #ff0b0b), color-stop(100%, #c20000));background-image:-webkit-linear-gradient(#ff8080,#ff0b0b 2%,#c20000);background-image:linear-gradient(#ff8080,#ff0b0b 2%,#c20000);color:#ff8080;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;border-top:1px solid #e60000;border-bottom:1px solid maroon;font-weight:bold;font-size:0.8em;padding:0.2em 1.02em;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:0px 0.1em 0.3em rgba(0,0,0,0.3)}.x-list-header-swap{z-index:1;position:absolute;top:0;left:0;width:100%}.x-list-round{background-color:#eaeaea}.x-list-round .x-list-group-items > *,.x-list-round.x-list-flat .x-list-parent > *{border-right:1px solid #d1d1d1;border-left:1px solid #d1d1d1;background-color:#f7f7f7;margin:0 1.2em}.x-list-round .x-list-group-items > *:first-child,.x-list-round.x-list-flat .x-list-parent > *:first-child{margin:1.2em 1.2em 0;border-top:1px solid #d1d1d1;-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}.x-list-round .x-list-group-items > *:last-child,.x-list-round.x-list-flat .x-list-parent > *:last-child{margin:0 1.2em 1.2em;border-bottom:1px solid #d1d1d1;-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}.x-list-paging{height:50px}.x-list-paging .x-loading-spinner{display:none;margin:auto}.x-list-paging .x-list-paging-msg{text-align:center;color:red;padding-top:10px;-webkit-border-radius:6px;border-radius:6px}.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:-webkit-box;display:box;-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:center;box-align:center;-webkit-box-pack:center;box-pack:center;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;-webkit-mask:center center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAA8CAYAAAAUufjgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjFJREFUeNrsmU8oREEYwOexdtNuKBfFwdVhCyfuysnFiXISS+1BLopyUpKLXETkRLaUi1LK3Q2lpPbiQLnIn03a/Hm+z86Ttv0zM++bfbOar36Hbad5v535Zp7v47iuy0wOpyoEHccRHV9L9NxPkUE/bhKCOKiOSPAdn69DsJ5I8E2HYA0QJRJ8Bb50CDYRCT7pEMQD0kwk+CByUFQEW4gE73UIhoA2IsFb4ENEMCQ5MdU1IxwygpT3oKNLMGyyYFVscdhusc8tDpu+xRG7xf95BW0O2kNiV1AgIvaQ2BzUJNgJNJYZGyUU7OG1cal4Bi68oqkDPszy2teEwJp5Cdyu/lZ1g8CwIYJ7wEF+2YmrNw90Byx3BizgKhaqizEP1wg7CLLxCEzy/CtauMeBlQDyEfNuGrgU6SyM8F9SyVgHdmRaH6tAb4XkToEp2d4M5mOK0TWMigU2koa8vJMRZPxEb2ss2LEVPMpPLlMRxBgDZjQJLgNbxb6Uab9tAn3EcifAeKkBMoLY+j0GWonk7oB+lmsFkwhidAGHBPmIeTcAnJcbKCuIMQEs+hScAzZEBqoIYuzyFVCJI36lMJ2CDfxibZeUu+EX/4uMIFP8ZyLejxkgK0hG5a8kP4IYSZbr1IuQVHmAX0HGX4VuGfZVJ6cQxPd1uoRcWqDW0SroFVzZAnJZ/h0LWhAjUUAw4XdSSsH8fExRTEgtGAOuOTETBb16Jk412e+bxOSwglYw6PgWYABvLk8P7zGJFwAAAABJRU5ErkJggg==') no-repeat;-webkit-mask-size:2em 3em;-webkit-transform:rotate(0deg);background-color:#111}.x-list-pullrefresh-release .x-list-pullrefresh-arrow{-webkit-transform:rotate(-180deg)}.x-list-pullrefresh-wrap{width:20em;font-size:0.7em}.x-list-pullrefresh-message{font-weight:bold;font-size:1.3em;margin-bottom:0.1em;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-container{position:relative}.x-layout-box-inner{display:-webkit-box;position:relative}.x-fit-item{position:absolute;left:0;top:0;overflow:hidden;width:100%}.x-panel > .x-docked,.x-docked{position:absolute;z-index:5}.x-layout-fit{overflow:hidden}.x-carousel-body{overflow:hidden;position:relative}.x-carousel-item{position:absolute;width:100%;height:100%;-webkit-transition-property:matrix3d;transition-property:matrix3d;-webkit-transition-duration:0;transition-duration:0;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.x-android .x-carousel-item{-webkit-transition-property:translate;transition-property:translate;-webkit-transition-duration:0;transition-duration:0;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.x-carousel-indicator{position:absolute;z-index:1;vertical-align:middle;text-align:center;display:-webkit-box;display:box;-webkit-box-pack:center;box-pack:center;-webkit-box-align:center;box-align:center}.x-carousel-indicator span{display:block;width:0.5em;height:0.5em;-webkit-border-radius:0.25em;border-radius:0.25em;margin:0.2em}.x-carousel-indicator-horizontal{height:1.5em;bottom:0;left:0;width:100%;-webkit-box-orient:horizontal;box-orient:horizontal}.x-carousel-indicator-vertical{width:1.5em;height:100%;right:0;top:0;-webkit-box-orient:vertical;box-orient:vertical}.x-carousel-indicator-light span{background-color:rgba(255,255,255,0.1);background-image:none}.x-carousel-indicator-light span.x-carousel-indicator-active{background-color:rgba(255,255,255,0.3);background-image:none}.x-carousel-indicator-dark span{background-color:rgba(0,0,0,0.1);background-image:none}.x-carousel-indicator-dark span.x-carousel-indicator-active{background-color:rgba(0,0,0,0.3);background-image:none}.x-checkmark-base,.x-item-selected .x-list-selected:before,.x-item-selected .x-list-selected:after,.x-field .x-input-radio:after,.x-field .x-input-checkbox:after,.x-field .x-input-radio:checked:after,.x-field .x-input-checkbox:checked:after{content:"";position:absolute;width:0.75em;height:1.25em;top:50%;left:auto;-webkit-transform:rotate(45deg) skew(5deg);-webkit-transform-origin:50% 50%;right:1.1em;border:.35em solid;border-top:none;border-left:none;margin-top:-0.75em}.x-form .x-panel-body{padding:1em;background-color:#eee}.x-input-el,.x-field input,.x-field textarea,.x-field select,.x-field .x-field-slider,.x-field-toggle,.x-field-slider{min-height:2.5em;width:100%;display:block;background:#fff none;-webkit-appearance:none}.x-item-selected .x-list-label{padding-right:1.85em;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}.x-item-selected .x-list-selected:before{border-color:#262626;margin-top:-0.85em}.x-item-selected .x-list-selected:after{border-color:#ddd}.x-field{overflow:hidden;position:relative;min-height:2.5em;border-bottom:1px solid #ddd}.x-field input,.x-field textarea,.x-field select,.x-field .x-field-slider{-webkit-border-radius:0;border-radius:0;padding:.4em;border:0}.x-field:last-child{border-bottom:0}.x-field-mask{position:absolute;top:0;right:0;bottom:0;left:0}.x-form-fieldset{margin:1em 0 1.5em}.x-form-fieldset .x-panel-body{border:1px solid #ddd;padding:0;-webkit-box-shadow:rgba(255,255,255,0.7) 0 1px 0;-webkit-border-radius:0.4em;border-radius:0.4em;overflow:hidden}.x-form-fieldset-title{text-shadow:#fff 0 1px 1px;color:#333;margin:1em 0.7em 0.3em;color:#333;font-weight:bold}.x-form-fieldset-instructions{text-shadow:#fff 0 1px 1px;color:#333;color:gray;margin:1em 0.7em 0.3em;font-size:.8em;text-align:center}.x-form-label{text-shadow:#fff 0 1px 1px;color:#333;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;background-color:#f7f7f7;padding:0.6em;border-top:1px solid #fff;display:block}.x-form-label span{font-size:.8em;font-weight:bold}.x-form-field-container{-webkit-box-flex:1;box-flex:1;width:100%;position:relative}.x-field{display:-webkit-box;display:box}.x-input-text,.x-input,.x-input-number,.x-spinner-body,.x-input-radio,.x-input-checkbox,.x-input-email,.x-input-url,.x-input-password,.x-input-slider{-webkit-box-flex:1;box-flex:1}.x-label-align-left,.x-label-align-right{-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:stretch;box-align:stretch}.x-form-fieldset .x-field:first-child,.x-form-fieldset .x-field:first-child > :first-child:not(.x-input-toggle),.x-form-fieldset .x-field:first-child > :first-child input,.x-form-fieldset .x-field:first-child > :first-child textarea{-webkit-border-top-left-radius:0.4em;border-top-left-radius:0.4em}.x-form-fieldset .x-field:first-child,.x-form-fieldset .x-field:first-child > :last-child:not(.x-input-toggle),.x-form-fieldset .x-field:first-child > :last-child input,.x-form-fieldset .x-field:first-child > :last-child textarea{-webkit-border-top-right-radius:0.4em;border-top-right-radius:0.4em}.x-form-fieldset .x-field:last-child,.x-form-fieldset .x-field:last-child > :first-child:not(.x-input-toggle),.x-form-fieldset .x-field:last-child > :first-child input,.x-form-fieldset .x-field:last-child > :first-child textarea{-webkit-border-bottom-left-radius:0.4em;border-bottom-left-radius:0.4em}.x-form-fieldset .x-field:last-child,.x-form-fieldset .x-field:last-child > :last-child:not(.x-input-toggle),.x-form-fieldset .x-field:last-child > :last-child input,.x-form-fieldset .x-field:last-child > :last-child textarea{-webkit-border-bottom-right-radius:0.4em;border-bottom-right-radius:0.4em}.x-label-align-right{-webkit-box-direction:reverse;box-direction:reverse;-webkit-box-pack:end;box-pack:end}.x-form-fieldset .x-label-align-right:first-child .x-form-label{-webkit-border-top-right-radius:0.4em;border-top-right-radius:0.4em}.x-form-fieldset .x-label-align-right:first-child .x-input-text,.x-form-fieldset .x-label-align-right:first-child .x-input,.x-form-fieldset .x-label-align-right:first-child .x-input-number,.x-form-fieldset .x-label-align-right:first-child .x-spinner-body,.x-form-fieldset .x-label-align-right:first-child .x-input-radio,.x-form-fieldset .x-label-align-right:first-child .x-input-checkbox,.x-form-fieldset .x-label-align-right:first-child .x-input-email,.x-form-fieldset .x-label-align-right:first-child .x-input-url,.x-form-fieldset .x-label-align-right:first-child .x-input-password,.x-form-fieldset .x-label-align-right:first-child .x-input-slider{-webkit-border-top-right-radius:0;border-top-right-radius:0}.x-form-fieldset .x-label-align-right:last-child .x-form-label{-webkit-border-bottom-right-radius:0.4em;border-bottom-right-radius:0.4em}.x-form-fieldset .x-label-align-right:last-child .x-input-text,.x-form-fieldset .x-label-align-right:last-child .x-input,.x-form-fieldset .x-label-align-right:last-child .x-input-number,.x-form-fieldset .x-label-align-right:last-child .x-spinner-body,.x-form-fieldset .x-label-align-right:last-child .x-input-radio,.x-form-fieldset .x-label-align-right:last-child .x-input-checkbox,.x-form-fieldset .x-label-align-right:last-child .x-input-email,.x-form-fieldset .x-label-align-right:last-child .x-input-url,.x-form-fieldset .x-label-align-right:last-child .x-input-password,.x-form-fieldset .x-label-align-right:last-child .x-input-slider{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0}.x-label-align-top,.x-label-align-bottom{-webkit-box-orient:vertical;box-orient:vertical}.x-label-align-bottom{-webkit-box-direction:reverse;box-direction:reverse}.x-field-required label:after,.x-field-required .x-form-label:after{content:"*";display:inline}.x-field-select:before,.x-field-select:after{pointer-events:none;position:absolute;display:block;right:0}.x-field-select:after{content:"";position:absolute;width:0;height:0;top:0;left:auto;margin:1em;border:.4em solid transparent;border-top-color:#ddd;z-index:2}.x-field-select.x-label-align-top:after{top:auto;bottom:0}.x-field-select:before{content:"";position:absolute;width:4em;height:auto;top:0;left:auto;bottom:0;z-index:1;-webkit-border-top-right-radius:inherit;border-top-right-radius:inherit;-webkit-border-bottom-right-radius:inherit;border-bottom-right-radius:inherit;background:-webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(255,255,255,0)), color-stop(0.5, #fff))}.x-item-disabled .x-form-label span,.x-item-disabled input,.x-item-disabled .x-spinner-body,.x-item-disabled select,.x-item-disabled textarea,.x-item-disabled .x-field-clear-container{color:#b3b3b3}.x-field-textarea textarea{min-height:6em;padding-top:.5em}.x-field .x-input-radio:after,.x-field .x-input-checkbox:after{border-color:#ddd}.x-field .x-input-radio:checked:after,.x-field .x-input-checkbox:checked:after{border-color:red}.x-label-align-right .x-input-radio:after,.x-label-align-right .x-input-checkbox:after{right:auto;left:0.6em}.x-spinner{border-bottom:1px solid #ddd}.x-spinner .x-spinner-body{display:-webkit-box;display:box;-webkit-box-direction:normal;box-direction:normal}.x-spinner-body{-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:stretch;box-align:stretch;width:100%;text-align:center}.x-spinner-body span{font-size:1.3em;font-weight:bold;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-spinner-body .x-form-field-container{width:3em}.x-spinner-body input{padding:0;border-right:0;border-left:0;-webkit-border-radius:0;border-radius:0;border-color:#ddd;text-align:center}.x-spinner-body .x-spinner-down,.x-spinner-body .x-spinner-up{-webkit-box-flex:1;box-flex:1;font-weight:bold;padding:.3em 0}.x-spinner-body .x-spinner-down,.x-toolbar .x-spinner-body .x-spinner-down,.x-spinner-body .x-spinner-up,.x-toolbar .x-spinner-body .x-spinner-up{border:0.1em solid #aaa;border-top-color:#b7b7b7;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-spinner-body .x-spinner-down.x-button-back:before,.x-spinner-body .x-spinner-down.x-button-forward:before,.x-toolbar .x-spinner-body .x-spinner-down.x-button-back:before,.x-toolbar .x-spinner-body .x-spinner-down.x-button-forward:before,.x-spinner-body .x-spinner-up.x-button-back:before,.x-spinner-body .x-spinner-up.x-button-forward:before,.x-toolbar .x-spinner-body .x-spinner-up.x-button-back:before,.x-toolbar .x-spinner-body .x-spinner-up.x-button-forward:before{background:#aaa}.x-spinner-body .x-spinner-down,.x-spinner-body .x-spinner-down.x-button-back:after,.x-spinner-body .x-spinner-down.x-button-forward:after,.x-toolbar .x-spinner-body .x-spinner-down,.x-toolbar .x-spinner-body .x-spinner-down.x-button-back:after,.x-toolbar .x-spinner-body .x-spinner-down.x-button-forward:after,.x-spinner-body .x-spinner-up,.x-spinner-body .x-spinner-up.x-button-back:after,.x-spinner-body .x-spinner-up.x-button-forward:after,.x-toolbar .x-spinner-body .x-spinner-up,.x-toolbar .x-spinner-body .x-spinner-up.x-button-back:after,.x-toolbar .x-spinner-body .x-spinner-up.x-button-forward:after{background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #efefef), color-stop(100%, #cbcbcb));background-image:-webkit-linear-gradient(#ffffff,#efefef 2%,#cbcbcb);background-image:linear-gradient(#ffffff,#efefef 2%,#cbcbcb)}.x-spinner-body .x-spinner-down img.x-icon-mask,.x-toolbar .x-spinner-body .x-spinner-down img.x-icon-mask,.x-spinner-body .x-spinner-up img.x-icon-mask,.x-toolbar .x-spinner-body .x-spinner-up img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-spinner-body .x-spinner-down.x-button-pressed,.x-spinner-body .x-spinner-down.x-button-active,.x-toolbar .x-spinner-body .x-spinner-down.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-down.x-button-active,.x-spinner-body .x-spinner-up.x-button-pressed,.x-spinner-body .x-spinner-up.x-button-active,.x-toolbar .x-spinner-body .x-spinner-up.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-up.x-button-active{-webkit-box-shadow:inset #bab3b3 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-spinner-body .x-spinner-down.x-button-pressed,.x-spinner-body .x-spinner-down.x-button-pressed:after,.x-spinner-body .x-spinner-down.x-button-active,.x-spinner-body .x-spinner-down.x-button-active:after,.x-toolbar .x-spinner-body .x-spinner-down.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-down.x-button-pressed:after,.x-toolbar .x-spinner-body .x-spinner-down.x-button-active,.x-toolbar .x-spinner-body .x-spinner-down.x-button-active:after,.x-spinner-body .x-spinner-up.x-button-pressed,.x-spinner-body .x-spinner-up.x-button-pressed:after,.x-spinner-body .x-spinner-up.x-button-active,.x-spinner-body .x-spinner-up.x-button-active:after,.x-toolbar .x-spinner-body .x-spinner-up.x-button-pressed,.x-toolbar .x-spinner-body .x-spinner-up.x-button-pressed:after,.x-toolbar .x-spinner-body .x-spinner-up.x-button-active,.x-toolbar .x-spinner-body .x-spinner-up.x-button-active:after{background-color:#cbcbcb;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2b2b2), color-stop(10%, #bebebe), color-stop(65%, #cbcbcb), color-stop(100%, #cccccc));background-image:-webkit-linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc);background-image:linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc)}.x-spinner-body .x-spinner-down{border-left:0}.x-spinner-body .x-spinner-up{border-right:0}.x-field-clear-container{min-height:2.5em;background-color:#fff;display:-webkit-box;display:box;-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-box-align:center;box-align:center;-webkit-box-pack:center;box-pack:center;padding:0 .3em}.x-android .x-field-clear{line-height:1.2em;padding:0 .3em}.x-field-clear{width:1.1em;height:1.1em;-webkit-border-radius:0.55em;border-radius:0.55em;background-color:rgba(0,0,0,0.15);color:#fff;font-weight:bold;line-height:.9em;text-align:center;padding:0 .27em}.x-field-clearable input.x-field-clearable{padding-right:1.7em}.x-label-align-top .x-field-clear{top:auto;bottom:.7em}.x-label-align-right .x-field-clear{top:0.6em;right:0.6em}.x-slider{position:relative;height:2.2em;margin:0.6em;min-height:0}.x-thumb{position:absolute;height:2.2em;width:2.2em}.x-thumb:before{content:"";position:absolute;width:1.85em;height:1.85em;top:0.175em;left:0.175em;border:0.1em solid #919191;-webkit-border-radius:0.925em;border-radius:0.925em;background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #efefef), color-stop(100%, #cbcbcb));background-image:-webkit-linear-gradient(#ffffff,#efefef 2%,#cbcbcb);background-image:linear-gradient(#ffffff,#efefef 2%,#cbcbcb);-webkit-box-shadow:inset rgba(255,255,255,0.5) 0 0 0.1em,inset rgba(255,255,255,0.3) 0 -0.1em 0;-webkit-background-clip:padding;background-clip:padding-box}.x-thumb.x-dragging{opacity:1}.x-thumb.x-dragging:before{background-color:#d0d0d0;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #e2e2e2), color-stop(100%, #bebebe));background-image:-webkit-linear-gradient(#ffffff,#e2e2e2 2%,#bebebe);background-image:linear-gradient(#ffffff,#e2e2e2 2%,#bebebe)}.x-input-slider{width:auto}.x-input-slider:after{content:"";position:absolute;width:auto;height:0.8em;top:0.737em;left:0;right:0;margin:0 0.925em;background-color:#ddd;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(#c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:linear-gradient(#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;-webkit-border-radius:0.4em;border-radius:0.4em}.x-field-toggle,.x-field-slider{background-color:#fff}.x-field-toggle .x-slider{width:4.4em;-webkit-border-radius:1.1em;border-radius:1.1em;overflow:hidden;border:0.1em solid #b7b7b7;background-color:#ddd;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(#c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);background-image:linear-gradient(#c4c4c4,#d0d0d0 10%,#dddddd 65%,#dedede);z-index:2}.x-field-toggle .x-slider .x-thumb .x-toggle-thumb-off,.x-field-toggle .x-slider .x-thumb .x-toggle-thumb-on{display:none}.x-field-toggle .x-slider .x-thumb.x-dragging{opacity:1}.x-field-toggle .x-slider .x-thumb:before{top:0.175em}.x-field-toggle .x-slider.x-toggle-on{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(#6e9c00,#80b500 10%,#92cf00 65%,#94d200);background-image:linear-gradient(#6e9c00,#80b500 10%,#92cf00 65%,#94d200)}.x-select-overlay{min-width:200px}div.x-sheet.x-msgbox{width:15em;-webkit-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 maroon}div.x-sheet.x-msgbox .x-toolbar-title{font-size:.9em;line-height:1.4em}div.x-sheet.x-msgbox .x-toolbar{background:transparent none;-webkit-box-shadow:none}div.x-sheet.x-msgbox .x-toolbar.x-docked-top{border-bottom:0;height:1.3em}div.x-sheet.x-msgbox .x-toolbar.x-docked-bottom{border-top:0}.x-msgbox-body{padding:6px 0;position:relative;text-align:center}.x-msgbox-text{font-size:.9em}.x-msgbox-buttons .x-button{min-width:4.5em}.x-msgbox-buttons .x-button-normal span{opacity:.7}.x-msgbox-input{margin-top:.4em;-webkit-appearance:none;-webkit-border-radius:0.2em;border-radius:0.2em}.x-msgbox-dark .x-msgbox-text{color:rgba(255,153,153,0.9);text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-msgbox-dark .x-msgbox-input{background-color:rgba(255,153,153,0.9);background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255,102,102,0.9)), color-stop(10%, rgba(255,128,128,0.9)), color-stop(65%, rgba(255,153,153,0.9)), color-stop(100%, rgba(255,156,156,0.9)));background-image:-webkit-linear-gradient(rgba(255,102,102,0.9),rgba(255,128,128,0.9) 10%,rgba(255,153,153,0.9) 65%,rgba(255,156,156,0.9));background-image:linear-gradient(rgba(255,102,102,0.9),rgba(255,128,128,0.9) 10%,rgba(255,153,153,0.9) 65%,rgba(255,156,156,0.9));border:0.1em solid rgba(204,0,0,0.9)}.x-loading-spinner{font-size:250%;height:1em;width:1em;position:relative;-webkit-transform-origin:0.5em 0.5em}.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:" "}.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{left:50%;margin-left:-0.05em}.x-loading-spinner > span.x-loading-top{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg)}.x-loading-spinner > span.x-loading-right{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg)}.x-loading-spinner > span.x-loading-bottom{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg)}.x-loading-spinner > span.x-loading-left{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg)}.x-loading-spinner > span::before{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg)}.x-loading-spinner > span::after{-webkit-transform:rotate(-30deg);-moz-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}@-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)}}.x-toolbar-maroon{background-color:maroon;background-image:none;border-color:#000}.x-toolbar-maroon .x-toolbar-title{color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0}.x-toolbar-maroon .x-button,.x-toolbar .x-toolbar-maroon .x-button,.x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar-maroon .x-field-select:before,.x-toolbar .x-toolbar-maroon .x-field-select:before{border:0.1em solid #000;border-top-color:#000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-maroon .x-button.x-button-back:before,.x-toolbar-maroon .x-button.x-button-forward:before,.x-toolbar .x-toolbar-maroon .x-button.x-button-back:before,.x-toolbar .x-toolbar-maroon .x-button.x-button-forward:before,.x-toolbar-maroon .x-field-select .x-input-text.x-button-back:before,.x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-maroon .x-field-select:before.x-button-back:before,.x-toolbar-maroon .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-forward:before{background:#000}.x-toolbar-maroon .x-button,.x-toolbar-maroon .x-button.x-button-back:after,.x-toolbar-maroon .x-button.x-button-forward:after,.x-toolbar .x-toolbar-maroon .x-button,.x-toolbar .x-toolbar-maroon .x-button.x-button-back:after,.x-toolbar .x-toolbar-maroon .x-button.x-button-forward:after,.x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar-maroon .x-field-select .x-input-text.x-button-back:after,.x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-maroon .x-field-select:before,.x-toolbar-maroon .x-field-select:before.x-button-back:after,.x-toolbar-maroon .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-maroon .x-field-select:before,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-forward:after{background-color:#4d0000;background-image:none}.x-toolbar-maroon .x-button img.x-icon-mask,.x-toolbar .x-toolbar-maroon .x-button img.x-icon-mask,.x-toolbar-maroon .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-maroon .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-maroon .x-field-select:before img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar-maroon .x-button.x-button-active,.x-toolbar .x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-button.x-button-active,.x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar-maroon .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-active{-webkit-box-shadow:inset #000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar-maroon .x-button.x-button-pressed:after,.x-toolbar-maroon .x-button.x-button-active,.x-toolbar-maroon .x-button.x-button-active:after,.x-toolbar .x-toolbar-maroon .x-button.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-maroon .x-button.x-button-active,.x-toolbar .x-toolbar-maroon .x-button.x-button-active:after,.x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar-maroon .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select .x-input-text.x-button-active:after,.x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar-maroon .x-field-select:before.x-button-pressed:after,.x-toolbar-maroon .x-field-select:before.x-button-active,.x-toolbar-maroon .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-maroon .x-field-select:before.x-button-active:after{background-color:#290000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #000000), color-stop(10%, #100000), color-stop(65%, #290000), color-stop(100%, #2c0000));background-image:-webkit-linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000);background-image:linear-gradient(#000000,#100000 10%,#290000 65%,#2c0000)}.x-toolbar-white{background-color:#ddd;background-image:none;border-color:#5e5e5e}.x-toolbar-white .x-toolbar-title{color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0}.x-toolbar-white .x-button,.x-toolbar .x-toolbar-white .x-button,.x-toolbar-white .x-field-select .x-input-text,.x-toolbar .x-toolbar-white .x-field-select .x-input-text,.x-toolbar-white .x-field-select:before,.x-toolbar .x-toolbar-white .x-field-select:before{border:0.1em solid #919191;border-top-color:#9d9d9d;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-white .x-button.x-button-back:before,.x-toolbar-white .x-button.x-button-forward:before,.x-toolbar .x-toolbar-white .x-button.x-button-back:before,.x-toolbar .x-toolbar-white .x-button.x-button-forward:before,.x-toolbar-white .x-field-select .x-input-text.x-button-back:before,.x-toolbar-white .x-field-select .x-input-text.x-button-forward:before,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-back:before,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-forward:before,.x-toolbar-white .x-field-select:before.x-button-back:before,.x-toolbar-white .x-field-select:before.x-button-forward:before,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-back:before,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-forward:before{background:#919191}.x-toolbar-white .x-button,.x-toolbar-white .x-button.x-button-back:after,.x-toolbar-white .x-button.x-button-forward:after,.x-toolbar .x-toolbar-white .x-button,.x-toolbar .x-toolbar-white .x-button.x-button-back:after,.x-toolbar .x-toolbar-white .x-button.x-button-forward:after,.x-toolbar-white .x-field-select .x-input-text,.x-toolbar-white .x-field-select .x-input-text.x-button-back:after,.x-toolbar-white .x-field-select .x-input-text.x-button-forward:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-back:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-forward:after,.x-toolbar-white .x-field-select:before,.x-toolbar-white .x-field-select:before.x-button-back:after,.x-toolbar-white .x-field-select:before.x-button-forward:after,.x-toolbar .x-toolbar-white .x-field-select:before,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-back:after,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-forward:after{background-color:#c4c4c4;background-image:none}.x-toolbar-white .x-button img.x-icon-mask,.x-toolbar .x-toolbar-white .x-button img.x-icon-mask,.x-toolbar-white .x-field-select .x-input-text img.x-icon-mask,.x-toolbar .x-toolbar-white .x-field-select .x-input-text img.x-icon-mask,.x-toolbar-white .x-field-select:before img.x-icon-mask,.x-toolbar .x-toolbar-white .x-field-select:before img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-toolbar-white .x-button.x-button-pressed,.x-toolbar-white .x-button.x-button-active,.x-toolbar .x-toolbar-white .x-button.x-button-pressed,.x-toolbar .x-toolbar-white .x-button.x-button-active,.x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar-white .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-active{-webkit-box-shadow:inset #a29898 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-toolbar-white .x-button.x-button-pressed,.x-toolbar-white .x-button.x-button-pressed:after,.x-toolbar-white .x-button.x-button-active,.x-toolbar-white .x-button.x-button-active:after,.x-toolbar .x-toolbar-white .x-button.x-button-pressed,.x-toolbar .x-toolbar-white .x-button.x-button-pressed:after,.x-toolbar .x-toolbar-white .x-button.x-button-active,.x-toolbar .x-toolbar-white .x-button.x-button-active:after,.x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar-white .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar-white .x-field-select .x-input-text.x-button-active:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-pressed:after,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-active,.x-toolbar .x-toolbar-white .x-field-select .x-input-text.x-button-active:after,.x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar-white .x-field-select:before.x-button-pressed:after,.x-toolbar-white .x-field-select:before.x-button-active,.x-toolbar-white .x-field-select:before.x-button-active:after,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-pressed,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-pressed:after,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-active,.x-toolbar .x-toolbar-white .x-field-select:before.x-button-active:after{background-color:#b2b2b2;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #989898), color-stop(10%, #a5a5a5), color-stop(65%, #b2b2b2), color-stop(100%, #b3b3b3));background-image:-webkit-linear-gradient(#989898,#a5a5a5 10%,#b2b2b2 65%,#b3b3b3);background-image:linear-gradient(#989898,#a5a5a5 10%,#b2b2b2 65%,#b3b3b3)}.x-button.x-button-maroon,.x-toolbar .x-button.x-button-maroon,.x-button.x-button-maroon-round,.x-toolbar .x-button.x-button-maroon-round,.x-button.x-button-maroon-small,.x-toolbar .x-button.x-button-maroon-small{border:0.1em solid #1a0000;border-top-color:#340000;color:#fff;text-shadow:rgba(0,0,0,0.5) 0 -0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-maroon.x-button-back:before,.x-button.x-button-maroon.x-button-forward:before,.x-toolbar .x-button.x-button-maroon.x-button-back:before,.x-toolbar .x-button.x-button-maroon.x-button-forward:before,.x-button.x-button-maroon-round.x-button-back:before,.x-button.x-button-maroon-round.x-button-forward:before,.x-toolbar .x-button.x-button-maroon-round.x-button-back:before,.x-toolbar .x-button.x-button-maroon-round.x-button-forward:before,.x-button.x-button-maroon-small.x-button-back:before,.x-button.x-button-maroon-small.x-button-forward:before,.x-toolbar .x-button.x-button-maroon-small.x-button-back:before,.x-toolbar .x-button.x-button-maroon-small.x-button-forward:before{background:#1a0000}.x-button.x-button-maroon,.x-button.x-button-maroon.x-button-back:after,.x-button.x-button-maroon.x-button-forward:after,.x-toolbar .x-button.x-button-maroon,.x-toolbar .x-button.x-button-maroon.x-button-back:after,.x-toolbar .x-button.x-button-maroon.x-button-forward:after,.x-button.x-button-maroon-round,.x-button.x-button-maroon-round.x-button-back:after,.x-button.x-button-maroon-round.x-button-forward:after,.x-toolbar .x-button.x-button-maroon-round,.x-toolbar .x-button.x-button-maroon-round.x-button-back:after,.x-toolbar .x-button.x-button-maroon-round.x-button-forward:after,.x-button.x-button-maroon-small,.x-button.x-button-maroon-small.x-button-back:after,.x-button.x-button-maroon-small.x-button-forward:after,.x-toolbar .x-button.x-button-maroon-small,.x-toolbar .x-button.x-button-maroon-small.x-button-back:after,.x-toolbar .x-button.x-button-maroon-small.x-button-forward:after{background-color:maroon;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff1a1a), color-stop(2%, #a40000), color-stop(100%, #5c0000));background-image:-webkit-linear-gradient(#ff1a1a,#a40000 2%,#5c0000);background-image:linear-gradient(#ff1a1a,#a40000 2%,#5c0000)}.x-button.x-button-maroon img.x-icon-mask,.x-toolbar .x-button.x-button-maroon img.x-icon-mask,.x-button.x-button-maroon-round img.x-icon-mask,.x-toolbar .x-button.x-button-maroon-round img.x-icon-mask,.x-button.x-button-maroon-small img.x-icon-mask,.x-toolbar .x-button.x-button-maroon-small img.x-icon-mask{background-color:#fff;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #ffffff), color-stop(100%, #ffdbdb));background-image:-webkit-linear-gradient(#ffffff,#ffffff 2%,#ffdbdb);background-image:linear-gradient(#ffffff,#ffffff 2%,#ffdbdb)}.x-button.x-button-maroon.x-button-pressed,.x-button.x-button-maroon.x-button-active,.x-toolbar .x-button.x-button-maroon.x-button-pressed,.x-toolbar .x-button.x-button-maroon.x-button-active,.x-button.x-button-maroon-round.x-button-pressed,.x-button.x-button-maroon-round.x-button-active,.x-toolbar .x-button.x-button-maroon-round.x-button-pressed,.x-toolbar .x-button.x-button-maroon-round.x-button-active,.x-button.x-button-maroon-small.x-button-pressed,.x-button.x-button-maroon-small.x-button-active,.x-toolbar .x-button.x-button-maroon-small.x-button-pressed,.x-toolbar .x-button.x-button-maroon-small.x-button-active{-webkit-box-shadow:inset #340000 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-maroon.x-button-pressed,.x-button.x-button-maroon.x-button-pressed:after,.x-button.x-button-maroon.x-button-active,.x-button.x-button-maroon.x-button-active:after,.x-toolbar .x-button.x-button-maroon.x-button-pressed,.x-toolbar .x-button.x-button-maroon.x-button-pressed:after,.x-toolbar .x-button.x-button-maroon.x-button-active,.x-toolbar .x-button.x-button-maroon.x-button-active:after,.x-button.x-button-maroon-round.x-button-pressed,.x-button.x-button-maroon-round.x-button-pressed:after,.x-button.x-button-maroon-round.x-button-active,.x-button.x-button-maroon-round.x-button-active:after,.x-toolbar .x-button.x-button-maroon-round.x-button-pressed,.x-toolbar .x-button.x-button-maroon-round.x-button-pressed:after,.x-toolbar .x-button.x-button-maroon-round.x-button-active,.x-toolbar .x-button.x-button-maroon-round.x-button-active:after,.x-button.x-button-maroon-small.x-button-pressed,.x-button.x-button-maroon-small.x-button-pressed:after,.x-button.x-button-maroon-small.x-button-active,.x-button.x-button-maroon-small.x-button-active:after,.x-toolbar .x-button.x-button-maroon-small.x-button-pressed,.x-toolbar .x-button.x-button-maroon-small.x-button-pressed:after,.x-toolbar .x-button.x-button-maroon-small.x-button-active,.x-toolbar .x-button.x-button-maroon-small.x-button-active:after{background-color:#5c0000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #290000), color-stop(10%, #430000), color-stop(65%, #5c0000), color-stop(100%, #5f0000));background-image:-webkit-linear-gradient(#290000,#430000 10%,#5c0000 65%,#5f0000);background-image:linear-gradient(#290000,#430000 10%,#5c0000 65%,#5f0000)}.x-button.x-button-white,.x-toolbar .x-button.x-button-white,.x-button.x-button-white-round,.x-toolbar .x-button.x-button-white-round,.x-button.x-button-white-small,.x-toolbar .x-button.x-button-white-small{border:0.1em solid #aaa;border-top-color:#b7b7b7;color:#000;text-shadow:rgba(255,255,255,0.25) 0 0.08em 0;-webkit-box-shadow:rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-white.x-button-back:before,.x-button.x-button-white.x-button-forward:before,.x-toolbar .x-button.x-button-white.x-button-back:before,.x-toolbar .x-button.x-button-white.x-button-forward:before,.x-button.x-button-white-round.x-button-back:before,.x-button.x-button-white-round.x-button-forward:before,.x-toolbar .x-button.x-button-white-round.x-button-back:before,.x-toolbar .x-button.x-button-white-round.x-button-forward:before,.x-button.x-button-white-small.x-button-back:before,.x-button.x-button-white-small.x-button-forward:before,.x-toolbar .x-button.x-button-white-small.x-button-back:before,.x-toolbar .x-button.x-button-white-small.x-button-forward:before{background:#aaa}.x-button.x-button-white,.x-button.x-button-white.x-button-back:after,.x-button.x-button-white.x-button-forward:after,.x-toolbar .x-button.x-button-white,.x-toolbar .x-button.x-button-white.x-button-back:after,.x-toolbar .x-button.x-button-white.x-button-forward:after,.x-button.x-button-white-round,.x-button.x-button-white-round.x-button-back:after,.x-button.x-button-white-round.x-button-forward:after,.x-toolbar .x-button.x-button-white-round,.x-toolbar .x-button.x-button-white-round.x-button-back:after,.x-toolbar .x-button.x-button-white-round.x-button-forward:after,.x-button.x-button-white-small,.x-button.x-button-white-small.x-button-back:after,.x-button.x-button-white-small.x-button-forward:after,.x-toolbar .x-button.x-button-white-small,.x-toolbar .x-button.x-button-white-small.x-button-back:after,.x-toolbar .x-button.x-button-white-small.x-button-forward:after{background-color:#ddd;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(2%, #efefef), color-stop(100%, #cbcbcb));background-image:-webkit-linear-gradient(#ffffff,#efefef 2%,#cbcbcb);background-image:linear-gradient(#ffffff,#efefef 2%,#cbcbcb)}.x-button.x-button-white img.x-icon-mask,.x-toolbar .x-button.x-button-white img.x-icon-mask,.x-button.x-button-white-round img.x-icon-mask,.x-toolbar .x-button.x-button-white-round img.x-icon-mask,.x-button.x-button-white-small img.x-icon-mask,.x-toolbar .x-button.x-button-white-small img.x-icon-mask{background-color:#000;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(2%, #121212), color-stop(100%, #000000));background-image:-webkit-linear-gradient(#4d4d4d,#121212 2%,#000000);background-image:linear-gradient(#4d4d4d,#121212 2%,#000000)}.x-button.x-button-white.x-button-pressed,.x-button.x-button-white.x-button-active,.x-toolbar .x-button.x-button-white.x-button-pressed,.x-toolbar .x-button.x-button-white.x-button-active,.x-button.x-button-white-round.x-button-pressed,.x-button.x-button-white-round.x-button-active,.x-toolbar .x-button.x-button-white-round.x-button-pressed,.x-toolbar .x-button.x-button-white-round.x-button-active,.x-button.x-button-white-small.x-button-pressed,.x-button.x-button-white-small.x-button-active,.x-toolbar .x-button.x-button-white-small.x-button-pressed,.x-toolbar .x-button.x-button-white-small.x-button-active{-webkit-box-shadow:inset #bab3b3 0 0 0.1em,rgba(255,255,255,0.1) 0 0.1em 0}.x-button.x-button-white.x-button-pressed,.x-button.x-button-white.x-button-pressed:after,.x-button.x-button-white.x-button-active,.x-button.x-button-white.x-button-active:after,.x-toolbar .x-button.x-button-white.x-button-pressed,.x-toolbar .x-button.x-button-white.x-button-pressed:after,.x-toolbar .x-button.x-button-white.x-button-active,.x-toolbar .x-button.x-button-white.x-button-active:after,.x-button.x-button-white-round.x-button-pressed,.x-button.x-button-white-round.x-button-pressed:after,.x-button.x-button-white-round.x-button-active,.x-button.x-button-white-round.x-button-active:after,.x-toolbar .x-button.x-button-white-round.x-button-pressed,.x-toolbar .x-button.x-button-white-round.x-button-pressed:after,.x-toolbar .x-button.x-button-white-round.x-button-active,.x-toolbar .x-button.x-button-white-round.x-button-active:after,.x-button.x-button-white-small.x-button-pressed,.x-button.x-button-white-small.x-button-pressed:after,.x-button.x-button-white-small.x-button-active,.x-button.x-button-white-small.x-button-active:after,.x-toolbar .x-button.x-button-white-small.x-button-pressed,.x-toolbar .x-button.x-button-white-small.x-button-pressed:after,.x-toolbar .x-button.x-button-white-small.x-button-active,.x-toolbar .x-button.x-button-white-small.x-button-active:after{background-color:#cbcbcb;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2b2b2), color-stop(10%, #bebebe), color-stop(65%, #cbcbcb), color-stop(100%, #cccccc));background-image:-webkit-linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc);background-image:linear-gradient(#b2b2b2,#bebebe 10%,#cbcbcb 65%,#cccccc)}.readonlyform .x-input-text{color:#000}.x-form-field-container{background-color:#FFF}.imageButton{font-weight:bold;text-align:center}.imageButton > div{font-size:200%;position:relative;left:50% !important}.imageButton > div > *{position:relative;left:-50%}.imageButton > div > img{width:auto;height:1.5em;margin:auto} diff --git a/sencha/resources/themes/stylesheets/upsstyle/_studentinfo.scss b/sencha/resources/themes/stylesheets/upsstyle/_studentinfo.scss new file mode 100644 index 0000000..5b6eae7 --- /dev/null +++ b/sencha/resources/themes/stylesheets/upsstyle/_studentinfo.scss @@ -0,0 +1,31 @@ +.student-info { + color:$text-color; + p { + margin:0 5px; + line-height:150%; + } + hr { + border: 2px solid darken($base-color, 10%); + } + b { + text-shadow: #000 4px 4px 5px; + } + b.large { + font-size:64px; + line-height:80px; + } + b.medium { + font-size:32px; + line-height:50px; + } + b.small { + font-size:20px; + line-height:30px; + } + .dinerdollars{ + .value { + font-size:64px; + } + + } +} \ No newline at end of file diff --git a/sencha/resources/upsstyle/.sass-cache/9b674e4a5cc1c95889b7de450ab92b9d75a4c9f4/_studentinfo.scssc b/sencha/resources/upsstyle/.sass-cache/9b674e4a5cc1c95889b7de450ab92b9d75a4c9f4/_studentinfo.scssc new file mode 100644 index 0000000000000000000000000000000000000000..eda826359097c1a416471c871e020a820206c850 GIT binary patch literal 3275 zcmbVO&2HO95Vnefk}1hD75^l*6SJ}lBt8HoD_Fa% z&Y1WqVqt0`uzg`dA25$a8eZ+Avh}O&jR`}$(z)IsqG5v2&vry@$0Mt_(rwfda+@4w zN?X=Aa7h#oSVY__ZdJ)#WinNZg$ZRre7^$jc{Cujh;_Px3@ZeeuHw5Ov2Rf+AUELk z3O3++-7*+1R&a^OsfFA@t^)T(hRYRP;pb)Fj;?7SF0)`$zk5kUgX zO2FqXB&bF?ZgfaV#J?qM*YPv;{Z;w>^gHX^=c5s!*P}#z3~va-tH+(zx8i6MZ#`m2 z7iR`7p}IA)56t)N9{FWVf&nR^s^t^k0i=0m zyqpzIUg~h|-Mu4uEKxXlfkuF$EuV!*wh{Ih4 zZ};(YhF{36z`HVs@SfVgROyiN_=;yi1@CtoDfzImdh!tdr^weF0ivwj9QW&@jl?6{ zWj87TR7Gtbv|26mG`tl*Rkir>>RMN@)s_rFc_SjID1e5#$gEQbilQ1pOV9r|$4Q(h0>Wd%%hf@~w5Y#6Sut{cT z?Z<-`sw6vso*`gR(6S1@16Z?*DcGt`(6xII_6Z9M_E ztqeE(or0*Gi`JkZVHN%WjAj>87(r^qKJ^`;9iZ{#u$GBD2J1g#_;4$4h2woG59h4s|>G*#^Ti(&^SQu_7G z2ZQcUf`|BEV-^0+7Q7c2^wpAfjk)-_Zm##j#wz?HEQ*CRuPtkSYJTK1mO-_=dDvKm zf8{A(fO&X!5(3kNoxrH~)t`l_8PvSjO;b#M=rEfUF&u{C$~5K3hQvU|&rLHoTp>PA z@zV$RjUuHY=LBRzYcR#bY|6Lx^pbJzVM451s J;n4>&{{v=mBZ2?` literal 0 HcmV?d00001 diff --git a/sencha/resources/upsstyle/.sass-cache/bf414ce3788696eeda45713e64a42669498cb27d/upsstyle.scssc b/sencha/resources/upsstyle/.sass-cache/bf414ce3788696eeda45713e64a42669498cb27d/upsstyle.scssc index a865f540941eb9e510b324b8486b2be2b3ab00cd..dcefe6298c099b4ab99c3c7d431ad02b1cb89386 100644 GIT binary patch delta 1997 zcmaJ?O>7%g5YAiMYkRYf|KmDIlkFys>$V$j65C1qqQtEdgA=7eGyQL5EkZYGU z`;L~n?dUg@+Xkf27<_~V0=}m$eej5>P5Y@*$8io1mBe_bwYzKFX(;Jkqf=8fL)GfK ziA94C%OrjPE;%;gZ-)=|9U=jtzokJ)FFE}$0 zclqEwvU}e-jN70Zw$$!#y6@GR_q3()nIh*`4hoJ3+jc&?JqVo;=sn-0kt4gy%g^PzvU}&yw%k-UD>yeeMRt zc|R1xgeWI~PUH`{dq{$0e`Zk14;1v4(k>f%JMV2ZI=iIe61>qr8kbB?5}u-(V}5k^ zAuqz?{!KImEq(-Y`~pf7=@ydVdw$D1ZQ6#^6kPJfUb&3ZTNVY8$K%^0ICI*xj15xwKGEJHaw%+J|) zIf4Z4focHwjuouPj4XHW8wyri5t=v>fVjs~K3Ar536&NqlamIsZC~nqc;Ra8o zc5K{r>yga9wrSoHM+h^@P^zm+qb5~#%_ysyV(~b|F<=&LYqQETDl#V2l68ttWdvTyn z3M%cYZ&_DUw=rg9IYF_|Dy;cSs0bhU*ZF5`+!fj+zx(IHE4?UWQD9z%g}~aFB~rlC z5{3RaaE;Kv>0d=_uoZj_t;4s$6u)kVFVXOS1?R%0-tc5mU=HA7Bo(kk8s1j!g)(C& zmECPb~LA+U1%`&N`o@FGdn`6LhAn zcFvEJ2F4s$P@65iZ3s#DgSj9On`6aUFTvr9QHgPz_hm8#t>^`K5Q|yRhu_8akaEsl zvd0O6IZ1hXRbaB>_Brl-s)&OCLN0%O>7%Q6wWx_^?G-mY}WBlVmsd0@vmaXan@ePLzAVXrlCPaB_O06%GO?|3${0k zok}QFASxsT5=!+DCnOHNA@zWIKth5O5;p`w;s`}>;6Qrd3@WqhO>G5<%gmei?R($% z-n`ipe5Y~}%*wJRmt{>aD>qtAyzVf7~MGJ$!=`h@77C~Y} zl(1q}5|-b@0Wapa6RceejlH`#h(jcUjgDnZz`M)_T=vYu_a3p79FOJpJ7&NC##pco zj|C?o?EM|3;UDj1vNqVasEjSD7l=cFi=!;u4#d|{X?zQ)DFf< zUVEZqcmr$jrjSN7+!MBhs*|qbq=R>+_6YRz)Ft><^k*uh&bHCfds|b7DNPZqOdo&rE{}r=wUd$#DGY`M{UqC9z zvpGR^WL-Fu^>k42Ul^A~4ytPhJ_zQ7p=rr-oPW;Bk@Ll(QV$~Gyvt+1x=apM!(nL6hv?x;dhquAF@JwDBAr^o^i0wz6R$%rv N%d++`i3aVo;$ND9Mx6iv diff --git a/gradcap.png b/sencha/resources/upsstyle/images/icons/dollarsign.png similarity index 70% rename from gradcap.png rename to sencha/resources/upsstyle/images/icons/dollarsign.png index 972ede10ea359e3fbdf6b5d7cab3f2bf059d6fea..1891f7d5c740e7d98ee2a147f6e8cd4ca5ddad87 100644 GIT binary patch delta 572 zcmV-C0>l0H9n2XaiBL{Q4GJ0x0000DNk~Le0000$0000$2nGNE0IF$m-mxK`3V#9j zNkln+@3Myuvpi^;ga(qC9$DZc zNs~X_4gk70ug(A%00UqEgx8Td17HB22f%+U>jK`}80ni(~b`^+ZZ@nZAGljT(@) ztOAvW+G`I;q#A`t>-iv(m!~L&@AQO~LPpmpiYBN$7sS;J%}f)c{Kd&njB-g|lt<`T z2PE9Bugki{tHq3`*8a8Y0S3ST7ytuc0G3_v^UZvfsJml2tc*B8hD0000< KMNUMnLSTaD1m-ya delta 1131 zcmX>j`CV4AGr-TCmrII^fq{Y7)59f*fq}6J$ezi;1|*f{*rsk&oX1tqqU7n~7*cWT z&0WRp=s=lc5BINFArT^?^g2lG7o*y`75yDER%evn6z@2_(`8C1&n~Bsg-K_64$jc- zS>@;wd-X^{a+Q+&f=6de0ygHPnw#%7uZ*k6(VuhR=f$=q6N~v6u1$Al5MXL&P+(!; zU}SJ&Xb=E0E#13r_y|7Nd?ZxgP^P8ax2h$<-Zh0G>TUH?fjOnSD~;rsFDPAKeDRS} zL7+&b)m)|vO7?mAtqcwvEmXjD;!T(R)c0FkFf4GbzxVC;RcC{qin9OC3>oY7|I0LW zbQmp)caz!b*k$1<`19+#ym>vx8MsSrrOxVIo6o&#v)z)8Kg+Jq{(a_VYTQT5>Zwi_ zmR0&QM_jvqN4zk7s^DRfiR;;#cb=cqy5QAjg3hg{$Ug#1iULf)Kylz;05TLAfQ%Mk zXp)VR&3ooc|99*L+h`K8XcB;T@FV>Ym)}4TG6IwZ3&BeDgxbj7++0N z`qp~j%$XJ(SWd^)##3!|$S_)&_D7?ZIvFqkPO>Pax+1J~@C zK&KIn1vr3;A;g@V+^5}(GI}=Wg#&#tO{8hL=A(E2F6AzAC{{EuUTx1-{e8cr$;Gs# z0t_4MWSANRELa#6fk_jXm>8~I&<7S6|Nk>Hcwd-ptIr*<0?1|XboFyt=akR{0K3X) Ae*gdg diff --git a/sencha/resources/upsstyle/images/icons/gradcap.png b/sencha/resources/upsstyle/images/icons/gradcap.png index 972ede10ea359e3fbdf6b5d7cab3f2bf059d6fea..26f8d230c738aae73fd41d5e6372089958a41aea 100644 GIT binary patch delta 770 zcmew^J5gG(Gr-TCmrII^fq{Y7)59f*fq}6A$WGy41CsMKv)MK(&f}_Q+T-cs7*cWT z&E19G%!v%g9(J=ezidkMU7UHa;9$y3gU?L|%`P`3-Zc;i)H!U>e4;DDrP-B-`C!Ei z-s!II{4FjgNE|u&;oIGL;`9F9mDvBGu;Aj)TTy>5z5mX@as2Ydi-{&4lX`8=b2A*8 zxb&sR0Y(-X21a%VI9(4H5Ga61Aki!`3zQh``yMZy9hS}BP{1?$?AjF?TntQGHt^T& z-oBkX80F(vm zReOM}KaYtIWI9X|W-y92u(kE1*$Z+r9+%B-K(PVhDLGMB!MSVJ>7{2{F|B&|_0y*u zxh4y{!%KFT?f!bXzEb_>6nnh@-G$$evdFOPS+Y&$_{U3`YquHc3Yr^h8{RvdR{Z+& zuayd|3%zVm5M-P~+89ZJ6T-G@yGywn-S11+$ delta 1131 zcmbOz{aseEGr-TCmrII^fq{Y7)59f*fq}6J$ezi;1|*f{*rsk&oX1tqqU7n~7*cWT z&0WRp=s=lc5BINFArT^?^g2lG7o*y`75yDER%evn6z@2_(`8C1&n~Bsg-K_64$jc- zS>@;wd-X^{a+Q+&f=6de0ygHPnw#%7uZ*k6(VuhR=f$=q6N~v6u1$Al5MXL&P+(!; zU}SJ&Xb=E0E#13r_y|7Nd?ZxgP^P8ax2h$<-Zh0G>TUH?fjOnSD~;rsFDPAKeDRS} zL7+&b)m)|vO7?mAtqcwvEmXjD;!T(R)c0FkFf4GbzxVC;RcC{qin9OC3>oY7|I0LW zbQmp)caz!b*k$1<`19+#ym>vx8MsSrrOxVIo6o&#v)z)8Kg+Jq{(a_VYTQT5>Zwi_ zmR0&QM_jvqN4zk7s^DRfiR;;#cb=cqy5QAjg3hg{$Ug#1iULf)Kylz;05TLAfQ%Mk zXp)VR&3ooc|99*L+h`K8XcB;T@FV>Ym)}4TG6IwZ3&BeDgxbj7++0N z`qp~j%$XJ(SWd^)##3!|$S_)&_D7?ZIvFqkPO>Pax+1J~@C zK&KIn1vr3;A;g@V+^5}(GI}=Wg#&#tO{8hL=A(E2F6AzAC{{EuUTx1-{e8cr$;Gs# z0t_4MWSANRELa#6fk_jXm>8~I&<7S6|Nk>Hcwd-ptIr*<0?1|XboFyt=akR{0KevF AMgRZ+ diff --git a/sencha/resources/upsstyle/images/icons/scroll.png b/sencha/resources/upsstyle/images/icons/scroll.png new file mode 100644 index 0000000000000000000000000000000000000000..307a62b49c71bc788f4df1656d9f7a853cfdcedb GIT binary patch literal 9057 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 G>VE;3!J{$& literal 0 HcmV?d00001 diff --git a/sencha/resources/upsstyle/images/icons/studentparent.png b/sencha/resources/upsstyle/images/icons/studentparent.png new file mode 100644 index 0000000000000000000000000000000000000000..18f63ecb89854e2bd83618106523063598d1dd62 GIT binary patch literal 9151 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 div { - float: left; + font-size:200%; position: relative; - left: 50% !important; + left: 50% !important; } .imageButton > div > * { - float:left; position:relative; left:-50%; } .imageButton > div > img { width:auto; height:1.5em; - margin:0 0.7em; + margin:auto; } diff --git a/styles/upsstyle.css b/styles/upsstyle.css deleted file mode 100644 index e69de29..0000000